/* ===================================
   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: #333;
  background-color: #FFF9F0;
  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;
}

/* ===================================
   WARM FRIENDLY DESIGN SYSTEM
   =================================== */

:root {
  --primary-color: #1D4468;
  --secondary-color: #4A90C8;
  --accent-color: #F8B84E;
  --warm-bg: #FFF9F0;
  --warm-white: #FFFDF7;
  --warm-cream: #FFF5E1;
  --text-dark: #2C3E50;
  --text-medium: #5D6D7E;
  --text-light: #95A5A6;
  --success: #52C17C;
  --warning: #F39C12;
  --shadow-sm: 0 2px 8px rgba(244, 184, 78, 0.1);
  --shadow-md: 0 4px 16px rgba(244, 184, 78, 0.15);
  --shadow-lg: 0 8px 32px rgba(244, 184, 78, 0.2);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   TYPOGRAPHY - WARM & FRIENDLY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
  font-size: 16px;
}

strong {
  font-weight: 600;
  color: var(--primary-color);
}

em {
  font-style: italic;
  color: var(--text-medium);
}

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

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

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

/* ===================================
   BUTTONS - WARM & INVITING
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #FFD580 100%);
  color: var(--primary-color);
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFD580 0%, var(--accent-color) 100%);
  box-shadow: 0 6px 20px rgba(248, 184, 78, 0.4);
}

.btn-secondary {
  background-color: var(--warm-white);
  color: var(--primary-color);
  border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background-color: var(--warm-white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #FFD580);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: var(--accent-color);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--accent-color), #FFD580);
  color: var(--primary-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(248, 184, 78, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--warm-cream) 100%);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  z-index: 1999;
  padding: 80px 32px 32px;
  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: var(--accent-color);
  color: var(--primary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

.mobile-nav a {
  padding: 16px 20px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background-color: transparent;
}

.mobile-nav a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateX(8px);
}

/* ===================================
   HERO SECTION - WARM WELCOME
   =================================== */

.hero {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFE5CC 50%, #FFD9B3 100%);
  padding: 80px 20px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(248, 184, 78, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-medium);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  background-color: var(--warm-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.trust-indicators span::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
}

/* ===================================
   PAGE HERO (Internal Pages)
   =================================== */

.page-hero {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 60px;
  box-shadow: var(--shadow-sm);
}

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

.page-hero p {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 16px;
}

.last-update {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* ===================================
   CARDS - SOFT & INVITING
   =================================== */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background-color: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 20px;
  position: relative;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features {
  padding: 60px 20px;
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary-color);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: var(--warm-bg);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
  background-color: var(--warm-white);
}

.feature-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(248, 184, 78, 0.3));
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-medium);
  font-size: 15px;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
  padding: 60px 20px;
  background: linear-gradient(180deg, var(--warm-bg) 0%, var(--warm-cream) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: var(--warm-white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p {
  color: var(--text-medium);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .price {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #FFD580);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}

.services .btn-outline {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

/* ===================================
   TESTIMONIALS - WARM & TRUSTWORTHY
   =================================== */

.testimonials {
  padding: 60px 20px;
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-left: 4px solid var(--accent-color);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.testimonial-card .author {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

.testimonials .rating {
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 600;
  background-color: var(--warm-cream);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.testimonial-highlight {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent-color);
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-highlight p {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.testimonial-highlight span {
  color: var(--primary-color);
  font-weight: 600;
}

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

.cta-final, .cta-services, .cta-booking, .cta-offers, .cta-about, .cta-contact, .cta-thank-you {
  background: linear-gradient(135deg, var(--accent-color) 0%, #FFD580 100%);
  padding: 60px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
}

.cta-final h2, .cta-services h2, .cta-booking h2, .cta-offers h2, .cta-about h2, .cta-contact h2, .cta-thank-you h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 36px;
}

.cta-final p, .cta-services p, .cta-booking p, .cta-offers p, .cta-about p, .cta-contact p, .cta-thank-you p {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.contact-info, .trust-note, .promo-code, .trust-elements, .support-reminder, .availability-reminder {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  margin-top: 24px;
}

.promo-code {
  display: inline-block;
  background-color: var(--warm-white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

/* ===================================
   FOOTER - WARM & FRIENDLY
   =================================== */

footer {
  background: linear-gradient(180deg, var(--primary-color) 0%, #163450 100%);
  color: white;
  padding: 48px 20px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 60px;
}

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

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

.footer-section h4 {
  color: var(--accent-color);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: var(--transition);
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ===================================
   SERVICES DETAILED
   =================================== */

.services-overview {
  padding: 40px 20px;
  background-color: var(--warm-white);
  border-radius: var(--radius-md);
  margin-bottom: 60px;
  text-align: center;
}

.services-overview .intro {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
}

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

.service-detail {
  background-color: var(--warm-white);
  padding: 40px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.service-detail:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.service-detail img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.service-detail h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.service-detail p {
  color: var(--text-medium);
  margin-bottom: 16px;
}

.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #FFD580);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.service-detail ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-detail ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-dark);
  border-bottom: 1px solid var(--warm-cream);
}

.service-detail ul li:last-child {
  border-bottom: none;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 18px;
}

/* ===================================
   ADDITIONAL SERVICES
   =================================== */

.additional-services {
  padding: 60px 20px;
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

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

.addon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.addon-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.addon-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.addon-card p {
  color: var(--text-medium);
  margin-bottom: 20px;
}

.addon-card .price {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
}

/* ===================================
   VALUE PROPOSITION
   =================================== */

.value-proposition {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--warm-bg) 0%, var(--warm-cream) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

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

.benefits-list {
  max-width: 700px;
  margin: 0 auto 32px;
  list-style-type: none;
  padding: 0;
}

.benefits-list li {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  color: var(--text-dark);
  font-size: 16px;
  border-bottom: 1px solid var(--warm-white);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 24px;
  top: 12px;
}

.stats {
  text-align: center;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
  background-color: var(--warm-white);
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* ===================================
   BOOKING SECTIONS
   =================================== */

.booking-selector {
  padding: 40px 20px;
  background-color: var(--warm-white);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}

.transport-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab {
  padding: 14px 28px;
  background-color: var(--warm-bg);
  color: var(--text-dark);
  border: 2px solid var(--warm-cream);
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab:hover {
  background-color: var(--warm-cream);
  border-color: var(--accent-color);
}

.tab.active {
  background: linear-gradient(135deg, var(--accent-color), #FFD580);
  color: var(--primary-color);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

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

.form-wrapper {
  background-color: var(--warm-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.form-wrapper h2 {
  margin-bottom: 32px;
  text-align: center;
}

.search-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.form-group {
  flex: 1 1 calc(50% - 20px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  border: 2px solid var(--warm-cream);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  background-color: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(248, 184, 78, 0.2);
}

.popular-routes {
  background-color: var(--warm-cream);
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-top: 24px;
}

.popular-routes h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.popular-routes ul {
  list-style-type: none;
  padding: 0;
}

.popular-routes li {
  padding: 8px 0;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.popular-routes li:hover {
  color: var(--accent-color);
  padding-left: 8px;
}

.booking-benefits {
  padding: 60px 20px;
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

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

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

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-medium);
}

.booking-tips {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--warm-bg) 0%, var(--warm-cream) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

.booking-tips h2 {
  text-align: center;
  margin-bottom: 32px;
}

.tips-list {
  max-width: 700px;
  margin: 0 auto;
  list-style-type: none;
  padding: 0;
}

.tips-list li {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  color: var(--text-dark);
  font-size: 16px;
  border-bottom: 1px solid var(--warm-white);
}

.tips-list li:last-child {
  border-bottom: none;
}

.tips-list li::before {
  content: '💡';
  position: absolute;
  left: 0;
  font-size: 24px;
  top: 12px;
}

/* ===================================
   OFFERS SECTIONS
   =================================== */

.featured-deal {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.deal-card {
  background-color: var(--warm-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  position: relative;
  border: 2px solid transparent;
  transition: var(--transition);
}

.deal-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.deal-card.featured {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  border: 3px solid var(--accent-color);
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-md);
}

.deal-card h2, .deal-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.price-display {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.original-price {
  font-size: 24px;
  color: var(--text-light);
  text-decoration: line-through;
}

.discounted-price {
  font-size: 40px;
  font-weight: 700;
  color: var(--success);
}

.savings {
  display: inline-block;
  background-color: var(--success);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.deal-features {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.deal-features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
}

.deal-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.validity, .urgency {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.urgency {
  color: var(--warning);
  font-weight: 600;
}

.last-minute, .weekend-offers, .group-discounts, .price-guarantee {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.last-minute h2, .weekend-offers h2, .group-discounts h2, .price-guarantee h2 {
  text-align: center;
  margin-bottom: 48px;
}

.deals-grid, .packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  padding: 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.package-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.package-card p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 14px;
}

.package-card .price {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 20px;
}

.group-discounts {
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 60px 20px;
}

.group-discounts p {
  text-align: center;
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 32px;
}

.discount-tiers {
  max-width: 600px;
  margin: 0 auto 32px;
  list-style-type: none;
  padding: 0;
}

.discount-tiers li {
  background-color: var(--warm-cream);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.price-guarantee {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  border-radius: var(--radius-lg);
  text-align: center;
}

.price-guarantee p {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 16px;
}

/* ===================================
   ABOUT US SECTIONS
   =================================== */

.company-intro {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.text-section {
  background-color: var(--warm-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.text-section h2 {
  color: var(--primary-color);
  margin-bottom: 24px;
}

.text-section h3 {
  color: var(--secondary-color);
  margin-bottom: 12px;
  margin-top: 24px;
}

.text-section p {
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.8;
}

.text-section ul, .text-section ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.text-section li {
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}

.statistics {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2B5F8F 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-card .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-card p {
  color: white;
  font-size: 14px;
}

.values {
  padding: 60px 20px;
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

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

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent-color);
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-medium);
}

.partnerships, .team, .customer-focus {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.partnerships h2, .team h2, .customer-focus h2 {
  text-align: center;
  margin-bottom: 24px;
}

.partnerships p, .team p, .customer-focus p {
  text-align: center;
  font-size: 16px;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto 24px;
}

.partners-list {
  max-width: 800px;
  margin: 0 auto;
  list-style-type: none;
  padding: 0;
}

.partners-list li {
  padding: 16px 24px;
  background-color: var(--warm-white);
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.reasons-list {
  max-width: 700px;
  margin: 0 auto;
  list-style-type: none;
  padding: 0;
}

.reasons-list li {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  color: var(--text-dark);
  border-bottom: 1px solid var(--warm-cream);
}

.reasons-list li:last-child {
  border-bottom: none;
}

.reasons-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 24px;
  top: 12px;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */

.contact-methods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.contact-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 450px;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.contact-card p {
  color: var(--text-medium);
  margin-bottom: 8px;
}

.contact-card strong {
  color: var(--primary-color);
  font-size: 18px;
}

.contact-reasons {
  padding: 60px 20px;
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

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

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.reason-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: var(--warm-cream);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.reason-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.reason-card p {
  color: var(--text-medium);
  margin-bottom: 16px;
}

.reason-card strong {
  color: var(--primary-color);
}

.office-info {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--warm-bg) 0%, var(--warm-cream) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

.office-info h2 {
  text-align: center;
  margin-bottom: 32px;
}

.office-details {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--warm-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.office-details h3 {
  color: var(--primary-color);
  margin-top: 24px;
  margin-bottom: 16px;
}

.office-details ul {
  list-style-type: none;
  padding: 0;
}

.office-details li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
}

.office-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.faq-contact {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.faq-item {
  background-color: var(--warm-white);
  padding: 24px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--text-medium);
}

/* ===================================
   LEGAL CONTENT
   =================================== */

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

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

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 32px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: var(--secondary-color);
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.legal-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--accent-color);
}

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

.thank-you-hero {
  padding: 80px 20px 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--success), #52C17C);
  color: white;
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(82, 193, 124, 0.3);
}

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

.confirmation .text-section {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.next-steps {
  padding: 60px 20px;
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 32px;
}

.steps-list {
  max-width: 700px;
  margin: 0 auto;
  counter-reset: steps;
  list-style: none;
  padding: 0;
}

.steps-list li {
  counter-increment: steps;
  padding: 20px;
  padding-left: 60px;
  position: relative;
  background-color: var(--warm-cream);
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-color), #FFD580);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.while-waiting {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--warm-bg) 0%, var(--warm-cream) 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 60px;
}

.while-waiting h2 {
  margin-bottom: 16px;
}

.while-waiting p {
  font-size: 18px;
  margin-bottom: 24px;
}

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

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

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

.destination-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
  padding: 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.destination-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.destination-card .price {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 18px;
}

.social-proof {
  padding: 60px 20px;
  background-color: var(--warm-white);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 60px;
}

.social-proof h2 {
  margin-bottom: 32px;
}

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

.stats-simple p {
  padding: 16px 24px;
  background-color: var(--warm-cream);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2B5F8F 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-accept {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.cookie-btn-settings:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: var(--primary-color);
  margin-bottom: 24px;
}

.cookie-category {
  background-color: var(--warm-cream);
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: var(--text-medium);
  font-size: 14px;
  margin-bottom: 12px;
}

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: var(--text-light);
  border-radius: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch.active {
  background-color: var(--success);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch.active::after {
  left: 27px;
}

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  p {
    font-size: 15px;
  }
  
  /* Header & Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cards & Grids */
  .features-grid,
  .services-grid,
  .benefits-grid,
  .deals-grid,
  .packages-grid,
  .values-grid,
  .stats-grid,
  .addon-grid,
  .destinations-grid {
    flex-direction: column;
  }
  
  .feature-card,
  .service-card,
  .benefit-card,
  .deal-card,
  .package-card,
  .value-card,
  .stat-card,
  .addon-card,
  .destination-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Forms */
  .form-group {
    flex: 1 1 100%;
  }
  
  .search-widget {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Contact */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-card {
    flex: 1 1 100%;
  }
  
  /* Reason cards */
  .reasons-grid {
    flex-direction: column;
  }
  
  .reason-card {
    flex: 1 1 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Spacing adjustments */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .container {
    padding: 0 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .feature-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ===================================
   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);
  }
}

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

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

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

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

*:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none !important;
  }
  
  body {
    background-color: white;
  }
  
  .container {
    max-width: 100%;
  }
}

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

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

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

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

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

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

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ===================================
   END OF CSS
   =================================== */