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

:root {
  --primary-color: #2C5F7F;
  --secondary-color: #8B6F47;
  --accent-color: #E8DCC4;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --bg-light: #ffffff;
  --bg-gray: #f8f8f8;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* GEOMETRIC STRUCTURED DESIGN SYSTEM */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography with Angular Geometric Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

ul li {
  margin-bottom: 8px;
  color: var(--text-light);
}

/* GEOMETRIC HEADER - STRUCTURED GRID */
header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a63 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

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

.logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: var(--bg-light);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

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

/* MOBILE MENU - GEOMETRIC SLIDE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary-color);
  color: white;
  border: 3px solid var(--accent-color);
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.mobile-menu-toggle:hover {
  background: var(--secondary-color);
  transform: scale(1.1) rotate(5deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a63 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 3px solid var(--accent-color);
  color: white;
  font-size: 32px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
}

.mobile-menu-close:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 24px;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  text-align: left;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

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

/* GEOMETRIC HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(44, 95, 127, 0.95) 0%, rgba(26, 74, 99, 0.95) 100%), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: var(--secondary-color);
  opacity: 0.1;
  transform: rotate(15deg);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-subtitle {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* GEOMETRIC BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  position: relative;
}

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

.btn-primary:hover {
  background: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

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

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-link {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.btn-link::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.btn-link:hover {
  color: var(--secondary-color);
}

.btn-link:hover::after {
  margin-left: 16px;
}

/* PAGE HERO - GEOMETRIC */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a63 100%);
  padding: 80px 0 60px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  margin-bottom: 60px;
}

.page-hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

.last-updated {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-top: 16px;
}

/* SECTIONS - STRUCTURED GRID LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition,
.services-overview,
.destinations-highlight,
.testimonials,
.process,
.trust-indicators,
.destinations-content,
.services-detailed,
.about-story,
.values,
.expertise,
.sustainability,
.service-overview,
.consultation-types,
.benefits,
.regional-sections,
.seasonal-recommendations {
  padding: 80px 0;
}

.value-proposition {
  background: var(--bg-gray);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.intro-text {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 48px;
  color: var(--text-light);
}

/* GEOMETRIC CARD GRIDS */
.benefits-grid,
.services-grid,
.destinations-grid,
.testimonials-grid,
.trust-grid,
.values-grid,
.expertise-grid,
.methods-grid,
.types-grid,
.benefits-grid,
.info-grid,
.regions-grid,
.seasons-grid,
.contact-grid,
.actions-grid,
.links-grid,
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.destination-card,
.testimonial-card,
.trust-item,
.value-card,
.stat-card,
.method-card,
.type-card,
.benefit-item,
.info-card,
.region-card,
.season-card,
.contact-card,
.action-card,
.link-card,
.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border: 3px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}

.benefit-card:hover,
.service-card:hover,
.destination-card:hover,
.value-card:hover,
.method-card:hover,
.type-card:hover,
.region-card:hover,
.season-card:hover,
.action-card:hover,
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.benefit-card img,
.value-card img,
.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  filter: invert(31%) sepia(18%) saturate(1844%) hue-rotate(163deg) brightness(93%);
}

.service-card h3,
.destination-card h3,
.region-card h3,
.season-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card .price,
.destination-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 16px 0;
  display: block;
}

.country,
.travel-time {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-style: italic;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: var(--bg-gray);
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-left: 6px solid var(--secondary-color);
  flex: 1 1 calc(50% - 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.customer-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trip-info {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

.rating {
  color: var(--secondary-color);
  font-size: 18px;
  margin-top: 8px;
}

/* PROCESS STEPS - GEOMETRIC FLOW */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 48px 0;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  filter: invert(31%) sepia(18%) saturate(1844%) hue-rotate(163deg);
}

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

.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 16px;
  clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
}

/* TRUST INDICATORS - STRUCTURED */
.trust-indicators {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 60px 0;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.trust-indicators h2 {
  color: white;
}

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

.trust-item {
  flex: 1 1 calc(25% - 48px);
  min-width: 180px;
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
}

.trust-item h3 {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.trust-item p {
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CTA BANNER - GEOMETRIC EMPHASIS */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #6d5838 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  margin: 80px 0;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.cta-banner h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-info {
  margin-top: 24px;
  font-size: 16px;
  color: white;
}

/* SERVICE DETAILS */
.service-detail-card {
  background: white;
  padding: 48px;
  margin-bottom: 40px;
  border: 3px solid var(--border-color);
  clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
}

.service-detail-card h2 {
  color: var(--primary-color);
  margin-bottom: 24px;
  font-size: 32px;
}

.service-detail-card h3 {
  color: var(--secondary-color);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-detail-card ul {
  margin: 24px 0 24px 24px;
}

.service-detail-card ul li {
  margin-bottom: 12px;
  padding-left: 8px;
}

.price-info {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 24px 0;
  padding: 16px;
  background: var(--bg-gray);
  border-left: 6px solid var(--secondary-color);
  display: inline-block;
}

.price-highlight {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 24px 0;
  text-align: center;
}

/* INCLUDED/EXCLUDED INFO */
.included-excluded {
  background: var(--bg-gray);
  padding: 60px 0;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.info-card {
  flex: 1 1 calc(50% - 32px);
  background: white;
  padding: 32px;
  border: 3px solid var(--border-color);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}

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

.info-card ul {
  margin-left: 0;
}

.info-card ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.info-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 0;
}

.content-wrapper {
  max-width: 900px;
  background: white;
  padding: 48px;
  border: 3px solid var(--border-color);
  margin-bottom: 32px;
  clip-path: polygon(0 0, 100% 0, 99.5% 100%, 0.5% 100%);
}

.content-wrapper h2 {
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-wrapper h3 {
  color: var(--secondary-color);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
}

.content-wrapper ul {
  margin: 16px 0 16px 32px;
}

.quick-links {
  background: var(--bg-gray);
  padding: 32px;
  border: 3px solid var(--border-color);
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
}

.quick-links h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 20px;
}

.quick-links ul {
  list-style: none;
  margin: 0;
}

.quick-links ul li {
  margin-bottom: 12px;
}

.quick-links a {
  font-weight: 600;
  display: inline-block;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.quick-links a:hover {
  transform: translateX(8px);
}

/* CONTACT FORM DISPLAY */
.contact-form-section {
  padding: 60px 0;
  background: var(--bg-gray);
}

.form-display {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border: 3px solid var(--border-color);
  clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field-placeholder {
  padding: 16px;
  background: var(--bg-gray);
  border: 2px solid var(--border-color);
  color: var(--text-light);
  font-style: italic;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.form-actions {
  margin-top: 32px;
  text-align: center;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a63 100%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.icon-wrapper {
  margin-bottom: 32px;
}

.icon-wrapper img {
  width: 120px;
  height: 120px;
  filter: invert(1);
}

.thank-you-hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 32px;
}

.confirmation-details,
.next-steps,
.testimonial-highlight,
.contact-reminder,
.office-info,
.quick-actions,
.contact-methods,
.contact-options {
  padding: 60px 0;
}

.steps-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step-card,
.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border: 3px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}

.step-card:hover,
.link-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-hover);
}

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

.response-time,
.note {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 16px;
}

.testimonial-featured {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border: 3px solid var(--border-color);
  border-left: 8px solid var(--secondary-color);
  clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
}

.testimonial-featured .quote {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.testimonial-featured .customer-name {
  font-size: 16px;
}

/* FOOTER - GEOMETRIC STRUCTURE */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: white;
  padding: 60px 0 24px;
  margin-top: 80px;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

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

.footer-section {
  flex: 1 1 calc(25% - 48px);
  min-width: 200px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}

.footer-section h4 {
  color: var(--accent-color);
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.footer-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

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

.footer-bottom {
  border-top: 2px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

.copyright {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

/* COOKIE CONSENT BANNER - GEOMETRIC */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a63 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

.cookie-banner.show {
  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 60%;
  min-width: 300px;
}

.cookie-text p {
  color: white;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.cookie-btn:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

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

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

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: white;
  padding: 48px;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
  border: 4px solid var(--primary-color);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-dark);
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
}

.cookie-modal-close:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 24px;
  border: 2px solid var(--border-color);
  clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
}

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

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-toggle {
  position: relative;
  width: 56px;
  height: 28px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: 0.3s;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
}

input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
  transform: translateX(28px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.preferences-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.preference-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: white;
  padding: 24px;
  border: 2px solid var(--border-color);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  .page-hero p {
    font-size: 16px;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .benefit-card,
  .service-card,
  .destination-card,
  .testimonial-card,
  .trust-item,
  .value-card,
  .stat-card,
  .step,
  .method-card,
  .type-card,
  .benefit-item,
  .info-card,
  .region-card,
  .season-card,
  .contact-card,
  .action-card,
  .link-card,
  .step-card,
  .preference-item,
  .contact-method {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 calc(50% - 12px);
    min-width: 120px;
  }
  
  .service-detail-card,
  .content-wrapper,
  .form-display {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .trust-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .thank-you-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 14px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .trust-item {
    flex: 1 1 100%;
  }
  
  .trust-item h3 {
    font-size: 36px;
  }
  
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .btn {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}