/* ========================================
   HARMONIE RAUM - VIBRANT ENERGETIC DESIGN
   CSS Reset & Base Styles
   ======================================== */

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

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

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

/* ========================================
   VIBRANT ENERGETIC COLOR PALETTE
   ======================================== */

:root {
  --primary-color: #FF6B35;
  --secondary-color: #F7931E;
  --accent-color: #FDB833;
  --dark-bg: #2C1810;
  --light-bg: #FFF8F0;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --border-color: #FFD700;
  --shadow-color: rgba(255, 107, 53, 0.2);
}

/* ========================================
   TYPOGRAPHY - VIBRANT & BOLD
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
  text-shadow: 3px 3px 0px var(--accent-color);
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  border-bottom: 4px solid var(--secondary-color);
  padding-bottom: 16px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  color: var(--secondary-color);
}

h4 {
  font-size: 18px;
  color: var(--accent-color);
  font-weight: 700;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* ========================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========================================
   HEADER - ENERGETIC & BOLD
   ======================================== */

header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 20px var(--shadow-color);
  border-bottom: 5px solid var(--accent-color);
}

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

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

.logo img:hover {
  transform: scale(1.1) rotate(-5deg);
}

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

.main-nav a {
  color: var(--text-light);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

.cta-button {
  background: var(--accent-color);
  color: var(--dark-bg);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 6px 20px rgba(253, 184, 51, 0.4);
  transition: all 0.3s ease;
  border: 3px solid var(--accent-color);
}

.cta-button:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(253, 184, 51, 0.6);
}

/* ========================================
   MOBILE MENU - SLIDE ANIMATION
   ======================================== */

.mobile-menu-toggle {
  display: none;
  background: var(--accent-color);
  color: var(--dark-bg);
  border: none;
  font-size: 32px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 900;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.mobile-menu-toggle:hover {
  background: var(--text-light);
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  padding: 30px;
}

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

.mobile-menu-close {
  background: var(--accent-color);
  color: var(--dark-bg);
  border: none;
  font-size: 36px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  align-self: flex-end;
  margin-bottom: 30px;
  font-weight: 900;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.mobile-menu-close:hover {
  background: var(--text-light);
  transform: rotate(90deg) scale(1.1);
}

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

.mobile-nav a {
  color: var(--text-light);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--accent-color);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(10px);
  border-left-width: 10px;
}

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

/* ========================================
   HERO SECTION - HIGH ENERGY
   ======================================== */

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid var(--dark-bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: stripeMove 20s linear infinite;
}

@keyframes stripeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(40px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--text-light);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0px var(--dark-bg), 8px 8px 0px var(--accent-color);
  animation: titlePulse 2s ease-in-out infinite;
}

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

.hero-subtitle {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ========================================
   BUTTONS - BOLD & ENERGETIC
   ======================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--dark-bg);
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(253, 184, 51, 0.4);
}

.btn-primary:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(253, 184, 51, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
  border-width: 3px;
}

.btn-secondary:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-link {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 12px 32px;
  font-size: 14px;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-link:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

/* ========================================
   SECTIONS - DYNAMIC LAYOUTS
   ======================================== */

section {
  padding: 80px 20px;
  position: relative;
}

section:nth-child(even) {
  background: #9f5757;
}

section:nth-child(odd) {
  background: #9f5757;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--dark-bg);
  margin-bottom: 48px;
  font-weight: 600;
  letter-spacing: 1px;
}

.text-section {
  margin-bottom: 40px;
  padding: 24px;
  background: var(--text-light);
  border-radius: 16px;
  border-left: 6px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ========================================
   INTRODUCTION SECTION
   ======================================== */

.introduction {
  background: var(--light-bg);
  border-top: 5px solid var(--accent-color);
  border-bottom: 5px solid var(--secondary-color);
}

.introduction h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 32px;
}

.introduction p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: var(--dark-bg);
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  justify-content: center;
  margin-top: 32px;
}

.benefits-list li {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: all 0.3s ease;
  border: 3px solid var(--accent-color);
}

.benefits-list li:hover {
  background: var(--accent-color);
  color: var(--dark-bg);
  transform: translateY(-5px) rotate(-2deg);
  box-shadow: 0 8px 25px rgba(253, 184, 51, 0.6);
}

/* ========================================
   SERVICES - FLEXBOX GRID
   ======================================== */

.services-overview,
.services-detailed {
  background: var(--text-light);
}

.services-overview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid,
.features-grid,
.testimonials-grid,
.articles-list,
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.service-card,
.service-detailed {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 550px;
  background: var(--light-bg);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
  transition: all 0.4s ease;
  border: 4px solid var(--accent-color);
  position: relative;
  margin-bottom: 24px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.service-card:hover,
.service-detailed:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.service-card h3,
.service-detailed h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 24px;
}

.service-card p,
.service-detailed p {
  color: var(--dark-bg);
  margin-bottom: 16px;
  line-height: 1.7;
}

.price {
  font-size: 32px;
  font-weight: 900;
  color: var(--secondary-color);
  margin: 24px 0;
  display: block;
  text-shadow: 2px 2px 0px var(--accent-color);
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
  background: var(--light-bg);
  border-top: 5px solid var(--primary-color);
  border-bottom: 5px solid var(--secondary-color);
}

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

.feature {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  max-width: 500px;
  background: var(--text-light);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 6px solid var(--accent-color);
  margin-bottom: 24px;
}

.feature:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 10px 35px rgba(255, 107, 53, 0.2);
  border-left-width: 12px;
}

.feature h3 {
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.feature p {
  color: var(--dark-bg);
}

/* ========================================
   TESTIMONIALS - HIGH CONTRAST
   ======================================== */

.testimonials {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
  border-bottom-color: var(--accent-color);
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 550px;
  background: var(--text-light);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  border: 4px solid var(--accent-color);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 15px 45px rgba(0,0,0,0.3);
}

.testimonial-card p {
  color: var(--dark-bg);
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  color: var(--primary-color);
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* ========================================
   LOCATION SECTION
   ======================================== */

.location {
  background: var(--light-bg);
  text-align: center;
}

.location h2 {
  margin-bottom: 32px;
}

.location-info {
  max-width: 600px;
  margin: 0 auto;
  background: var(--text-light);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
  border: 4px solid var(--secondary-color);
}

.location-info p {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--dark-bg);
}

.location-info a {
  color: var(--primary-color);
  font-weight: 700;
}

/* ========================================
   CTA BANNER - HIGH ENERGY
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
  text-align: center;
  padding: 80px 20px;
  border-top: 8px solid var(--dark-bg);
  border-bottom: 8px solid var(--dark-bg);
}

.cta-banner h2 {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 40px;
  text-shadow: 3px 3px 0px var(--dark-bg);
  border-bottom: none;
}

.cta-banner p {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px solid var(--accent-color);
}

.page-hero h1 {
  color: var(--text-light);
  margin-bottom: 16px;
  text-shadow: 4px 4px 0px var(--dark-bg);
}

.page-hero p {
  color: var(--text-light);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

/* ========================================
   MISSION, STORY, PHILOSOPHY
   ======================================== */

.mission,
.story,
.philosophy,
.approach {
  padding: 60px 20px;
}

.mission h2,
.story h2,
.philosophy h2,
.approach h2 {
  text-align: center;
  margin-bottom: 32px;
}

.mission p,
.story p,
.approach p {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 18px;
  color: var(--dark-bg);
}

.principles-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.principle-card,
.category-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  max-width: 500px;
  background: var(--light-bg);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-top: 6px solid var(--primary-color);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.principle-card:hover,
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.principle-card h3,
.category-card h3 {
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.principle-card p,
.category-card p {
  color: var(--dark-bg);
}

.post-count {
  display: block;
  margin-top: 16px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   TEAM SECTION
   ======================================== */

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

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--dark-bg);
}

/* ========================================
   PROCESS STEPS
   ======================================== */

.process {
  background: var(--text-light);
}

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

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

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 250px;
  background: var(--light-bg);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border: 4px solid var(--accent-color);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.step:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 10px 35px rgba(255, 107, 53, 0.2);
}

.step h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 20px;
}

.step p {
  color: var(--dark-bg);
  font-size: 14px;
}

/* ========================================
   ARTICLES & BLOG
   ======================================== */

.article-categories,
.blog-filters {
  background: var(--light-bg);
  padding: 40px 20px;
}

.category-filters,
.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.category-btn {
  background: var(--text-light);
  color: var(--primary-color);
  padding: 12px 28px;
  border: 3px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.filter-controls input,
.filter-controls select {
  padding: 12px 20px;
  border: 3px solid var(--secondary-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  background: var(--text-light);
  color: var(--dark-bg);
  min-width: 200px;
}

.filter-controls input:focus,
.filter-controls select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.featured-article,
.latest-post {
  background: var(--text-light);
  padding: 60px 20px;
}

.article-featured,
.post-featured {
  max-width: 800px;
  margin: 0 auto;
  background: var(--light-bg);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 5px solid var(--accent-color);
  position: relative;
}

.badge {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px var(--shadow-color);
}

.category {
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
  margin-left: 8px;
}

.article-featured h2,
.post-featured h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
  border-bottom: none;
}

.meta {
  color: var(--dark-bg);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.8;
}

.article-card,
.post-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  background: var(--light-bg);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 6px solid var(--secondary-color);
  margin-bottom: 24px;
}

.article-card:hover,
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.15);
  border-left-width: 12px;
}

.article-card h3,
.post-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 20px;
}

.article-card p,
.post-card p {
  color: var(--dark-bg);
  margin-bottom: 12px;
}

.article-card a,
.post-card a {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ========================================
   NEWSLETTER
   ======================================== */

.newsletter {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 60px 20px;
  text-align: center;
}

.newsletter h2 {
  color: var(--text-light);
  margin-bottom: 16px;
  border-bottom: none;
}

.newsletter p {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  border: 3px solid var(--text-light);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  background: var(--text-light);
  color: var(--dark-bg);
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
  padding: 16px 40px;
  background: var(--accent-color);
  color: var(--dark-bg);
  border: 3px solid var(--accent-color);
  border-radius: 50px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--text-light);
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

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

.contact-options {
  background: var(--light-bg);
}

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

.contact-methods {
  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: var(--text-light);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-top: 6px solid var(--primary-color);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.method-card h3 {
  color: var(--secondary-color);
  margin-bottom: 16px;
}

.method-card p {
  color: var(--dark-bg);
  margin-bottom: 24px;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-form-section {
  background: var(--text-light);
}

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

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--light-bg);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 4px solid var(--secondary-color);
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 20px;
  border: 3px solid var(--secondary-color);
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  background: var(--text-light);
  color: var(--dark-bg);
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

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

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

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

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

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.detail-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 220px;
  background: var(--text-light);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-left: 6px solid var(--accent-color);
  margin-bottom: 24px;
}

.detail-block h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 18px;
}

.detail-block p {
  color: var(--dark-bg);
  margin-bottom: 8px;
}

/* ========================================
   ACCESSIBILITY & DIRECTIONS
   ======================================== */

.accessibility {
  background: var(--text-light);
}

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

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

.direction-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background: var(--light-bg);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-top: 6px solid var(--secondary-color);
  margin-bottom: 24px;
}

.direction-item h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.direction-item p {
  color: var(--dark-bg);
}

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

.faq-contact {
  background: var(--light-bg);
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--text-light);
  padding: 28px;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 6px solid var(--primary-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.faq-item h3 {
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--dark-bg);
  margin-bottom: 0;
}

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

.legal-content {
  background: var(--text-light);
  padding: 60px 20px;
}

.legal-content .container {
  max-width: 900px;
}

.legal-date {
  font-size: 14px;
  color: var(--dark-bg);
  opacity: 0.7;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 8px solid var(--dark-bg);
}

.success-message {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--text-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border: 6px solid var(--accent-color);
  animation: successPulse 2s ease-in-out infinite;
}

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

.success-message h1 {
  color: var(--text-light);
  margin-bottom: 16px;
  text-shadow: 4px 4px 0px var(--dark-bg);
}

.success-message .subtitle {
  color: var(--text-light);
  font-size: 20px;
  font-weight: 600;
}

.confirmation {
  background: var(--light-bg);
  padding: 60px 20px;
}

.confirmation .text-section {
  max-width: 800px;
  margin: 0 auto;
}

.confirmation ul {
  list-style: none;
  margin-top: 24px;
}

.confirmation ul li {
  padding-left: 32px;
  margin-bottom: 16px;
  position: relative;
  color: var(--dark-bg);
  font-size: 16px;
}

.confirmation ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 900;
  font-size: 20px;
}

.next-steps {
  background: var(--text-light);
  padding: 60px 20px;
}

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

.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.action-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background: var(--light-bg);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.action-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.action-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.action-card p {
  color: var(--dark-bg);
  margin-bottom: 24px;
}

.contact-info {
  background: var(--light-bg);
  padding: 60px 20px;
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--dark-bg);
  font-size: 16px;
  margin-bottom: 16px;
}

/* ========================================
   FOOTER - BOLD & ENERGETIC
   ======================================== */

footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
  color: var(--text-light);
  padding: 60px 20px 30px;
  border-top: 8px solid var(--accent-color);
}

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

.footer-brand,
.footer-links,
.footer-contact,
.footer-legal {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: var(--text-light);
  font-size: 14px;
  opacity: 0.9;
}

.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
  color: var(--accent-color);
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-links a,
.footer-legal a {
  display: block;
  color: var(--text-light);
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 16px;
  position: relative;
}

.footer-links a::before,
.footer-legal a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--accent-color);
  padding-left: 24px;
}

.footer-contact p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  padding: 24px;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 5px solid var(--accent-color);
}

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

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

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

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.cookie-accept {
  background: var(--accent-color);
  color: var(--dark-bg);
  border-color: var(--accent-color);
}

.cookie-accept:hover {
  background: var(--text-light);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(253, 184, 51, 0.4);
}

.cookie-reject {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.cookie-reject:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: scale(1.05);
}

.cookie-settings {
  background: transparent;
  color: var(--text-light);
  border-color: var(--accent-color);
}

.cookie-settings:hover {
  background: var(--accent-color);
  color: var(--dark-bg);
  transform: scale(1.05);
}

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

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

.cookie-modal-content {
  background: var(--text-light);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  border: 5px solid var(--accent-color);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  font-weight: 900;
  transition: all 0.3s ease;
}

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

.cookie-modal h3 {
  color: var(--primary-color);
  margin-bottom: 24px;
  font-size: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 12px;
  border-left: 5px solid var(--secondary-color);
}

.cookie-category h4 {
  color: var(--secondary-color);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: var(--dark-bg);
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background: var(--primary-color);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-card,
  .service-detailed,
  .feature,
  .testimonial-card,
  .principle-card,
  .category-card,
  .article-card,
  .post-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-legal {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
  
  .contact-methods,
  .action-cards,
  .location-details,
  .directions {
    flex-direction: column;
  }
  
  .method-card,
  .action-card,
  .detail-block,
  .direction-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 40px 16px; }
  
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .btn-primary,
  .btn-secondary,
  .btn-link {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .mobile-menu { width: 100%; }
  
  .form-wrapper { padding: 24px; }
}

/* ========================================
   ANIMATIONS & INTERACTIONS
   ======================================== */

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

.service-card,
.feature,
.testimonial-card,
.article-card {
  animation: fadeInUp 0.6s ease-out;
}

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

.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

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

@media print {
  header,
  footer,
  .mobile-menu,
  .cookie-banner,
  .cta-banner,
  .newsletter {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}