/* ===================================
   GRIM CANYON IMMOBILIEN - PLAYFUL DYNAMIC STYLE
   CSS Reset & Base Styles
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2D2D2D;
  background: linear-gradient(135deg, #FFE5E5 0%, #FFF5E6 50%, #E5F5FF 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ===================================
   PLAYFUL DYNAMIC TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #FF6B6B;
  text-shadow: 2px 2px 0 rgba(255, 107, 107, 0.2);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: bounceIn 0.8s ease-out;
}

h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #4ECDC4;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #FF6B6B;
}

h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #FFD93D;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: #FF6B6B;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

a:hover {
  color: #4ECDC4;
  transform: scale(1.05);
}

strong {
  font-weight: 700;
  color: #FF6B6B;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
}

/* ===================================
   CONTAINER & LAYOUT (FLEXBOX ONLY)
   =================================== */

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

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

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

header {
  background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
  animation: slideDown 0.5s ease-out;
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(-5deg) scale(1.1);
  animation: wiggle 0.5s ease;
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #FFD93D;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

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

.cta-button {
  background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
  color: #2D2D2D;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 217, 61, 0.6);
  border-color: #FF6B6B;
  animation: pulse 0.6s ease;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
  color: #2D2D2D;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 217, 61, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FF6B6B 0%, #4ECDC4 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFD93D;
  color: #2D2D2D;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #FFA500;
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(10px) scale(1.05);
  border-color: #FFD93D;
}

/* ===================================
   HERO SECTION - PLAYFUL & DYNAMIC
   =================================== */

.hero {
  background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #FFD93D 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveBackground 20s linear infinite;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  animation: bounceIn 1s ease-out;
}

.hero-subheadline {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.8;
}

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

.trust-badge {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 25px;
  display: inline-block;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ===================================
   BUTTONS - BRIGHT & ENERGETIC
   =================================== */

.btn-primary {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
  border-color: #FFD93D;
  animation: shake 0.5s ease;
}

.btn-secondary {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(78, 205, 196, 0.6);
  border-color: #FFD93D;
  animation: shake 0.5s ease;
}

/* ===================================
   CARDS - PLAYFUL DESIGN
   =================================== */

.value-cards,
.service-cards,
.destination-cards,
.category-grid,
.property-grid,
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.value-card,
.service-card,
.destination-card,
.category-card,
.property-card,
.testimonial-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5E6 100%);
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before,
.service-card::before,
.destination-card::before {
  content: '★';
  position: absolute;
  top: -15px;
  right: 20px;
  font-size: 36px;
  color: #FFD93D;
  animation: float 3s ease-in-out infinite;
}

.value-card:hover,
.service-card:hover,
.destination-card:hover,
.category-card:hover,
.property-card:hover,
.testimonial-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 45px rgba(255, 107, 107, 0.4);
  border-color: #4ECDC4;
}

.value-card h3,
.service-card h3,
.destination-card h3 {
  color: #FF6B6B;
  margin-bottom: 16px;
  font-size: 24px;
}

.value-card p,
.service-card p,
.destination-card p {
  color: #2D2D2D;
  line-height: 1.8;
}

.price {
  font-weight: 700;
  color: #4ECDC4;
  font-size: 20px;
  margin: 16px 0;
  display: block;
}

/* ===================================
   TESTIMONIALS - READABLE & BRIGHT
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #FFE5E5 0%, #E5F5FF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(78, 205, 196, 0.2);
  border-left: 5px solid #4ECDC4;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #2D2D2D;
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #FF6B6B;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 0;
}

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

.trust-indicators span {
  background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   SECTIONS - COLORFUL SPACING
   =================================== */

.value-proposition,
.services-overview,
.destinations,
.portfolio-intro,
.locations-overview {
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
}

.section-subheadline {
  font-size: 20px;
  color: #2D2D2D;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ===================================
   CTA BANNER - ENERGETIC
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #FFD93D 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  box-shadow: 0 10px 40px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-banner p {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 32px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.availability {
  color: #FFFFFF;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 600;
}

/* ===================================
   BREADCRUMB - FUN NAVIGATION
   =================================== */

.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #2D2D2D;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #4ECDC4;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #FF6B6B;
  transform: scale(1.1);
}

/* ===================================
   HERO SMALL - COLORFUL HEADER
   =================================== */

.hero-small {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  padding: 80px 20px 60px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 40px rgba(78, 205, 196, 0.3);
}

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

.hero-small p {
  color: #FFFFFF;
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* ===================================
   COMPANY STORY & VALUES
   =================================== */

.company-story,
.values,
.team,
.statistics {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.milestones,
.value-grid,
.team-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.milestone,
.value-item,
.team-member,
.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, #FFE5E5 0%, #FFF5E6 100%);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(255, 107, 107, 0.2);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.milestone:hover,
.value-item:hover,
.team-member:hover,
.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.3);
  border-color: #4ECDC4;
}

.milestone strong {
  display: block;
  font-size: 42px;
  color: #FF6B6B;
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}

.stat-number {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #4ECDC4;
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  text-shadow: 2px 2px 0 rgba(78, 205, 196, 0.2);
}

.role {
  color: #4ECDC4;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

/* ===================================
   LOCATION DETAILS
   =================================== */

.location-detail,
.service-detail {
  padding: 60px 20px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5E6 100%);
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
  border-left: 8px solid #FF6B6B;
}

.tagline {
  font-size: 24px;
  color: #4ECDC4;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
}

.highlight-list,
.included-list,
.benefit-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.highlight-list li,
.included-list li,
.benefit-list li {
  padding: 12px 0 12px 40px;
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  color: #2D2D2D;
}

.highlight-list li::before,
.included-list li::before,
.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.price-range,
.listings,
.golden-visa,
.service-price,
.returns {
  font-size: 18px;
  font-weight: 700;
  color: #FF6B6B;
  margin: 20px 0;
  padding: 16px 24px;
  background: linear-gradient(135deg, #FFE5E5 0%, #FFF5E6 100%);
  border-radius: 15px;
  border-left: 5px solid #FF6B6B;
}

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

.contact-methods,
.contact-grid,
.contact-method,
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
  justify-content: space-between;
}

.contact-method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  color: #FFFFFF;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(78, 205, 196, 0.3);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 20px;
}

.contact-method:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 45px rgba(78, 205, 196, 0.5);
}

.contact-method h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 24px;
}

.contact-method p,
.contact-method strong {
  color: #FFFFFF;
}

.form-container {
  background: linear-gradient(135deg, #FFE5E5 0%, #FFF5E6 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
  margin: 32px 0;
}

.form-note,
.privacy-note,
.note {
  font-size: 16px;
  color: #2D2D2D;
  padding: 16px 24px;
  background: rgba(78, 205, 196, 0.1);
  border-radius: 12px;
  border-left: 4px solid #4ECDC4;
  margin: 20px 0;
}

.office-details {
  padding: 32px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(255, 107, 107, 0.2);
  margin: 32px 0;
}

.team-contact-grid,
.team-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.team-contact {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  color: #FFFFFF;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.3);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 20px;
}

.team-contact:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 45px rgba(255, 107, 107, 0.5);
}

.team-contact h3,
.team-contact .role,
.team-contact p {
  color: #FFFFFF;
}

.general-contact {
  text-align: center;
  font-size: 18px;
  margin-top: 32px;
  padding: 20px;
  background: linear-gradient(135deg, #FFE5E5 0%, #FFF5E6 100%);
  border-radius: 15px;
}

/* ===================================
   FAQ
   =================================== */

.faq-contact,
.faq-item {
  margin: 32px 0;
}

.faq-item {
  padding: 24px 32px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5E6 100%);
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(78, 205, 196, 0.2);
  border-left: 5px solid #4ECDC4;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 35px rgba(78, 205, 196, 0.3);
}

.faq-item h3 {
  color: #FF6B6B;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #2D2D2D;
  line-height: 1.8;
}

/* ===================================
   LEGAL PAGES
   =================================== */

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

.legal-page .container {
  max-width: 900px;
  background: #FFFFFF;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
}

.legal-page h1 {
  color: #FF6B6B;
  font-size: 42px;
  margin-bottom: 16px;
}

.legal-page h2 {
  color: #4ECDC4;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page h3 {
  color: #FF6B6B;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.last-updated {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 32px;
}

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

.thank-you-page {
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  color: #FFFFFF;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(78, 205, 196, 0.4);
  animation: bounceIn 0.8s ease-out;
}

.message,
.confirmation,
.timeline {
  font-size: 18px;
  margin-bottom: 24px;
  color: #2D2D2D;
}

.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 40px 0;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: linear-gradient(135deg, #FFE5E5 0%, #FFF5E6 100%);
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(255, 107, 107, 0.2);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.3);
}

.step h3 {
  color: #4ECDC4;
  font-size: 20px;
  margin-bottom: 12px;
}

.immediate-contact {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.3);
}

.immediate-contact h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.immediate-contact p,
.immediate-contact strong {
  color: #FFFFFF;
}

.suggestion-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.suggestion-link {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  color: #FFFFFF;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(78, 205, 196, 0.3);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 20px;
}

.suggestion-link:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 45px rgba(78, 205, 196, 0.5);
}

.suggestion-link h3 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.suggestion-link p {
  color: #FFFFFF;
}

.testimonial-single {
  background: linear-gradient(135deg, #FFE5E5 0%, #FFF5E6 100%);
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
}

.testimonial-single blockquote {
  font-size: 20px;
  font-style: italic;
  color: #2D2D2D;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

.testimonial-single footer {
  font-weight: 700;
  color: #FF6B6B;
  font-style: normal;
  margin-top: 20px;
  font-size: 16px;
}

.return-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ===================================
   FOOTER - COLORFUL & FUN
   =================================== */

footer {
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FF6B6B 0%, #4ECDC4 50%, #FFD93D 100%);
}

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

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

.footer-column h4 {
  color: #FFD93D;
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-column p,
.footer-column li {
  color: #E0E0E0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column a {
  color: #E0E0E0;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #4ECDC4;
  transform: translateX(5px);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.footer-legal a {
  color: #E0E0E0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #FFD93D;
  transform: scale(1.1);
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #999;
}

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

.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #FFD93D;
}

.cookie-banner.active {
  bottom: 0;
}

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner a {
  color: #4ECDC4;
  text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid transparent;
}

.cookie-accept {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.5);
}

.cookie-reject {
  background: #666;
  color: #FFFFFF;
}

.cookie-reject:hover {
  background: #555;
  transform: translateY(-3px);
}

.cookie-settings {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ===================================
   COOKIE MODAL
   =================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  padding: 20px;
  backdrop-filter: blur(5px);
}

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  animation: bounceIn 0.6s ease-out;
}

.cookie-modal h2 {
  color: #FF6B6B;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: linear-gradient(135deg, #FFE5E5 0%, #FFF5E6 100%);
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-category h3 {
  color: #2D2D2D;
  margin: 0;
  font-size: 18px;
}

.cookie-category p {
  color: #666;
  font-size: 14px;
  margin: 8px 0 0 0;
}

.cookie-toggle {
  width: 60px;
  height: 30px;
  background: #CCC;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #4ECDC4;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

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

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px) rotate(-2deg);
  }
  75% {
    transform: translateX(5px) rotate(2deg);
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

@keyframes moveBackground {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Cards */
  .value-card,
  .service-card,
  .destination-card,
  .category-card,
  .property-card,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Grids */
  .milestone,
  .value-item,
  .team-member,
  .stat,
  .step,
  .contact-method,
  .team-contact,
  .suggestion-link {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-columns {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  /* Sections */
  .section {
    padding: 40px 20px;
  }
  
  .cta-banner h2 {
    font-size: 32px;
  }
  
  .legal-page .container {
    padding: 32px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .service-card,
  .destination-card,
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .milestone,
  .value-item,
  .stat {
    flex: 1 1 calc(50% - 32px);
  }
  
  .team-member,
  .contact-method,
  .team-contact,
  .suggestion-link {
    flex: 1 1 calc(50% - 32px);
  }
}

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

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

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

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

.hidden {
  display: none;
}

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

*:focus {
  outline: 3px solid #FFD93D;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #FFD93D;
  outline-offset: 3px;
}

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

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

/* ===================================
   END OF PLAYFUL DYNAMIC STYLES
   =================================== */