/* ==========================================================================
   VELVETY MEADOW AUTODETAILING - PLAYFUL DYNAMIC DESIGN
   Premium Autopflege Leipzig - Moderne & Lebendige Ästhetik
   ========================================================================== */

/* CSS RESET & BASE STYLES
   ========================================================================== */
* {
  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: #2d2d2d;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5e6 100%);
  overflow-x: hidden;
}

/* PLAYFUL DYNAMIC TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a472a;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 56px;
  background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 50%, #c9a961 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

h2 {
  font-size: 42px;
  color: #2d5f3f;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #c9a961, #ffd700);
  border-radius: 10px;
  animation: underlineGrow 0.6s ease forwards;
}

h3 {
  font-size: 28px;
  color: #1a472a;
}

h4 {
  font-size: 22px;
  color: #2d5f3f;
}

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

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

a:hover {
  color: #c9a961;
  transform: translateY(-2px);
}

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

li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #444;
}

strong {
  font-weight: 700;
  color: #1a472a;
}

/* ANIMATIONS
   ========================================================================== */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes underlineGrow {
  from { width: 0; }
  to { width: 80px; }
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

/* HEADER
   ========================================================================== */
header {
  background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(26, 71, 42, 0.3);
  animation: slideInDown 0.5s ease;
}

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

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

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(5deg) scale(1.1);
  animation: bounce 0.6s ease;
}

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

.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a961, #ffd700);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 10px;
}

.main-nav a:hover {
  color: #c9a961;
  transform: translateY(-3px);
}

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

/* MOBILE MENU TOGGLE BUTTON
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #c9a961, #ffd700);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: #1a472a;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
  transition: all 0.3s ease;
  font-weight: bold;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(201, 169, 97, 0.6);
}

/* MOBILE MENU OVERLAY
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a472a 0%, #2d5f3f 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: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

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

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

.mobile-nav a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(201, 169, 97, 0.3);
  border-left-color: #c9a961;
  transform: translateX(10px);
}

/* CTA BUTTONS
   ========================================================================== */
.cta-button,
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button::before,
.cta-primary::before,
.cta-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.cta-button:hover::before,
.cta-primary:hover::before,
.cta-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button,
.cta-primary {
  background: linear-gradient(135deg, #c9a961 0%, #ffd700 100%);
  color: #1a472a;
}

.cta-button:hover,
.cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

.cta-secondary {
  background: transparent;
  border: 3px solid #c9a961;
  color: #1a472a;
}

.cta-secondary:hover {
  background: linear-gradient(135deg, #c9a961 0%, #ffd700 100%);
  border-color: #ffd700;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}

/* HERO SECTION
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 50%, #3d7f5f 100%);
  color: #fff;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite;
}

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

.hero h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subheadline {
  font-size: 22px;
  margin-bottom: 40px;
  color: #e6f0e6;
  animation: fadeInUp 1s ease 0.2s both;
}

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  margin-top: 24px;
  animation: fadeInUp 1.2s ease 0.4s both;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.guarantee {
  display: inline-block;
  background: rgba(201, 169, 97, 0.2);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  color: #1a472a;
  margin-top: 24px;
  border: 2px solid #c9a961;
}

/* PAGE HERO
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #2d5f3f 0%, #1a472a 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
  font-size: 20px;
  color: #e6f0e6;
  margin-bottom: 0;
}

/* SECTIONS
   ========================================================================== */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
  animation: fadeInUp 0.8s ease;
}

section:nth-child(even) {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
}

/* SERVICE CARDS
   ========================================================================== */
.service-cards,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 40px;
}

.service-card,
.card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(201, 169, 97, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.service-card:hover::before,
.card:hover::before {
  animation: shine 1.5s ease infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-card:hover,
.card:hover {
  transform: translateY(-12px) rotate(2deg);
  box-shadow: 0 15px 50px rgba(201, 169, 97, 0.3);
  border-color: #c9a961;
}

.service-card h3,
.card h3 {
  color: #1a472a;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p,
.card p {
  color: #666;
  margin-bottom: 12px;
}

.service-card .price {
  font-size: 26px;
  font-weight: 800;
  color: #c9a961;
  margin-top: 16px;
}

/* BENEFITS & FEATURES
   ========================================================================== */
.benefits,
.process {
  background: linear-gradient(135deg, #f0f8f0 0%, #e6f0ff 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

.benefit-grid,
.content-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.benefit,
.feature-item {
  flex: 1 1 45%;
  min-width: 280px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid #c9a961;
}

.benefit:hover,
.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 35px rgba(201, 169, 97, 0.2);
  border-left-width: 8px;
}

.benefit h3,
.feature-item h3 {
  color: #1a472a;
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit p,
.feature-item p {
  color: #555;
  line-height: 1.8;
}

/* PROCESS STEPS
   ========================================================================== */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.step {
  flex: 1 1 220px;
  max-width: 280px;
  background: #fff;
  padding: 36px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.step:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 45px rgba(201, 169, 97, 0.3);
}

.step .number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #c9a961, #ffd700);
  color: #1a472a;
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
  animation: pulse 2s ease infinite;
}

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

.step p {
  color: #666;
  font-size: 16px;
}

/* TESTIMONIALS
   ========================================================================== */
.testimonials {
  background: linear-gradient(135deg, #fff5e6 0%, #f0f8ff 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.testimonial-card {
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 550px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #c9a961;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #c9a961;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(201, 169, 97, 0.25);
}

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

.testimonial-card .author {
  display: block;
  font-weight: 700;
  color: #1a472a;
  font-size: 16px;
  font-style: normal;
  margin-top: 16px;
}

/* PRICING
   ========================================================================== */
.pricing-table {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  gap: 16px;
}

.price-row:hover {
  background: linear-gradient(90deg, rgba(201, 169, 97, 0.1) 0%, transparent 100%);
  transform: translateX(10px);
}

.price-row:last-child {
  border-bottom: none;
}

.service-name {
  font-weight: 600;
  color: #1a472a;
  font-size: 18px;
  flex: 1 1 60%;
}

.price {
  font-size: 24px;
  font-weight: 800;
  color: #c9a961;
  flex: 0 0 auto;
}

/* PACKAGES
   ========================================================================== */
.packages {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5e6 100%);
  border-radius: 30px;
  padding: 60px 20px;
}

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

.package-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.package-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px rgba(201, 169, 97, 0.3);
  border-color: #c9a961;
}

.package-card .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #c9a961, #ffd700);
  color: #1a472a;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
  animation: bounce 2s ease infinite;
}

.package-card h3 {
  font-size: 26px;
  color: #1a472a;
  margin: 20px 0 16px;
}

.package-card .price {
  font-size: 36px;
  font-weight: 800;
  color: #c9a961;
  margin: 16px 0;
}

.package-card p {
  color: #666;
  font-size: 16px;
}

/* SERVICE DETAIL
   ========================================================================== */
.services-detail {
  padding: 40px 20px;
}

.service-item {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #c9a961;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateX(12px);
  box-shadow: 0 10px 40px rgba(201, 169, 97, 0.2);
  border-left-width: 10px;
}

.service-item h2 {
  color: #1a472a;
  margin-bottom: 16px;
  font-size: 32px;
}

.service-item .price {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  color: #c9a961;
  background: rgba(201, 169, 97, 0.1);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.service-item p {
  color: #555;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-item ul {
  margin-left: 0;
  list-style: none;
}

.service-item li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #444;
  font-size: 16px;
}

.service-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c9a961;
  font-weight: 800;
  font-size: 20px;
}

/* STORY & MISSION
   ========================================================================== */
.story,
.mission {
  background: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.story h2,
.mission h2 {
  color: #1a472a;
  margin-bottom: 24px;
}

.story p,
.mission p {
  font-size: 18px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
}

.mission h3 {
  color: #2d5f3f;
  margin-top: 32px;
  margin-bottom: 20px;
}

.mission ul {
  margin-left: 0;
  list-style: none;
}

.mission li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 17px;
  color: #444;
}

.mission li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #c9a961;
  font-size: 22px;
}

/* GALLERY
   ========================================================================== */
.gallery-showcase {
  padding: 40px 20px;
}

.project {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #c9a961;
}

.project:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(201, 169, 97, 0.25);
}

.project h3 {
  color: #1a472a;
  font-size: 28px;
  margin-bottom: 16px;
}

.project p {
  color: #555;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* CONTACT
   ========================================================================== */
.contact-options,
.location-details,
.opening-hours {
  padding: 40px 20px;
}

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

.contact-option {
  flex: 1 1 30%;
  min-width: 280px;
  background: #fff;
  padding: 36px 28px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 4px solid #c9a961;
}

.contact-option:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.25);
  border-bottom-width: 6px;
}

.contact-option h3 {
  color: #1a472a;
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-option p {
  color: #555;
  font-size: 16px;
  margin-bottom: 8px;
}

.form-placeholder {
  background: linear-gradient(135deg, #f0f8f0 0%, #fff5e6 100%);
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
  border: 3px dashed #c9a961;
}

.form-placeholder p {
  color: #2d5f3f;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.location-info {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  margin-top: 32px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #c9a961;
}

.location-info p {
  font-size: 17px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 16px;
}

.opening-hours ul {
  background: #fff;
  padding: 32px 40px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
  list-style: none;
  margin-left: 0;
}

.opening-hours li {
  padding: 12px 0;
  border-bottom: 2px solid #f0f0f0;
  font-size: 17px;
  color: #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.opening-hours li:last-child {
  border-bottom: none;
}

/* THANK YOU PAGE
   ========================================================================== */
.thank-you-hero {
  background: linear-gradient(135deg, #c9a961 0%, #ffd700 100%);
  padding: 100px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 40px;
}

.thank-you-hero h1 {
  color: #1a472a;
  background: none;
  -webkit-text-fill-color: #1a472a;
  font-size: 64px;
  animation: bounce 1s ease;
}

.thank-you-hero p {
  font-size: 24px;
  color: #1a472a;
  margin-bottom: 0;
}

.thank-you-content {
  background: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.thank-you-content h2 {
  color: #1a472a;
  margin-top: 32px;
  margin-bottom: 24px;
}

.thank-you-content ul {
  margin-left: 0;
  list-style: none;
}

.thank-you-content li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 17px;
  color: #444;
}

.thank-you-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c9a961;
  font-weight: 800;
  font-size: 22px;
}

.next-steps {
  padding: 40px 20px;
}

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

.suggestion {
  flex: 1 1 30%;
  min-width: 280px;
  background: #fff;
  padding: 36px 28px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.25);
}

.suggestion h3 {
  color: #1a472a;
  margin-bottom: 16px;
  font-size: 22px;
}

.suggestion a {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #c9a961, #ffd700);
  color: #1a472a;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.suggestion a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

/* LEGAL CONTENT
   ========================================================================== */
.legal-content {
  background: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.legal-content h2 {
  color: #1a472a;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

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

.legal-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.legal-content li {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
}

/* CTA SECTION
   ========================================================================== */
.cta-section,
.cta-final {
  background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%) !important;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2,
.cta-final h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section h2::after,
.cta-final h2::after {
  background: linear-gradient(90deg, #c9a961, #ffd700);
  left: 50%;
  transform: translateX(-50%);
}

.cta-section p,
.cta-final p {
  font-size: 20px;
  color: #e6f0e6;
  margin-bottom: 32px;
}

.link {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.link:hover {
  background: #c9a961;
  border-color: #c9a961;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

/* FOOTER
   ========================================================================== */
footer {
  background: linear-gradient(135deg, #1a472a 0%, #0f2918 100%);
  color: #e6f0e6;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 280px;
}

.footer-column h4 {
  color: #c9a961;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-column p {
  color: #c8d8c8;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-column a {
  display: block;
  color: #c8d8c8;
  font-size: 15px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: #c9a961;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 2px solid rgba(201, 169, 97, 0.3);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #a8b8a8;
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

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

.footer-links a:hover {
  color: #c9a961;
}

/* COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%);
  color: #fff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  color: #e6f0e6;
  font-size: 15px;
  margin: 0;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #c9a961, #ffd700);
  color: #1a472a;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
}

.cookie-settings {
  background: transparent;
  color: #c9a961;
  border: 2px solid #c9a961;
}

.cookie-settings:hover {
  background: #c9a961;
  color: #1a472a;
}

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

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

.cookie-modal-content {
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeInUp 0.4s ease;
}

.cookie-modal h2 {
  color: #1a472a;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  background: #f8f9ff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #c9a961;
}

.cookie-category h3 {
  color: #2d5f3f;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-category p {
  color: #555;
  font-size: 15px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

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

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

.cookie-save,
.cookie-close {
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background: linear-gradient(135deg, #c9a961, #ffd700);
  color: #1a472a;
}

.cookie-save:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);
}

.cookie-close {
  background: #e0e0e0;
  color: #444;
}

.cookie-close:hover {
  background: #d0d0d0;
}

/* RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  /* MOBILE MENU */
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  header .cta-button {
    display: none;
  }

  /* TYPOGRAPHY */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  /* HERO */
  .hero {
    padding: 80px 20px;
  }

  .subheadline {
    font-size: 18px;
  }

  /* SECTIONS */
  section {
    padding: 40px 16px;
  }

  /* CARDS */
  .service-card,
  .card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .benefit,
  .feature-item {
    flex: 1 1 100%;
  }

  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .package-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .contact-option {
    flex: 1 1 100%;
  }

  .suggestion {
    flex: 1 1 100%;
  }

  /* FOOTER */
  .footer-column {
    flex: 1 1 100%;
  }

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

  /* CTA BUTTONS */
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button,
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }

  /* COOKIE BANNER */
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    flex: 1 1 auto;
  }

  /* PRICING TABLE */
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .service-name {
    flex: 1 1 100%;
  }

  /* MODAL */
  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal h2 {
    font-size: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    padding: 100px 20px;
  }

  .service-card,
  .card {
    flex: 1 1 45%;
  }

  .benefit,
  .feature-item {
    flex: 1 1 48%;
  }
}

/* ACCESSIBILITY
   ========================================================================== */
*:focus {
  outline: 3px solid #c9a961;
  outline-offset: 2px;
}

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

/* PRINT STYLES
   ========================================================================== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .cta-primary,
  .cta-secondary {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  section {
    page-break-inside: avoid;
  }
}
