/* =================================================================
   MELAMLAMI - MONOCHROME SOPHISTICATED DESIGN SYSTEM
   Professional Legal Services - Stuttgart
   ================================================================= */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* MONOCHROME SOPHISTICATED TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 36px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #333333;
  font-size: 16px;
}

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

a:hover {
  color: #666666;
}

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

ul {
  list-style: none;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* DRAMATIC MONOCHROME HEADER */
header {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333333;
}

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

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

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

/* SOPHISTICATED NAVIGATION */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #cccccc;
}

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

/* MOBILE MENU - SOPHISTICATED SLIDE-IN */
.mobile-menu-toggle {
  display: none;
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle:hover {
  background: #000000;
  color: #ffffff;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  z-index: 1200;
  padding: 80px 40px 40px;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  border-left: 1px solid #333333;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 0;
  border-bottom: 1px solid #333333;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #cccccc;
  padding-left: 10px;
  border-bottom-color: #ffffff;
}

/* DRAMATIC HERO SECTION */
.hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 50%, #000000 100%);
  color: #ffffff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.02) 10px,
    rgba(255, 255, 255, 0.02) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease;
}

.hero-subheadline {
  font-size: 20px;
  color: #cccccc;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-badges span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

/* SOPHISTICATED BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

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

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* MONOCHROME SERVICES GRID */
.services-overview {
  background: #f8f8f8;
  padding: 80px 0;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 40px 32px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: #000000;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 60px;
  height: 60px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.service-card:hover img {
  filter: grayscale(0%);
}

.service-card h3 {
  color: #000000;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 16px 0;
}

.service-card a {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
  display: inline-block;
}

.service-card a:hover {
  color: #666666;
}

/* WHY CHOOSE US - ELEGANT CONTRAST */
.why-choose-us {
  background: #000000;
  color: #ffffff;
  padding: 80px 0;
}

.why-choose-us h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
}

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

.feature {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px 20px;
  border: 1px solid #333333;
  transition: all 0.3s ease;
}

.feature:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.feature img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
}

.feature h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}

.feature p {
  color: #cccccc;
  font-size: 14px;
}

/* STATISTICS - DRAMATIC DISPLAY */
.statistics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #333333;
}

.stat {
  text-align: center;
  min-width: 150px;
}

.stat strong {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}

.stat span {
  font-size: 14px;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: #f8f8f8;
  padding: 80px 0;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  background: #ffffff;
  padding: 40px;
  border-left: 4px solid #000000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #000000;
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card .author {
  color: #666666;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  margin-top: 16px;
}

/* CTA BANNER - BOLD CONTRAST */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-banner p {
  color: #cccccc;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* PAGE HERO - SOPHISTICATED */
.page-hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 80px 0 60px;
  border-bottom: 1px solid #333333;
}

.breadcrumb {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: #ffffff;
}

.breadcrumb a:hover {
  color: #cccccc;
}

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

.page-hero p {
  color: #cccccc;
  font-size: 18px;
}

/* SERVICES DETAILED */
.services-detailed {
  padding: 60px 0;
}

.service-detail {
  background: #ffffff;
  padding: 48px;
  margin-bottom: 48px;
  border: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-color: #000000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-detail img {
  width: 80px;
  height: 80px;
  filter: grayscale(100%);
}

.service-detail h2 {
  color: #000000;
  margin-bottom: 16px;
}

.service-detail ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  padding-left: 0;
}

.service-detail li {
  color: #333333;
  font-size: 15px;
  padding-left: 28px;
  position: relative;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
}

/* ABOUT CONTENT */
.about-content {
  padding: 60px 0;
  background: #f8f8f8;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.values {
  background: #ffffff;
  padding: 32px;
  margin: 32px 0;
  border-left: 4px solid #000000;
}

.values h3 {
  margin-bottom: 20px;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.values li {
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  padding-left: 28px;
  position: relative;
}

.values li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #000000;
}

/* TEAM SECTION */
.team-section {
  padding: 60px 0;
  background: #ffffff;
}

.team-features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.team-features .feature {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 32px;
}

.team-features .feature:hover {
  border-color: #000000;
  background: #ffffff;
}

/* STATISTICS SECTION */
.statistics-section {
  background: #000000;
  color: #ffffff;
  padding: 80px 0;
}

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 40px 24px;
  border: 1px solid #333333;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.stat-card strong {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  font-family: 'Merriweather', serif;
}

.stat-card span {
  font-size: 14px;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* WHY DIFFERENT */
.why-different {
  padding: 60px 0;
  background: #f8f8f8;
}

.differentiators {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.diff-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 40px;
  border-left: 4px solid #000000;
  transition: all 0.3s ease;
}

.diff-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(8px);
}

.diff-card h3 {
  margin-bottom: 16px;
}

/* CTA SECTION */
.cta-section {
  background: #000000;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-section p {
  color: #cccccc;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.trust-note {
  color: #cccccc;
  font-size: 14px;
  margin-top: 20px;
  font-style: italic;
}

/* PRICING */
.pricing-content {
  padding: 60px 0;
}

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

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

.price-row {
  background: #ffffff;
  padding: 40px;
  border: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.price-row:hover {
  border-color: #000000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.price-row h3 {
  color: #000000;
  margin-bottom: 8px;
}

.price-row > p {
  color: #666666;
  font-size: 15px;
}

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

.price-details .price {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  font-family: 'Merriweather', serif;
}

.price-details .duration,
.price-details .express,
.price-details .note {
  color: #666666;
  font-size: 14px;
  padding: 8px 16px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
}

/* PACKAGES */
.packages {
  background: #f8f8f8;
  padding: 60px 0;
}

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

.package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.package-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 450px;
  background: #ffffff;
  padding: 40px;
  border: 2px solid #000000;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.package-card h3 {
  margin-bottom: 16px;
}

.regular-price {
  color: #999999;
  text-decoration: line-through;
  font-size: 14px;
  margin: 16px 0 8px;
}

.package-price {
  font-size: 32px;
  font-weight: 900;
  color: #000000;
  font-family: 'Merriweather', serif;
}

/* PAYMENT INFO */
.payment-info {
  background: #000000;
  color: #ffffff;
  padding: 40px;
  margin-top: 60px;
  text-align: center;
}

.payment-info h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.payment-info p {
  color: #cccccc;
  font-size: 16px;
}

/* FAQ */
.faq-content {
  padding: 60px 0;
}

.faq-category {
  margin-bottom: 60px;
}

.faq-category h2 {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #000000;
}

.faq-item {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid #000000;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

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

.faq-item p {
  color: #333333;
  line-height: 1.7;
}

/* FAQ CONTACT */
.faq-contact {
  background: #f8f8f8;
  padding: 60px 0;
  text-align: center;
}

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

/* CONTACT PAGE */
.contact-methods {
  padding: 60px 0;
  background: #f8f8f8;
}

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

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.method-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background: #ffffff;
  padding: 40px;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: #000000;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.method-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: grayscale(100%);
}

.method-card h3 {
  margin-bottom: 16px;
}

/* CONTACT FORM */
.contact-form-section {
  padding: 60px 0;
  background: #ffffff;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > p {
  text-align: center;
  color: #666666;
  margin-bottom: 48px;
}

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  background: #f8f8f8;
  padding: 48px;
  border: 2px solid #e0e0e0;
}

.form-placeholder ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.form-placeholder li {
  color: #333333;
  font-size: 15px;
  padding-left: 28px;
  position: relative;
}

.form-placeholder li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 20px;
}

.form-placeholder .note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  font-size: 14px;
  color: #666666;
}

/* OFFICE LOCATION */
.office-location {
  padding: 60px 0;
  background: #f8f8f8;
}

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

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.map-placeholder {
  flex: 1 1 50%;
  min-width: 300px;
  background: #e0e0e0;
  padding: 200px 40px;
  text-align: center;
  color: #666666;
  border: 2px solid #cccccc;
}

.location-info {
  flex: 1 1 40%;
  min-width: 300px;
}

.location-info h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.location-info .note {
  background: #ffffff;
  padding: 16px;
  margin-top: 24px;
  border-left: 4px solid #000000;
  font-size: 14px;
  color: #666666;
}

/* APPOINTMENT BOOKING */
.appointment-booking {
  padding: 60px 0;
  background: #ffffff;
}

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

.booking-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.booking-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background: #f8f8f8;
  padding: 40px;
  text-align: center;
  border: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.booking-card:hover {
  border-color: #000000;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.booking-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  filter: grayscale(100%);
}

.booking-card h3 {
  margin-bottom: 8px;
}

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

.legal-content .content-wrapper {
  background: #ffffff;
  padding: 60px;
  border: 1px solid #e0e0e0;
}

.legal-content .intro {
  font-size: 18px;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 32px;
  padding: 24px;
  background: #f8f8f8;
  border-left: 4px solid #000000;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.legal-content li {
  color: #333333;
  font-size: 15px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 20px;
}

.summary-box,
.rights-overview {
  background: #000000;
  color: #ffffff;
  padding: 32px;
  margin: 40px 0;
  border: 2px solid #000000;
}

.summary-box h3,
.rights-overview h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

.summary-box ul,
.rights-overview ul {
  gap: 16px;
}

.summary-box li,
.rights-overview li {
  color: #cccccc;
  font-size: 15px;
}

.summary-box li::before,
.rights-overview li::before {
  color: #ffffff;
}

.cookie-control {
  background: #f8f8f8;
  padding: 32px;
  margin-top: 40px;
  border: 2px solid #e0e0e0;
  text-align: center;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 100px 0 80px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease;
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
}

.thank-you-hero .lead {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #cccccc;
  font-size: 16px;
}

/* STEPS */
.next-steps {
  padding: 60px 0;
  background: #f8f8f8;
}

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

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background: #ffffff;
  padding: 40px;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: grayscale(100%);
}

.step h3 {
  margin-bottom: 12px;
}

/* CONTACT INFO */
.contact-info {
  padding: 60px 0;
  background: #ffffff;
}

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

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

.contact-method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background: #f8f8f8;
  padding: 40px;
  text-align: center;
  border: 2px solid #e0e0e0;
}

.contact-method img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: grayscale(100%);
}

/* USEFUL LINKS */
.useful-links {
  padding: 60px 0;
  background: #f8f8f8;
}

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

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.link-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.link-card img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  filter: grayscale(100%);
}

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

.link-card p {
  font-size: 14px;
  color: #666666;
  flex-grow: 1;
}

/* SOCIAL PROOF */
.social-proof {
  padding: 60px 0;
  background: #ffffff;
}

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

/* SOPHISTICATED FOOTER */
footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  border-top: 1px solid #333333;
}

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

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-section p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  color: #999999;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  border-top: 2px solid #333333;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 50%;
  min-width: 250px;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.cookie-accept {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cookie-accept:hover {
  background: transparent;
  color: #ffffff;
}

.cookie-reject,
.cookie-settings {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: #ffffff;
  color: #000000;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  padding: 24px;
  overflow-y: auto;
}

.cookie-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 48px;
  position: relative;
  border: 2px solid #000000;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #000000;
  padding: 8px;
  transition: transform 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #e0e0e0;
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Services Grid */
  .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    min-width: 100%;
  }
  
  /* Features */
  .features-grid {
    flex-direction: column;
  }
  
  .feature {
    min-width: 100%;
  }
  
  /* Statistics */
  .statistics {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    min-width: 100%;
  }
  
  /* Service Detail */
  .service-detail {
    padding: 32px 24px;
  }
  
  /* Team Features */
  .team-features {
    flex-direction: column;
  }
  
  .team-features .feature {
    min-width: 100%;
  }
  
  /* Stats Grid */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-card {
    min-width: 100%;
  }
  
  /* Differentiators */
  .differentiators {
    flex-direction: column;
  }
  
  .diff-card {
    min-width: 100%;
  }
  
  /* Pricing */
  .price-details {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Package Grid */
  .package-grid {
    flex-direction: column;
  }
  
  .package-card {
    min-width: 100%;
  }
  
  /* Methods Grid */
  .methods-grid {
    flex-direction: column;
  }
  
  .method-card {
    min-width: 100%;
  }
  
  /* Location Grid */
  .location-grid {
    flex-direction: column;
  }
  
  .map-placeholder {
    min-width: 100%;
    padding: 100px 20px;
  }
  
  .location-info {
    min-width: 100%;
  }
  
  /* Booking Options */
  .booking-options {
    flex-direction: column;
  }
  
  .booking-card {
    min-width: 100%;
  }
  
  /* Legal Content */
  .legal-content .content-wrapper {
    padding: 32px 24px;
  }
  
  /* Steps Grid */
  .steps-grid {
    flex-direction: column;
  }
  
  .step {
    min-width: 100%;
  }
  
  /* Contact Methods Grid */
  .contact-methods-grid {
    flex-direction: column;
  }
  
  .contact-method {
    min-width: 100%;
  }
  
  /* Links Grid */
  .links-grid {
    flex-direction: column;
  }
  
  .link-card {
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    min-width: 100%;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    min-width: 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
}

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

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .cta-section {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  body {
    background: white;
    color: black;
  }
}