/* ============================================
   ETHER GAINS HAUSTIERPFLEGE - MODERN BOLD STYLE
   Professional Pet Grooming in Bonn
   ============================================ */

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

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

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

/* ============================================
   TYPOGRAPHY - MODERN BOLD STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

p {
  margin-bottom: 16px;
  color: #2a2a2a;
}

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

a:hover {
  color: #F4A261;
}

strong {
  font-weight: 700;
  color: #0a0a0a;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

/* ============================================
   HEADER & NAVIGATION - MODERN BOLD
   ============================================ */

header {
  background: linear-gradient(135deg, #2E7D6F 0%, #1a5449 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

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

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

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

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

/* ============================================
   MOBILE MENU - BOLD MODERN STYLE
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #F4A261;
  color: #ffffff;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #e08847;
  transform: scale(1.1);
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F4A261;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F4A261;
  padding-left: 12px;
  background: rgba(244, 162, 97, 0.1);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
}

/* ============================================
   BUTTONS - BOLD GEOMETRIC STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #F4A261;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-primary:hover {
  background: #e08847;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244, 162, 97, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #2E7D6F;
  border: 3px solid #2E7D6F;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-secondary:hover {
  background: #2E7D6F;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ============================================
   HERO SECTION - BOLD IMPACT
   ============================================ */

.hero {
  background: linear-gradient(135deg, #2E7D6F 0%, #1a5449 50%, #0f3329 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: #F4A261;
  opacity: 0.15;
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: #E9F5F2;
  opacity: 0.1;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero .subheadline {
  color: #E9F5F2;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  color: #F4A261;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SECTIONS - MODERN BOLD LAYOUTS
   ============================================ */

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

.benefits {
  background: #E9F5F2;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.benefits h2 {
  text-align: center;
  color: #2E7D6F;
  margin-bottom: 60px;
}

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

.benefit-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-left: 6px solid #F4A261;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
  color: #2E7D6F;
  margin-bottom: 16px;
  font-size: 20px;
}

.benefit-card p {
  color: #4a4a4a;
  line-height: 1.7;
}

/* ============================================
   SERVICES SECTIONS
   ============================================ */

.services-preview {
  padding: 80px 20px;
  background: #ffffff;
  margin-bottom: 60px;
}

.services-preview h2 {
  text-align: center;
  color: #2E7D6F;
  margin-bottom: 16px;
}

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

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

.service-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: linear-gradient(135deg, #2E7D6F 0%, #1a5449 100%);
  padding: 40px 32px;
  color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F4A261 0%, #e08847 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3,
.service-card p,
.service-card .price {
  position: relative;
  z-index: 1;
}

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

.service-card p {
  color: #E9F5F2;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card .price {
  color: #F4A261;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
}

.service-card:hover .price {
  color: #ffffff;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
  background: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.process h2 {
  text-align: center;
  color: #2E7D6F;
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background: #E9F5F2;
  border-top: 6px solid #F4A261;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.step:hover {
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.step h3 {
  color: #2E7D6F;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 800;
}

.step p {
  color: #4a4a4a;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS - BOLD CARDS
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #E9F5F2 0%, #d4ece7 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  color: #2E7D6F;
  margin-bottom: 60px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  max-width: 550px;
  background: #ffffff;
  padding: 40px;
  border-left: 8px solid #F4A261;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 120px;
  font-family: Georgia, serif;
  color: #E9F5F2;
  line-height: 0.8;
}

.testimonial-card p {
  color: #2a2a2a;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: #2E7D6F;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* ============================================
   LOCATION & CTA SECTIONS
   ============================================ */

.location {
  background: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.location h2 {
  color: #2E7D6F;
  margin-bottom: 40px;
}

.location-info {
  max-width: 600px;
  margin: 0 auto;
}

.location-info p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.cta-final {
  background: linear-gradient(135deg, #2E7D6F 0%, #1a5449 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-final h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-final p {
  color: #E9F5F2;
  font-size: 20px;
  margin-bottom: 40px;
}

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #2E7D6F 0%, #1a5449 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.breadcrumb {
  color: #E9F5F2;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #E9F5F2;
  font-weight: 600;
}

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

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

.page-hero p {
  color: #E9F5F2;
  font-size: 18px;
  max-width: 800px;
}

/* ============================================
   SERVICES LIST PAGE
   ============================================ */

.services {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  background: #ffffff;
  padding: 40px;
  border-left: 8px solid #2E7D6F;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.service-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-left-color: #F4A261;
}

.service-item h3 {
  color: #2E7D6F;
  margin-bottom: 16px;
  font-size: 26px;
}

.service-item p {
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-item p strong {
  color: #2E7D6F;
  font-weight: 700;
}

/* ============================================
   ADD-ONS SECTION
   ============================================ */

.add-ons {
  background: #E9F5F2;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.add-ons h2 {
  color: #2E7D6F;
  margin-bottom: 32px;
  text-align: center;
}

.add-ons ul {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.add-ons li {
  background: #ffffff;
  padding: 20px 32px;
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
  border-left: 4px solid #F4A261;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.add-ons li:hover {
  background: #2E7D6F;
  color: #ffffff;
  border-left-color: #F4A261;
  padding-left: 40px;
}

/* ============================================
   PRICING PAGE
   ============================================ */

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

.pricing-table {
  margin: 60px 0;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

thead {
  background: linear-gradient(135deg, #2E7D6F 0%, #1a5449 100%);
}

thead th {
  color: #ffffff;
  padding: 24px 20px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: left;
}

tbody tr {
  border-bottom: 2px solid #E9F5F2;
  transition: all 0.3s ease;
}

tbody tr:hover {
  background: #E9F5F2;
}

tbody td {
  padding: 24px 20px;
  color: #2a2a2a;
  font-size: 16px;
}

tbody td:last-child {
  color: #2E7D6F;
  font-weight: 700;
  font-size: 20px;
}

.special-offer {
  background: linear-gradient(135deg, #F4A261 0%, #e08847 100%);
  padding: 48px;
  text-align: center;
  margin: 60px 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  color: #ffffff;
}

.special-offer h2 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 32px;
}

.special-offer p {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 12px;
}

.special-offer p strong {
  color: #ffffff;
  font-weight: 800;
  font-size: 24px;
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

.about-story,
.mission {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.about-story h2,
.mission h2 {
  color: #2E7D6F;
  margin-bottom: 32px;
  text-align: center;
}

.about-story p,
.mission p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
}

.team {
  background: #E9F5F2;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.team h2 {
  color: #2E7D6F;
  text-align: center;
  margin-bottom: 60px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.team-member {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  max-width: 500px;
  background: #ffffff;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.team-member h3 {
  color: #2E7D6F;
  margin-bottom: 12px;
  font-size: 26px;
}

.team-member p strong {
  color: #F4A261;
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
}

.team-member p {
  color: #4a4a4a;
  line-height: 1.7;
}

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

.values h2 {
  color: #2E7D6F;
  text-align: center;
  margin-bottom: 40px;
}

.values ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.values li {
  background: #E9F5F2;
  padding: 24px 32px;
  font-size: 18px;
  color: #2a2a2a;
  border-left: 6px solid #2E7D6F;
  transition: all 0.3s ease;
  font-weight: 600;
}

.values li:hover {
  background: #2E7D6F;
  color: #ffffff;
  padding-left: 40px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-intro {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.gallery-intro h2 {
  color: #2E7D6F;
  margin-bottom: 24px;
}

.gallery-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 800px;
  margin: 0 auto 16px;
}

.privacy-note {
  font-size: 14px;
  color: #7a7a7a;
  font-style: italic;
}

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

.transformations h2 {
  color: #2E7D6F;
  text-align: center;
  margin-bottom: 60px;
}

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

.gallery-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: linear-gradient(135deg, #E9F5F2 0%, #d4ece7 100%);
  padding: 40px 32px;
  border-top: 6px solid #F4A261;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.gallery-item h3 {
  color: #2E7D6F;
  margin-bottom: 12px;
  font-size: 22px;
}

.gallery-item p {
  color: #4a4a4a;
  line-height: 1.6;
}

.client-stories {
  background: #E9F5F2;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.client-stories h2 {
  color: #2E7D6F;
  text-align: center;
  margin-bottom: 60px;
}

.story {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 8px solid #F4A261;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.story h3 {
  color: #2E7D6F;
  margin-bottom: 16px;
  font-size: 24px;
}

.story p {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-info {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.contact-info h2 {
  color: #2E7D6F;
  text-align: center;
  margin-bottom: 60px;
}

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

.contact-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background: linear-gradient(135deg, #2E7D6F 0%, #1a5449 100%);
  padding: 40px 32px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
  color: #F4A261;
  margin-bottom: 20px;
  font-size: 22px;
}

.contact-card p {
  color: #E9F5F2;
  font-size: 16px;
  line-height: 1.7;
}

.contact-card .note {
  color: #ffffff;
  font-size: 14px;
  font-style: italic;
  margin-top: 12px;
}

.contact-form-section {
  background: #E9F5F2;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.contact-form-section h2 {
  color: #2E7D6F;
  text-align: center;
  margin-bottom: 24px;
}

.contact-form-section > .container > p {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 60px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: #2E7D6F;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  padding: 16px;
  border: 3px solid #E9F5F2;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2E7D6F;
  box-shadow: 0 0 0 3px rgba(46, 125, 111, 0.1);
}

.form-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.form-field label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  text-transform: none;
  font-weight: 400;
  color: #4a4a4a;
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: #7a7a7a;
  font-style: italic;
  margin-top: 16px;
}

.location-map {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.location-map h2 {
  color: #2E7D6F;
  margin-bottom: 32px;
}

.location-map p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

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

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

.legal-page .subtitle {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 12px;
}

.last-updated {
  font-size: 14px;
  color: #7a7a7a;
  font-style: italic;
  margin-bottom: 40px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  color: #2E7D6F;
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 28px;
}

.legal-content h3 {
  color: #2E7D6F;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 22px;
}

.legal-content p {
  color: #4a4a4a;
  margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
  margin: 24px 0 24px 32px;
  color: #4a4a4a;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-nav {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 3px solid #E9F5F2;
  text-align: center;
}

.legal-nav a {
  color: #2E7D6F;
  font-weight: 700;
  font-size: 16px;
}

.legal-nav p {
  margin-top: 20px;
  color: #7a7a7a;
  font-size: 14px;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #2E7D6F 0%, #1a5449 100%);
  padding: 100px 20px 80px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #F4A261;
  color: #ffffff;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(244, 162, 97, 0.4);
}

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

.thank-you-hero .subheadline {
  color: #E9F5F2;
  font-size: 20px;
  margin-bottom: 20px;
}

.thank-you-hero .confirmation {
  color: #F4A261;
  font-weight: 600;
  font-size: 16px;
}

.next-steps {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.next-steps h2 {
  color: #2E7D6F;
  text-align: center;
  margin-bottom: 60px;
}

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

.steps-grid .step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #E9F5F2;
  padding: 32px 24px;
  text-align: center;
  border-top: 6px solid #F4A261;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.steps-grid .step:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.steps-grid .step h3 {
  color: #2E7D6F;
  font-size: 22px;
  margin-bottom: 16px;
}

.steps-grid .step p {
  color: #4a4a4a;
  line-height: 1.6;
}

.preparation-tips {
  background: #E9F5F2;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.preparation-tips h2 {
  color: #2E7D6F;
  text-align: center;
  margin-bottom: 40px;
}

.preparation-tips ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.preparation-tips li {
  background: #ffffff;
  padding: 24px 32px;
  font-size: 16px;
  color: #4a4a4a;
  border-left: 6px solid #2E7D6F;
  line-height: 1.7;
}

.preparation-tips li strong {
  color: #2E7D6F;
}

.while-waiting {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.while-waiting h2 {
  color: #2E7D6F;
  text-align: center;
  margin-bottom: 60px;
}

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

.link-card {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  max-width: 500px;
  background: #ffffff;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top: 6px solid #F4A261;
  margin-bottom: 20px;
}

.link-card h3 {
  color: #2E7D6F;
  margin-bottom: 16px;
  font-size: 24px;
}

.link-card p {
  color: #4a4a4a;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-backup {
  background: #E9F5F2;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.contact-backup h2 {
  color: #2E7D6F;
  margin-bottom: 24px;
}

.contact-backup p {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.contact-backup p strong {
  color: #2E7D6F;
}

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

.thank-you h1 {
  color: #2E7D6F;
  margin-bottom: 24px;
}

.thank-you p {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 40px;
}

/* ============================================
   FOOTER - BOLD MODERN STYLE
   ============================================ */

footer {
  background: linear-gradient(135deg, #1a5449 0%, #0f3329 100%);
  padding: 60px 20px 24px;
  color: #E9F5F2;
}

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

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

.footer-section h3 {
  color: #F4A261;
  font-size: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-section p {
  color: #E9F5F2;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #E9F5F2;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(233, 245, 242, 0.2);
  color: #E9F5F2;
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER - BOLD STYLE
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2E7D6F 0%, #1a5449 100%);
  padding: 24px 20px;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #E9F5F2;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-accept {
  background: #F4A261;
  color: #ffffff;
  border: none;
}

.btn-accept:hover {
  background: #e08847;
}

.btn-reject {
  background: transparent;
  color: #E9F5F2;
  border: 2px solid #E9F5F2;
}

.btn-reject:hover {
  background: rgba(233, 245, 242, 0.1);
}

.btn-settings {
  background: transparent;
  color: #F4A261;
  border: 2px solid #F4A261;
}

.btn-settings:hover {
  background: rgba(244, 162, 97, 0.1);
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 48px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F4A261;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.cookie-category {
  padding: 20px;
  background: #E9F5F2;
  margin-bottom: 16px;
  border-left: 4px solid #2E7D6F;
}

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

.cookie-category p {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-toggle.active {
  background: #2E7D6F;
}

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

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

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

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

.cookie-modal-buttons .btn {
  flex: 1 1 200px;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero .subheadline {
    font-size: 18px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .benefits-grid,
  .services-grid,
  .process-steps,
  .team-grid,
  .contact-grid,
  .gallery-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .team-member,
  .contact-card,
  .gallery-item {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1 1 100%;
  }
  
  .form-container {
    padding: 32px 24px;
  }
  
  table {
    font-size: 14px;
  }
  
  thead th,
  tbody td {
    padding: 16px 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .mobile-menu {
    width: 90%;
  }
  
  .special-offer {
    padding: 32px 24px;
  }
}

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

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

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

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

.text-bold {
  font-weight: 700;
}

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

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

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 3px solid #F4A261;
  outline-offset: 2px;
}

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