/* FeWo-direkt.com.de - Modern Vacation Rental Guide */

:root {
  /* Primary Colors - Inspired by travel/vacation themes */
  --primary-blue: #0057B8;
  --primary-dark: #003d82;
  --accent-coral: #FF6B5B;
  --accent-gold: #F5A623;
  
  /* Neutral Colors */
  --dark-navy: #1a2b4a;
  --text-dark: #2c3e50;
  --text-medium: #5a6c7d;
  --text-light: #8392a5;
  --bg-light: #f8fafc;
  --bg-cream: #fef9f3;
  --white: #ffffff;
  
  /* Gradients */
  --hero-gradient: linear-gradient(135deg, #0057B8 0%, #003d82 50%, #1a2b4a 100%);
  --card-gradient: linear-gradient(180deg, rgba(0,87,184,0.03) 0%, rgba(255,255,255,1) 100%);
  
  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: clamp(60px, 8vw, 120px);
  --container-max: 1280px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 43, 74, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 43, 74, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 43, 74, 0.16);
  --shadow-xl: 0 20px 60px rgba(26, 43, 74, 0.2);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark-navy);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-medium);
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-coral);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 43, 74, 0.08);
  transition: var(--transition-smooth);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark-navy);
  display: none;
}

@media (min-width: 768px) {
  .logo-text {
    display: block;
  }
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 992px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 36px;
  }
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-coral);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-blue);
}

/* Header CTA Buttons */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 87, 184, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 184, 0.45);
}

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

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

.btn-accent {
  background: var(--accent-coral);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 107, 91, 0.35);
}

.btn-accent:hover {
  background: #e55a4a;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-dark);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-navy);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 40px 20px;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.25rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 43, 74, 0.1);
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding: 100px 0 60px;
  background: var(--hero-gradient);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

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

.hero h1 {
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Search Widget Container */
.search-widget-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin: 20px auto 25px;
  max-width: 800px;
  box-shadow: var(--shadow-xl);
}

.search-widget-container h3 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-navy);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

/* Hero Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

/* Page Hero (smaller for inner pages) */
.page-hero {
  position: relative;
  padding: 100px 0 50px;
  background: var(--hero-gradient);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
  margin-bottom: 1.5rem;
  margin-top: 20px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
  color: var(--white) !important;
}

/* Sections */
.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-cream {
  background: var(--bg-cream);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-coral);
  margin-bottom: 16px;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(26, 43, 74, 0.06);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

/* Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.info-card h4 {
  color: var(--primary-blue);
}

/* Content Layout */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 992px) {
  .content-wrapper {
    grid-template-columns: 1fr 350px;
  }
}

.main-content {
  order: 1;
}

.sidebar {
  order: 2;
}

@media (max-width: 991px) {
  .sidebar {
    order: 0;
  }
}

/* Sidebar Widgets */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 43, 74, 0.06);
}

.sidebar-widget h4 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-blue);
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 43, 74, 0.08);
}

.sidebar-widget li:last-child {
  border-bottom: none;
}

.sidebar-widget a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 500;
}

.sidebar-widget a:hover {
  color: var(--primary-blue);
}

/* CTA Box */
.cta-box {
  background: var(--hero-gradient);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
}

.cta-box h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

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

/* Article Content */
.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 50px;
  margin-bottom: 25px;
  padding-top: 30px;
  border-top: 1px solid rgba(26, 43, 74, 0.1);
}

.article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.article-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin: 20px 0 30px 24px;
}

.article-content li {
  margin-bottom: 12px;
  color: var(--text-medium);
}

.article-content strong {
  color: var(--dark-navy);
}

.article-content blockquote {
  margin: 30px 0;
  padding: 30px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
}

.article-content blockquote p {
  margin: 0;
  font-size: 1.15rem;
  color: var(--text-dark);
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(0, 87, 184, 0.08), rgba(0, 87, 184, 0.03));
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 30px 0;
  border: 1px solid rgba(0, 87, 184, 0.15);
}

.highlight-box h4 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

/* Tip Box */
.tip-box {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(245, 166, 35, 0.05));
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 30px 0;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.tip-box h4 {
  color: #d4920a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tip-box h4::before {
  content: '💡';
}

/* Image in Content */
.content-image {
  margin: 40px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-image figcaption {
  padding: 16px 20px;
  background: var(--bg-light);
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-weight: 600;
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* Destination Cards */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

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

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(26, 43, 74, 0.95));
  color: var(--white);
}

.destination-content h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.destination-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}

/* Steps List */
.steps-list {
  counter-reset: step;
  list-style: none;
  margin: 40px 0;
  padding: 0;
}

.steps-list li {
  position: relative;
  padding: 30px 30px 30px 90px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: var(--hero-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table th,
.data-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(26, 43, 74, 0.08);
}

.data-table th {
  background: var(--primary-blue);
  color: var(--white);
  font-weight: 600;
}

.data-table tr:hover {
  background: rgba(0, 87, 184, 0.03);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: rgba(0, 87, 184, 0.03);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-blue);
  transition: var(--transition-fast);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 30px 24px;
  background: var(--white);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid rgba(26, 43, 74, 0.12);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 8px;
}

.contact-info-item p {
  margin: 0;
  color: var(--text-medium);
}

/* Footer */
.footer {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-cta {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 30px;
}

.footer-cta p {
  margin-bottom: 20px;
}

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

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 50px;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: 30px;
  font-size: 1.35rem;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 10px;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
  z-index: 99;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-navy);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: var(--accent-coral);
}

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

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

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 90px 0 50px;
  }
  
  .page-hero {
    padding: 90px 0 40px;
  }
  
  .search-widget-container {
    padding: 20px;
    margin: 15px auto 20px;
  }
  
  .hero h1 {
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    margin-top: 15px;
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .steps-list li {
    padding: 25px 20px 25px 70px;
  }
  
  .steps-list li::before {
    left: 15px;
    width: 40px;
    height: 40px;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .scroll-top,
  .cookie-banner,
  .sidebar,
  .cta-box {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
}



