/* ============================================
   MindCrest Portal - Warm & Friendly Design
   Comprehensive CSS Styles
   ============================================ */

/* ============================================
   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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFBF5;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C5F2D;
  margin-bottom: 16px;
}

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

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

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

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

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #555555;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.15);
}

.btn-primary {
  background-color: #2C5F2D;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #1E3F1F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 45, 0.25);
}

.btn-secondary {
  background-color: #FFB74D;
  color: #2C5F2D;
}

.btn-secondary:hover {
  background-color: #FF9800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 183, 77, 0.35);
}

.btn:active {
  transform: translateY(0);
}

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
  width: 48px;
  height: 48px;
  background-color: #2C5F2D;
  color: #FFFFFF;
  border-radius: 12px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #FFB74D;
  color: #2C5F2D;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F2D;
  padding: 12px 0;
  border-bottom: 2px solid #F0F0F0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FFB74D;
  padding-left: 12px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

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

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

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

.nav-menu li a {
  font-size: 16px;
  font-weight: 600;
  color: #2C5F2D;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #FFB74D;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: #FFB74D;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #87CEEB 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

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

.hero p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #87CEEB 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-hero .container {
  text-align: center;
}

.breadcrumbs {
  font-size: 14px;
  color: #FFFFFF;
  margin-bottom: 24px;
  opacity: 0.9;
}

.breadcrumbs a {
  color: #FFB74D;
  transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
  opacity: 0.8;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

/* ============================================
   SECTIONS
   ============================================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #FFFBF5;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(44, 95, 45, 0.15);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}

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

.feature-card p {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background-color: #F8F4EE;
  border-radius: 30px;
  padding: 60px 40px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 300px;
  max-width: 360px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.15);
}

.service-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
  font-size: 22px;
}

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

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #FFB74D;
  margin-bottom: 20px;
}

.service-card .btn {
  align-self: flex-start;
}

.services > .container > .btn {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

/* ============================================
   SERVICES DETAILED
   ============================================ */
.services-detailed {
  padding: 40px 20px;
}

.service-detail {
  margin-bottom: 60px;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 16px;
  color: #2C5F2D;
}

.service-detail .price {
  font-size: 24px;
  font-weight: 700;
  color: #FFB74D;
  margin-bottom: 24px;
  display: block;
}

.service-detail h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  color: #2C5F2D;
  font-size: 20px;
}

.service-detail ul {
  list-style: none;
  margin-bottom: 32px;
}

.service-detail ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #555555;
  line-height: 1.6;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   ROUTES SECTION
   ============================================ */
.routes {
  padding: 40px 20px;
}

.routes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.route-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.15);
}

.route-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.route-card p {
  color: #666666;
  margin-bottom: 12px;
}

.route-card strong {
  color: #2C5F2D;
}

.route-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #FFB74D;
  margin: 20px 0;
}

.routes-listing h2 {
  text-align: left;
  margin-top: 48px;
  margin-bottom: 32px;
  color: #2C5F2D;
}

.routes > .container > .btn,
.routes-listing > .container > .btn {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: linear-gradient(135deg, #FFFBF5 0%, #F8F4EE 100%);
  padding: 60px 40px;
  border-radius: 30px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 550px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.15);
}

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

.testimonial-card .author {
  font-style: normal;
  color: #2C5F2D;
  font-weight: 600;
  border-top: 2px solid #FFB74D;
  padding-top: 16px;
  margin-top: 8px;
}

.testimonial-card .author strong {
  color: #2C5F2D;
  display: block;
  margin-bottom: 4px;
}

/* Testimonials Detailed */
.testimonials-detailed {
  padding: 40px 20px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  background: linear-gradient(135deg, #2C5F2D 0%, #1E3F1F 100%);
  padding: 60px 40px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stats h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.stat-card {
  flex: 1 1 220px;
  max-width: 260px;
  padding: 40px 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #FFB74D;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #FFB74D;
  margin-bottom: 12px;
  line-height: 1;
}

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

/* ============================================
   CTA BANNER / SECTION
   ============================================ */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #FFB74D 0%, #FF9800 100%);
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 183, 77, 0.3);
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 36px;
}

.cta-banner p,
.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn,
.cta-section .btn {
  background-color: #2C5F2D;
  color: #FFFFFF;
}

.cta-banner .btn:hover,
.cta-section .btn:hover {
  background-color: #1E3F1F;
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.info-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.15);
}

.info-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
  font-size: 20px;
}

.info-card p {
  color: #666666;
  font-size: 15px;
}

/* ============================================
   REGIONS SECTION
   ============================================ */
.regions {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.region-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.15);
}

.region-card h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
}

.region-card p {
  color: #666666;
  margin-bottom: 16px;
}

.region-card p strong {
  color: #FFB74D;
}

/* ============================================
   SEASONAL SECTION
   ============================================ */
.seasonal {
  background: linear-gradient(135deg, #FFFBF5 0%, #F8F4EE 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.season-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.season-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.15);
}

.season-card h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
}

.season-card p {
  color: #666666;
  font-size: 15px;
}

/* ============================================
   ACHIEVEMENTS / BADGES SECTION
   ============================================ */
.achievements {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.badge-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid #FFB74D;
  margin-bottom: 20px;
  position: relative;
}

.badge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 183, 77, 0.25);
  border-color: #FF9800;
}

.badge-card h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
  font-size: 18px;
}

.badge-card p {
  color: #666666;
  font-size: 14px;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.story h2 {
  text-align: left;
  margin-bottom: 32px;
}

.story p {
  max-width: 900px;
  margin: 0 auto 24px auto;
  font-size: 17px;
  line-height: 1.8;
}

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

.milestone {
  flex: 1 1 220px;
  max-width: 260px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.milestone:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.15);
}

.milestone h3 {
  color: #FFB74D;
  font-size: 36px;
  margin-bottom: 12px;
}

.milestone p {
  color: #2C5F2D;
  font-weight: 600;
  font-size: 16px;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values {
  background: linear-gradient(135deg, #FFFBF5 0%, #F8F4EE 100%);
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

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

.value-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  max-width: 450px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.15);
}

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

.value-card p {
  color: #666666;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.team-member {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.15);
}

.team-member h3 {
  color: #2C5F2D;
  margin-bottom: 8px;
  font-size: 20px;
}

.team-member p {
  color: #666666;
  font-size: 15px;
}

.team-member p strong {
  color: #FFB74D;
  display: block;
  margin-bottom: 12px;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */
.contact-info {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

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

.contact-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.contact-card p {
  color: #666666;
  font-size: 15px;
}

.contact-card p strong {
  color: #2C5F2D;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-form-section {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-wrapper p {
  margin-bottom: 24px;
  color: #555555;
}

.form-wrapper p strong {
  color: #2C5F2D;
  display: block;
  margin-bottom: 8px;
}

.form-wrapper .note {
  font-size: 14px;
  color: #999999;
  font-style: italic;
  margin-top: 24px;
  margin-bottom: 32px;
}

.form-wrapper .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: 40px 20px;
  margin-bottom: 60px;
  background-color: #F8F4EE;
  border-radius: 30px;
}

.map-section h2 {
  text-align: left;
  margin-bottom: 24px;
}

.map-section h3 {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2C5F2D;
}

.map-section p {
  margin-bottom: 16px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.faq-item {
  margin-bottom: 32px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(44, 95, 45, 0.12);
}

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

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

/* ============================================
   LEGAL CONTENT
   ============================================ */
.legal-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  text-align: left;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #2C5F2D;
  font-size: 28px;
}

.legal-content h3 {
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2C5F2D;
  font-size: 20px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.legal-content ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #555555;
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 12px;
  color: #FFB74D;
  font-size: 20px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #87CEEB 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  text-align: center;
}

.checkmark {
  width: 80px;
  height: 80px;
  background-color: #FFB74D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  font-size: 48px;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 183, 77, 0.4);
}

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

.thank-you-hero p {
  color: #FFFFFF;
  font-size: 18px;
}

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

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

.step-card {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.15);
}

.step-card h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
}

.step-card p {
  color: #666666;
}

.next-steps,
.next-actions {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.action-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 450px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 95, 45, 0.15);
}

.action-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.action-card p {
  color: #666666;
  margin-bottom: 24px;
}

.contact-reminder {
  background: linear-gradient(135deg, #FFFBF5 0%, #F8F4EE 100%);
  padding: 48px 40px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
}

.contact-reminder h2 {
  margin-bottom: 24px;
}

.contact-reminder p {
  font-size: 17px;
  margin-bottom: 12px;
}

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

.popular-routes h2 {
  margin-bottom: 32px;
}

.popular-routes ul {
  list-style: none;
  max-width: 500px;
  margin: 0 auto 40px auto;
}

.popular-routes ul li {
  padding: 16px 24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #2C5F2D;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.popular-routes ul li:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(44, 95, 45, 0.15);
}

.popular-routes .btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: #2C5F2D;
  color: #FFFFFF;
  padding: 60px 20px 32px 20px;
  margin-top: 80px;
  border-radius: 40px 40px 0 0;
}

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

.footer-section {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-section h3 {
  color: #FFB74D;
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-section p {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
  opacity: 0.9;
}

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

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

.footer-section ul li a {
  color: #FFFFFF;
  font-size: 15px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

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

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 14px;
  opacity: 0.8;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C5F2D;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  border-radius: 30px 30px 0 0;
}

#cookie-consent.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}

#accept-cookies {
  background-color: #FFB74D;
  color: #2C5F2D;
}

#accept-cookies:hover {
  background-color: #FF9800;
}

#reject-cookies {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

#reject-cookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#cookie-settings {
  background-color: transparent;
  color: #FFB74D;
  border: 2px solid #FFB74D;
}

#cookie-settings:hover {
  background-color: rgba(255, 183, 77, 0.1);
}

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

#cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: #FFB74D;
  color: #2C5F2D;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.cookie-category {
  margin-bottom: 32px;
  padding: 24px;
  background-color: #F8F4EE;
  border-radius: 12px;
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background-color: #CCCCCC;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: #2C5F2D;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #FFFFFF;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle label {
  color: #666666;
  font-size: 14px;
  cursor: pointer;
}

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

.cookie-modal-buttons .btn {
  flex: 1 1 200px;
}

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

/* Tablets */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  /* Flexbox adjustments */
  .features-grid,
  .services-grid,
  .routes-grid,
  .testimonials-grid,
  .stats-grid,
  .info-grid,
  .regions-grid,
  .seasons-grid,
  .badges-grid,
  .contact-grid,
  .values-grid,
  .team-grid,
  .milestones,
  .steps-grid,
  .actions-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card,
  .service-card,
  .route-card,
  .testimonial-card,
  .stat-card,
  .info-card,
  .region-card,
  .season-card,
  .badge-card,
  .contact-card,
  .value-card,
  .team-member,
  .milestone,
  .step-card,
  .action-card {
    max-width: 100%;
    width: 100%;
  }

  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    width: 100%;
  }

  /* Cookie consent adjustments */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-buttons .btn {
    flex: 1 1 auto;
  }

  /* Section padding adjustments */
  section {
    padding: 32px 16px;
  }

  .hero,
  .page-hero {
    padding: 48px 16px;
  }

  .features,
  .services,
  .testimonials,
  .stats,
  .values,
  .seasonal {
    padding: 48px 24px;
  }

  /* Form wrapper adjustments */
  .form-wrapper {
    padding: 32px 24px;
  }

  /* Cookie modal adjustments */
  .cookie-modal-content {
    padding: 32px 24px;
    margin: 0 16px;
  }

  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  /* Typography adjustments */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Button adjustments */
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  /* Section padding */
  section {
    padding: 24px 12px;
    margin-bottom: 40px;
  }

  /* Card padding */
  .feature-card,
  .service-card,
  .route-card,
  .testimonial-card,
  .info-card,
  .region-card,
  .season-card,
  .badge-card,
  .contact-card,
  .value-card,
  .team-member,
  .action-card,
  .step-card {
    padding: 24px 20px;
  }

  /* Mobile menu adjustments */
  .mobile-menu {
    width: 90%;
  }

  /* Footer adjustments */
  footer {
    padding: 48px 16px 24px 16px;
  }

  /* Cookie modal adjustments */
  .cookie-modal-content {
    padding: 24px 16px;
  }

  .cookie-category {
    padding: 16px;
  }

  /* Stats adjustments */
  .stat-number {
    font-size: 36px;
  }

  /* Form adjustments */
  .form-wrapper {
    padding: 24px 16px;
  }
}

/* Large desktop screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 28px;
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

/* Add smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .card, input, textarea {
  transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus,
input:focus,
textarea:focus {
  outline: 3px solid #FFB74D;
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal,
  .cta-banner,
  .cta-section {
    display: none !important;
  }

  body {
    background-color: #FFFFFF;
  }

  .container {
    max-width: 100%;
  }
}
