/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

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

/* GEOMETRIC STRUCTURED DESIGN SYSTEM */
:root {
  --primary: #1E40AF;
  --secondary: #0EA5E9;
  --accent: #B45309;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
}

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

/* Typography - Geometric Structured */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 32px;
  border-left: 4px solid var(--primary);
  padding-left: var(--spacing-sm);
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  font-size: 24px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  align-items: center;
  justify-content: center;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: var(--spacing-lg);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-size: 28px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.mobile-menu-close:hover {
  background: var(--bg-light);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
}

.mobile-nav a {
  padding: var(--spacing-sm);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: var(--spacing-md);
}

/* HEADER - Geometric Structured */
header {
  background: var(--bg-white);
  box-shadow: 0 2px 0 var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  gap: var(--spacing-md);
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-link img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  padding: var(--spacing-xs) var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

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

.cta-button {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* HERO SECTION - Geometric Structured */
.hero {
  background: linear-gradient(135deg, #1E40AF 0%, #0EA5E9 100%);
  color: white;
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.05) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  opacity: 0.3;
}

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

.hero h1 {
  color: white;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  border: none;
}

.subheadline {
  font-size: 20px;
  margin-bottom: var(--spacing-xl);
  color: rgba(255,255,255,0.95);
}

/* SEARCH WIDGET - Geometric Grid */
.search-widget {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--spacing-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  align-items: flex-end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  flex: 1;
  min-width: 200px;
}

.search-field label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-field input,
.search-field select {
  padding: 12px var(--spacing-sm);
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.search-field input:focus,
.search-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.search-button {
  background: var(--accent);
  color: white;
  padding: 14px var(--spacing-lg);
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  min-width: 160px;
  transition: all 0.3s ease;
}

.search-button:hover {
  background: #92400e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* TRUST BADGES - Geometric Layout */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
}

.badge {
  background: rgba(255,255,255,0.2);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

/* SECTION SPACING - Structured Grid */
.section,
section {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-2xl) 0;
}

.featured-deals,
.benefits,
.destinations-preview,
.how-it-works,
.testimonials,
.newsletter {
  background: var(--bg-light);
}

.featured-deals {
  padding: var(--spacing-2xl) 0;
}

/* DEALS GRID - Flexbox Layout */
.deals-grid,
.benefits-grid,
.destinations-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

/* DEAL CARD - Geometric Structure */
.deal-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 280px;
  max-width: calc(33.333% - var(--spacing-md));
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: var(--spacing-md);
}

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

.deal-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #0EA5E9 0%, #1E40AF 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discount-badge {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: var(--accent);
  color: white;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 4px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-md);
}

.deal-card h3 {
  padding: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  margin: 0;
  font-size: 20px;
}

.deal-rating {
  padding: 0 var(--spacing-md);
  color: var(--accent);
  font-size: 16px;
  margin-bottom: var(--spacing-xs);
}

.deal-details {
  padding: 0 var(--spacing-md);
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: var(--spacing-sm);
}

.deal-price {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  border-top: 2px solid var(--bg-light);
  margin-top: auto;
}

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

.current-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}

.deal-button {
  background: var(--primary);
  color: white;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin: 0 var(--spacing-md) var(--spacing-md);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.deal-button:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* BENEFIT CARD - Structured Grid */
.benefit-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 240px;
  max-width: calc(25% - var(--spacing-md));
  border-top: 4px solid var(--primary);
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-md);
}

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

.benefit-card img {
  width: 64px;
  height: 64px;
  margin-bottom: var(--spacing-md);
}

.benefit-card h3 {
  margin-bottom: var(--spacing-sm);
  color: var(--primary);
  font-size: 18px;
}

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

/* DESTINATION CARD - Geometric Structure */
.destination-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  flex: 1;
  min-width: 240px;
  max-width: calc(25% - var(--spacing-md));
  border-left: 4px solid var(--secondary);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: var(--spacing-md);
}

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

.destination-card h3 {
  font-size: 24px;
  margin: 0;
  color: var(--primary);
}

.destination-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
}

.destination-offers {
  color: var(--text-light);
  font-size: 14px;
}

.destination-link {
  background: var(--primary);
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
  transition: all 0.3s ease;
}

.destination-link:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* STEPS CARD - Geometric Numbers */
.step-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: calc(33.333% - var(--spacing-md));
  position: relative;
  margin-bottom: var(--spacing-md);
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.step-card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 20px;
}

/* TESTIMONIALS - High Contrast */
.testimonials {
  background: var(--bg-white);
  padding: var(--spacing-2xl) 0;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.testimonial-card {
  background: var(--bg-light);
  padding: var(--spacing-lg);
  border-radius: 4px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.testimonial-rating {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: var(--spacing-md);
  border-top: 2px solid var(--border-color);
}

.testimonial-author strong {
  color: var(--primary);
  font-size: 16px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

/* NEWSLETTER - Geometric Form */
.newsletter {
  background: linear-gradient(135deg, #1E40AF 0%, #0EA5E9 100%);
  color: white;
  padding: var(--spacing-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%);
  background-size: 40px 40px;
  opacity: 0.5;
}

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

.newsletter h2 {
  color: white;
  margin-bottom: var(--spacing-md);
  border: none;
  padding: 0;
}

.newsletter p {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  margin-bottom: var(--spacing-lg);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 500px;
  margin: 0 auto var(--spacing-md);
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 14px var(--spacing-md);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 16px;
  background: rgba(255,255,255,0.95);
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  background: white;
  border-color: var(--accent);
}

.subscribe-button {
  background: var(--accent);
  color: white;
  padding: 14px var(--spacing-lg);
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.subscribe-button:hover {
  background: #92400e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.privacy-note {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.privacy-note a {
  color: white;
  text-decoration: underline;
}

/* FOOTER - Structured Grid */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: var(--spacing-2xl) 0 var(--spacing-md);
  border-top: 4px solid var(--primary);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--spacing-sm);
}

.footer-column h4 {
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--primary);
  padding-bottom: var(--spacing-xs);
}

.footer-column a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-column a:hover {
  color: white;
  padding-left: var(--spacing-xs);
}

.footer-column p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin: 0;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  padding-top: var(--spacing-md);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

.copyright {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin: 0;
}

/* HERO INTERNAL - Geometric Banner */
.hero-internal {
  background: linear-gradient(135deg, #1E40AF 0%, #0EA5E9 100%);
  color: white;
  padding: var(--spacing-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-internal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%);
  background-size: 60px 60px;
  opacity: 0.3;
}

.hero-internal h1 {
  color: white;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
  border: none;
}

.hero-internal p {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* SEARCH PANEL - Structured Filters */
.search-panel {
  background: var(--bg-light);
  padding: var(--spacing-lg) 0;
  border-bottom: 2px solid var(--border-color);
}

.filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-group input,
.filter-group select {
  padding: 12px var(--spacing-sm);
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
  background: white;
  font-family: inherit;
  transition: all 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.apply-filters {
  background: var(--primary);
  color: white;
  padding: 14px var(--spacing-lg);
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 160px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.apply-filters:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* RESULTS SECTION */
.results-section {
  padding: var(--spacing-2xl) 0;
}

.results-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: var(--bg-light);
  border-radius: 4px;
  border-left: 4px solid var(--primary);
}

.results-count {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
  margin: 0;
}

.sort-dropdown {
  padding: 10px var(--spacing-md);
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-dropdown:focus {
  outline: none;
  border-color: var(--primary);
}

/* TOUR RESULTS */
.tour-results {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.tour-card {
  background: white;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
  margin-bottom: var(--spacing-md);
  position: relative;
}

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

.tour-card .tour-image {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #0EA5E9 0%, #1E40AF 100%);
  position: relative;
  flex-shrink: 0;
}

.tour-info {
  flex: 1;
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  min-width: 300px;
}

.tour-info h3 {
  margin: 0;
  font-size: 20px;
  color: var(--primary);
}

.tour-rating {
  color: var(--accent);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.tour-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  color: var(--text-light);
  font-size: 14px;
}

.tour-details span::before {
  content: '•';
  margin-right: var(--spacing-xs);
  color: var(--primary);
}

.tour-details span:first-child::before {
  content: '';
  margin: 0;
}

.tour-pricing {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: var(--spacing-xs);
  border-left: 2px solid var(--bg-light);
  min-width: 200px;
}

.price-note {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}

.view-details {
  background: var(--primary);
  color: white;
  padding: 12px var(--spacing-lg);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: all 0.3s ease;
  margin-top: var(--spacing-sm);
}

.view-details:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* PAGINATION - Geometric Structure */
.pagination {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.pagination button {
  padding: 12px 20px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  transition: all 0.3s ease;
  min-width: 48px;
}

.pagination button:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.pagination button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* SEARCH TIPS */
.search-tips {
  background: var(--bg-light);
  padding: var(--spacing-2xl) 0;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.tip-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 280px;
  border-top: 4px solid var(--secondary);
  margin-bottom: var(--spacing-md);
}

.tip-card h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: var(--spacing-sm);
}

.tip-card p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

/* HERO URGENT - Last Minute Style */
.hero-urgent {
  background: linear-gradient(135deg, var(--accent) 0%, #dc2626 100%);
  color: white;
  padding: var(--spacing-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-urgent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%);
  background-size: 40px 40px;
  opacity: 0.5;
}

.hero-urgent h1 {
  color: white;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
  border: none;
}

.update-info {
  background: rgba(255,255,255,0.2);
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  margin-top: var(--spacing-md);
  position: relative;
  z-index: 1;
}

/* HOT DEALS */
.hot-deals {
  padding: var(--spacing-2xl) 0;
}

.deals-featured {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.featured-deal {
  background: white;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-lg);
  flex: 1;
  min-width: 400px;
  border: 3px solid var(--accent);
  position: relative;
  margin-bottom: var(--spacing-md);
}

.urgency-badge {
  position: absolute;
  top: -12px;
  left: var(--spacing-lg);
  background: #dc2626;
  color: white;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.deal-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.deal-content h3 {
  font-size: 24px;
  color: var(--primary);
  margin: 0;
}

.deal-content p {
  color: var(--text-light);
  font-size: 16px;
  margin: 0;
}

.deal-pricing {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin: var(--spacing-md) 0;
  padding: var(--spacing-md);
  background: var(--bg-light);
  border-radius: 4px;
  border-left: 4px solid var(--accent);
}

.sale-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
}

.savings {
  color: #059669;
  font-weight: 600;
  font-size: 16px;
}

.book-now {
  background: var(--accent);
  color: white;
  padding: 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-align: center;
}

.book-now:hover {
  background: #92400e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* QUICK FILTERS */
.quick-filters {
  padding: var(--spacing-lg) 0;
  background: var(--bg-light);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  justify-content: center;
}

.filter-btn {
  padding: 12px var(--spacing-lg);
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* DEALS GRID SECTION */
.deals-grid-section {
  padding: var(--spacing-2xl) 0;
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin: var(--spacing-sm) 0;
}

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

.new-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}

.view-btn {
  background: var(--primary);
  color: white;
  padding: 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.departure {
  color: var(--text-light);
  font-size: 14px;
  margin: var(--spacing-xs) 0;
}

/* ALERT SIGNUP */
.alert-signup {
  background: var(--bg-light);
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.alert-signup h2 {
  margin-bottom: var(--spacing-md);
  text-align: center;
  border: none;
  padding: 0;
}

.alert-signup p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

.signup-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-form input {
  flex: 1;
  min-width: 250px;
  padding: 14px var(--spacing-md);
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.signup-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.subscribe-btn {
  background: var(--accent);
  color: white;
  padding: 14px var(--spacing-lg);
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: #92400e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* FAQ SECTION */
.faq {
  padding: var(--spacing-2xl) 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.faq-item {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}

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

.faq-item p {
  color: var(--text-light);
  font-size: 16px;
  margin: 0;
  line-height: 1.8;
}

/* DESTINATION CATEGORIES */
.destination-categories {
  padding: var(--spacing-lg) 0;
  background: var(--bg-light);
}

.category-tabs {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 12px var(--spacing-lg);
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* DESTINATIONS SECTION */
.destinations {
  padding: var(--spacing-2xl) 0;
}

.destination-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.climate-badge {
  background: var(--bg-light);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.destination-desc {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: var(--spacing-md);
}

.destination-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  border-top: 2px solid var(--bg-light);
  border-bottom: 2px solid var(--bg-light);
}

.destination-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.highlight {
  background: var(--bg-light);
  padding: 4px var(--spacing-sm);
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.explore-btn {
  background: var(--secondary);
  color: white;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: block;
}

.explore-btn:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* REGIONAL INFO */
.regional-info {
  background: var(--bg-light);
  padding: var(--spacing-2xl) 0;
}

.regions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.region-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 240px;
  border-top: 4px solid var(--secondary);
  margin-bottom: var(--spacing-md);
}

.region-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: var(--spacing-sm);
}

.region-card p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

/* SERVICES DETAILED */
.services-detailed {
  padding: var(--spacing-2xl) 0;
}

.service-item {
  background: white;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg);
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.service-content h2 {
  font-size: 24px;
  margin-bottom: var(--spacing-md);
  color: var(--primary);
  border: none;
  padding: 0;
}

.service-content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.service-features li {
  padding-left: var(--spacing-md);
  position: relative;
  color: var(--text-dark);
  font-size: 15px;
}

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

.service-price {
  background: var(--bg-light);
  padding: var(--spacing-md);
  border-radius: 4px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin-top: var(--spacing-md);
  border: 2px solid var(--accent);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #1E40AF 0%, #0EA5E9 100%);
  color: white;
  padding: var(--spacing-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%);
  background-size: 40px 40px;
  opacity: 0.5;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
  border: none;
  padding: 0;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary,
.btn-secondary {
  padding: 14px var(--spacing-lg);
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  min-width: 180px;
}

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

.btn-primary:hover {
  background: #92400e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* OUR STORY */
.our-story {
  padding: var(--spacing-2xl) 0;
}

.text-section {
  max-width: 800px;
  margin: var(--spacing-lg) auto 0;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

/* MISSION VALUES */
.mission-values {
  background: var(--bg-light);
  padding: var(--spacing-2xl) 0;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.value-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 280px;
  border-top: 4px solid var(--primary);
  margin-bottom: var(--spacing-md);
}

.value-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-card p {
  color: var(--text-light);
  font-size: 15px;
  margin: 0;
  line-height: 1.8;
}

/* KEY NUMBERS */
.key-numbers {
  padding: var(--spacing-2xl) 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.stat-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
  border: 3px solid var(--primary);
  margin-bottom: var(--spacing-md);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* WHY CHOOSE */
.why-choose {
  background: var(--bg-light);
  padding: var(--spacing-2xl) 0;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.benefit-item {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 240px;
  border-left: 4px solid var(--secondary);
  margin-bottom: var(--spacing-md);
}

.benefit-item h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: var(--spacing-sm);
}

.benefit-item p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
  line-height: 1.8;
}

/* PARTNERS */
.partners {
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.partners-intro {
  max-width: 700px;
  margin: var(--spacing-lg) auto;
  font-size: 18px;
  color: var(--text-light);
}

.partners-info {
  background: var(--bg-light);
  padding: var(--spacing-lg);
  border-radius: 4px;
  border-left: 4px solid var(--primary);
  max-width: 600px;
  margin: var(--spacing-lg) auto 0;
}

.partners-info p {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

/* CTA CONTACT */
.cta-contact {
  background: linear-gradient(135deg, #1E40AF 0%, #0EA5E9 100%);
  color: white;
  padding: var(--spacing-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%);
  background-size: 40px 40px;
  opacity: 0.5;
}

.cta-contact h2 {
  color: white;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
  border: none;
  padding: 0;
}

.cta-contact p {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

/* CONTACT METHODS */
.contact-methods {
  padding: var(--spacing-2xl) 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.contact-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 280px;
  border-top: 4px solid var(--primary);
  margin-bottom: var(--spacing-md);
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin-bottom: var(--spacing-md);
}

.contact-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: var(--spacing-md);
}

.contact-card p {
  color: var(--text-light);
  font-size: 15px;
  margin: 4px 0;
  line-height: 1.6;
}

.contact-card strong {
  color: var(--text-dark);
  font-size: 18px;
  display: block;
  margin-bottom: var(--spacing-xs);
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background: var(--bg-light);
  padding: var(--spacing-2xl) 0;
}

.form-wrapper {
  max-width: 800px;
  margin: var(--spacing-lg) auto 0;
  background: white;
  padding: var(--spacing-xl);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
}

.form-info {
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.form-info p {
  font-size: 16px;
  color: var(--text-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-row {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  flex: 1;
  min-width: 250px;
}

.form-field label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px var(--spacing-sm);
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--bg-light);
  border-radius: 4px;
}

.form-checkbox input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.form-checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.submit-btn {
  background: var(--primary);
  color: white;
  padding: 14px var(--spacing-lg);
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  margin-top: var(--spacing-md);
}

.submit-btn:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* OFFICE INFO */
.office-info {
  padding: var(--spacing-2xl) 0;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

.office-detail {
  flex: 1;
  min-width: 280px;
  padding: var(--spacing-lg);
  background: white;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--secondary);
}

.office-detail h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.office-detail p {
  color: var(--text-light);
  font-size: 15px;
  margin: 0;
  line-height: 1.8;
}

/* FAQ CONTACT */
.faq-contact {
  background: var(--bg-light);
  padding: var(--spacing-2xl) 0;
}

/* LEGAL CONTENT */
.hero-legal {
  background: linear-gradient(135deg, #1E40AF 0%, #0EA5E9 100%);
  color: white;
  padding: var(--spacing-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-legal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%);
  background-size: 40px 40px;
  opacity: 0.5;
}

.hero-legal h1 {
  color: white;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
  border: none;
}

.legal-date {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin: 0;
}

.legal-content {
  padding: var(--spacing-2xl) 0;
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: var(--spacing-xl);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
}

.legal-text h2 {
  color: var(--primary);
  font-size: 24px;
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--bg-light);
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  color: var(--text-dark);
  font-size: 18px;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.legal-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.legal-text ul {
  margin: var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
}

.legal-text li {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

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

.legal-text a:hover {
  color: #1e3a8a;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  padding: var(--spacing-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%);
  background-size: 60px 60px;
  opacity: 0.5;
}

.thank-you-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 96px;
  height: 96px;
  background: white;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 700;
  margin: 0 auto var(--spacing-lg);
  box-shadow: var(--shadow-lg);
}

.thank-you-content h1 {
  color: white;
  margin-bottom: var(--spacing-md);
  border: none;
}

.confirmation-message {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  margin-bottom: var(--spacing-lg);
}

.return-home-btn {
  background: white;
  color: #059669;
  padding: 14px var(--spacing-lg);
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.return-home-btn:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* NEXT STEPS */
.next-steps {
  padding: var(--spacing-2xl) 0;
}

.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.timeline-step {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 4px solid #059669;
  margin-bottom: var(--spacing-md);
}

.timeline-step .step-number {
  background: #059669;
}

.timeline-step h3 {
  font-size: 18px;
  margin-bottom: var(--spacing-sm);
}

.timeline-step p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

/* SUGGESTED ACTIONS */
.suggested-actions {
  background: var(--bg-light);
  padding: var(--spacing-2xl) 0;
}

.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.action-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  border-left: 4px solid var(--primary);
  margin-bottom: var(--spacing-md);
}

.action-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin: 0;
}

.action-card p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.action-btn {
  background: var(--primary);
  color: white;
  padding: 12px;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* URGENT CONTACT */
.urgent-contact {
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.urgent-contact h2 {
  margin-bottom: var(--spacing-md);
  text-align: center;
  border: none;
  padding: 0;
}

.urgent-contact > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.contact-option img {
  width: 64px;
  height: 64px;
  margin-bottom: var(--spacing-md);
}

.contact-option p {
  color: var(--text-light);
  font-size: 14px;
  margin: 4px 0;
}

.contact-option strong {
  color: var(--text-dark);
  font-size: 18px;
  display: block;
  margin-bottom: var(--spacing-xs);
}

/* QUICK LINKS */
.quick-links {
  background: var(--bg-light);
  padding: var(--spacing-2xl) 0;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.link-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  border-top: 4px solid var(--primary);
  margin-bottom: var(--spacing-md);
}

.link-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin: 0;
}

.link-card p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.link-card a {
  background: var(--secondary);
  color: white;
  padding: 12px;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.link-card a:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: white;
  padding: var(--spacing-md);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid var(--primary);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-md);
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

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

.cookie-text a {
  color: white;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn.accept {
  background: #059669;
  color: white;
}

.cookie-btn.accept:hover {
  background: #047857;
}

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

.cookie-btn.reject:hover {
  border-color: white;
}

.cookie-btn.settings {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.cookie-btn.settings:hover {
  border-color: white;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: white;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--primary);
}

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

.cookie-modal-header {
  padding: var(--spacing-lg);
  border-bottom: 2px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: 24px;
  color: var(--primary);
  border: none;
  padding: 0;
}

.cookie-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 24px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--bg-light);
}

.cookie-modal-body {
  padding: var(--spacing-lg);
}

.cookie-category {
  padding: var(--spacing-md);
  background: var(--bg-light);
  border-radius: 4px;
  margin-bottom: var(--spacing-md);
  border-left: 4px solid var(--primary);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.cookie-category h3 {
  margin: 0;
  font-size: 16px;
  color: var(--text-dark);
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #059669;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.cookie-modal-footer {
  padding: var(--spacing-lg);
  border-top: 2px solid var(--border-color);
  display: flex;
  gap: var(--spacing-sm);
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-save-btn {
  background: var(--primary);
  color: white;
  padding: 12px var(--spacing-lg);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.cookie-save-btn:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile menu toggle visible */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-content .cta-button {
    display: none;
  }
  
  /* Typography scaling */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero adjustments */
  .hero,
  .hero-internal,
  .hero-urgent,
  .hero-legal,
  .thank-you-hero {
    padding: var(--spacing-xl) 0;
  }
  
  /* Search widget mobile */
  .search-widget {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .search-field {
    min-width: 100%;
  }
  
  .search-button {
    width: 100%;
  }
  
  /* Cards full width on mobile */
  .deal-card,
  .benefit-card,
  .destination-card,
  .step-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Tour card mobile layout */
  .tour-card {
    flex-direction: column;
  }
  
  .tour-card .tour-image {
    width: 100%;
    height: 200px;
  }
  
  .tour-info,
  .tour-pricing {
    min-width: 100%;
    border: none;
    border-top: 2px solid var(--bg-light);
  }
  
  .tour-pricing {
    align-items: flex-start;
  }
  
  /* Newsletter form mobile */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    min-width: 100%;
  }
  
  /* Footer mobile */
  .footer-content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  
  /* Form mobile */
  .form-row {
    flex-direction: column;
  }
  
  .form-field {
    min-width: 100%;
  }
  
  /* CTA buttons mobile */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Stats grid mobile */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-card {
    min-width: 100%;
  }
  
  /* Contact options mobile */
  .contact-options {
    flex-direction: column;
  }
  
  .contact-option {
    min-width: 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    min-width: 100%;
  }
  
  .cookie-buttons {
    justify-content: stretch;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Featured deals mobile */
  .featured-deal {
    min-width: 100%;
  }
  
  /* Filter buttons mobile */
  .filter-buttons {
    justify-content: stretch;
  }
  
  .filter-btn {
    flex: 1;
    min-width: calc(50% - var(--spacing-sm) / 2);
  }
  
  /* Office details mobile */
  .office-details {
    flex-direction: column;
  }
  
  .office-detail {
    min-width: 100%;
  }
  
  /* Success icon mobile */
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile adjustments */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  /* Compact padding on mobile */
  section {
    padding: var(--spacing-lg) 0;
  }
  
  .deal-card,
  .benefit-card,
  .destination-card,
  .service-item {
    padding: var(--spacing-md);
  }
  
  /* Smaller stat numbers */
  .stat-number {
    font-size: 36px;
  }
  
  /* Compact filter buttons */
  .filter-btn {
    padding: 10px var(--spacing-md);
    font-size: 12px;
  }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border-color: #000000;
  }
  
  .deal-card,
  .benefit-card,
  .destination-card {
    border: 2px solid #000000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}