/* =================================================================
   SHINY STRUT - NATURE ORGANIC DESIGN SYSTEM
   Wo barocke Pracht auf moderne Architektur trifft
   ================================================================= */

/* 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: #3a3a3a;
  background-color: #faf8f3;
  overflow-x: hidden;
}

/* NATURE ORGANIC COLOR PALETTE */
:root {
  /* Earth Tones */
  --primary-dark: #5C2D0C;
  --primary: #8B4513;
  --primary-light: #a0673f;
  --secondary: #2F4F4F;
  --secondary-light: #4a6a6a;
  --accent: #DAA520;
  --accent-light: #f4d03f;
  
  /* Natural Greens */
  --sage: #87a878;
  --forest: #3d5a3d;
  --moss: #6b7f5a;
  
  /* Organic Neutrals */
  --cream: #faf8f3;
  --sand: #e8e0d5;
  --stone: #c4b5a0;
  --bark: #5a4a3a;
  --earth: #4a3728;
  
  /* Functional Colors */
  --text-dark: #3a3a3a;
  --text-light: #6a6a6a;
  --white: #ffffff;
  --error: #c65d4f;
  --success: #6b9f7f;
  
  /* Spacing System */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  
  /* Typography Scale */
  --font-xs: 14px;
  --font-sm: 16px;
  --font-md: 18px;
  --font-lg: 24px;
  --font-xl: 32px;
  --font-xxl: 48px;
  
  /* Border Radius - Organic Shapes */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-organic: 30% 70% 70% 30% / 30% 30% 70% 70%;
  
  /* Shadows - Soft & Natural */
  --shadow-sm: 0 2px 8px rgba(90, 74, 58, 0.08);
  --shadow-md: 0 4px 16px rgba(90, 74, 58, 0.12);
  --shadow-lg: 0 8px 32px rgba(90, 74, 58, 0.16);
  
  /* Transitions */
  --transition: all 0.3s ease;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-xxl);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--font-xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--font-lg);
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: var(--font-md);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

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

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

ul, ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-xs);
}

strong {
  font-weight: 600;
  color: var(--primary-dark);
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl) var(--space-md);
}

/* HEADER & NAVIGATION */
header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid var(--sand);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  margin: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  font-weight: 500;
  color: var(--primary-dark);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-menu a:hover {
  color: var(--accent);
  background-color: var(--cream);
}

.nav-menu a:hover::after {
  width: 80%;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  font-size: var(--font-lg);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: fixed;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 1100;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background-color: var(--accent);
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  border-left: 5px solid var(--primary);
}

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

.mobile-menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background-color: var(--primary);
  color: var(--white);
  border: none;
  font-size: var(--font-lg);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.mobile-menu-close:hover {
  background-color: var(--accent);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: var(--space-xxl) var(--space-lg);
  gap: var(--space-sm);
}

.mobile-nav a {
  font-size: var(--font-md);
  font-weight: 500;
  color: var(--primary-dark);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

.mobile-nav a:hover {
  background-color: var(--accent-light);
  transform: translateX(8px);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-md);
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, var(--sage) 0%, var(--moss) 100%);
  color: var(--white);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-organic);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-organic);
}

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

.hero h1 {
  color: var(--white);
  font-size: var(--font-xxl);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: var(--font-lg);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: var(--space-md);
  opacity: 0.95;
}

.hero p {
  color: var(--white);
  font-size: var(--font-md);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* BUTTONS */
.btn, .btn-primary, .btn-secondary {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: var(--font-sm);
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

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

.btn {
  background-color: var(--sage);
  color: var(--white);
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background-color: var(--forest);
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

/* STATS SECTION */
.stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin: var(--space-lg) 0;
}

.stats span {
  font-size: var(--font-lg);
  font-weight: 600;
  color: var(--primary-dark);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.stats span:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary);
}

/* CARD LAYOUTS - FLEXBOX ONLY */
.service-grid, .highlights-grid, .team-grid, .reasons-grid,
.category-grid, .links-grid, .methods-grid, .content-grid,
.tips-grid, .articles-grid, .pricing-grid, .discount-grid,
.terms-grid, .trust-grid, .steps-grid, .contrast-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* CARD STYLES */
.service-card, .highlight-card, .team-member, .reason,
.category-card, .link-card, .method, .content-card,
.tip-card, .article-card, .pricing-card, .discount-card,
.term, .indicator, .step, .contrast-card, .building-card,
.testimonial-card, .faq-item, .inquiry, .step-card, .contact-person {
  flex: 1 1 calc(33.333% - var(--space-md));
  min-width: 280px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--sage);
  position: relative;
  margin-bottom: var(--space-md);
}

.service-card:hover, .highlight-card:hover, .category-card:hover,
.link-card:hover, .tip-card:hover, .article-card:hover,
.pricing-card:hover, .step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent);
}

/* CARD HEADINGS */
.service-card h3, .highlight-card h3, .category-card h3,
.link-card h3, .tip-card h3, .article-card h3,
.pricing-card h3, .building-card h3, .step-card h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
  font-size: var(--font-lg);
}

/* PRICE DISPLAY */
.price {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--accent);
  margin: var(--space-md) 0;
  font-family: 'Playfair Display', serif;
}

.pricing-card .price {
  font-size: var(--font-xxl);
  text-align: center;
}

.duration {
  color: var(--text-light);
  font-size: var(--font-xs);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.best-for {
  background-color: var(--cream);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-xs);
  color: var(--primary-dark);
  font-weight: 600;
  display: inline-block;
  margin-top: var(--space-sm);
}

/* POPULAR BADGE */
.pricing-card.popular {
  border: 3px solid var(--accent);
  transform: scale(1.05);
  border-left-width: 3px;
}

.badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background-color: var(--accent);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-xs);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* TESTIMONIALS */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial-card {
  flex: 1 1 calc(50% - var(--space-md));
  min-width: 300px;
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--accent);
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  font-size: 80px;
  color: var(--sand);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-md);
}

.author {
  font-weight: 600;
  color: var(--primary);
  font-size: var(--font-sm);
  text-align: right;
  font-style: normal !important;
}

/* SECTIONS WITH BACKGROUND */
.intro-section, .services-overview, .highlights, .why-us,
.gallery-categories, .featured-buildings, .mission,
.story, .pricing-overview {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonials, .cta-section, .newsletter, .partnerships,
.group-bookings, .booking-support {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  border-radius: var(--radius-lg);
}

/* CTA SECTIONS */
.cta-section {
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
}

.cta-section h2 {
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.trust-badge {
  display: inline-block;
  background-color: var(--success);
  color: var(--white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  position: relative;
  padding-left: var(--space-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-sm);
}

.timeline-item {
  position: relative;
  padding-left: var(--space-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 8px;
  width: 16px;
  height: 16px;
  background-color: var(--accent);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.year {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-size: var(--font-sm);
}

/* LISTS */
.values-list, .partner-list, .credentials-list, .tips-list,
.security-list {
  list-style: none;
  margin-left: 0;
}

.values-list li, .partner-list li, .credentials-list li,
.tips-list li, .security-list li {
  padding: var(--space-sm) var(--space-sm) var(--space-sm) var(--space-xl);
  margin-bottom: var(--space-sm);
  background-color: var(--cream);
  border-radius: var(--radius-sm);
  position: relative;
  border-left: 3px solid var(--sage);
}

.values-list li::before, .partner-list li::before,
.credentials-list li::before, .tips-list li::before,
.security-list li::before {
  content: '🌿';
  position: absolute;
  left: var(--space-sm);
  font-size: var(--font-md);
}

/* FAQ */
.faq-item {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--sage);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.faq-item:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.faq-item p {
  color: var(--text-dark);
  line-height: 1.7;
}

/* BLOG CATEGORIES */
.categories {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
  justify-content: center;
}

.category {
  padding: var(--space-sm) var(--space-md);
  background-color: var(--cream);
  border-radius: var(--radius-sm);
  color: var(--primary-dark);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.category:hover, .category.active {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* NEWSLETTER */
.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-benefits p {
  padding: var(--space-sm) var(--space-md);
  background-color: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--success);
  box-shadow: var(--shadow-sm);
}

.privacy-note {
  font-size: var(--font-xs);
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: var(--space-md);
}

/* ERROR PAGE */
.error-hero {
  background: linear-gradient(135deg, var(--sage) 0%, var(--moss) 100%);
  color: var(--white);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  line-height: 1;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.error-hero h1 {
  color: var(--white);
}

.subheadline {
  font-size: var(--font-md);
  color: var(--white);
  opacity: 0.9;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, var(--success) 0%, var(--sage) 100%);
  color: var(--white);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--white);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-lg);
  font-weight: 700;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.legal-hero h1 {
  color: var(--white);
}

.legal-hero p {
  color: var(--white);
  opacity: 0.9;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.legal-content h2 {
  color: var(--primary-dark);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 2px solid var(--sand);
}

.legal-content h3 {
  color: var(--primary);
  margin-top: var(--space-lg);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: var(--space-xxl) var(--space-md) var(--space-lg);
  margin-top: var(--space-xxl);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: var(--accent-light);
  margin-bottom: var(--space-md);
  font-size: var(--font-md);
}

.footer-col p, .footer-col a {
  color: var(--white);
  opacity: 0.9;
  line-height: 1.8;
}

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

.footer-col li {
  margin-bottom: var(--space-xs);
}

.footer-col a:hover {
  color: var(--accent-light);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: var(--white);
  opacity: 0.8;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: var(--space-lg) var(--space-md);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid var(--accent);
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: var(--font-sm);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--white);
  background-color: transparent;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--font-sm);
}

.cookie-buttons button:hover {
  background-color: var(--white);
  color: var(--primary);
}

.cookie-buttons button.accept {
  background-color: var(--accent);
  border-color: var(--accent);
}

.cookie-buttons button.accept:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--white);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: var(--space-md);
}

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

.cookie-modal-content {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--accent);
}

.cookie-modal h2 {
  color: var(--primary-dark);
  margin-bottom: var(--space-lg);
}

.cookie-category {
  padding: var(--space-md);
  background-color: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  border-left: 3px solid var(--sage);
}

.cookie-category h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background-color: var(--stone);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-toggle.active {
  background-color: var(--success);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.cookie-modal-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* TEXT & IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-xxl);
}

.text-content {
  flex: 1 1 400px;
}

.image-content {
  flex: 1 1 400px;
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* FEATURE ITEMS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.feature-item img {
  width: 48px;
  height: 48px;
}

/* ICONS */
img[src*="icon-"] {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
}

/* META INFO */
.meta {
  font-size: var(--font-xs);
  color: var(--text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

.role {
  color: var(--accent);
  font-weight: 600;
  font-size: var(--font-sm);
  margin-bottom: var(--space-xs);
}

.architect {
  color: var(--text-light);
  font-size: var(--font-sm);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.examples, .highlights, .details {
  font-size: var(--font-xs);
  color: var(--text-light);
  margin-top: var(--space-sm);
}

.amount {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin: var(--space-sm) 0;
}

.code {
  display: inline-block;
  background-color: var(--cream);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: var(--font-sm);
  margin-top: var(--space-xs);
  border: 1px dashed var(--accent);
}

.note {
  font-size: var(--font-xs);
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: var(--space-md);
}

.payment-methods {
  font-weight: 600;
  color: var(--primary);
  margin-top: var(--space-sm);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* MOBILE MENU VISIBLE */
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: var(--font-xl);
  }
  
  h2 {
    font-size: var(--font-lg);
  }
  
  .hero h1 {
    font-size: var(--font-xl);
  }
  
  .error-code {
    font-size: 80px;
  }
  
  /* SECTIONS */
  section {
    padding: var(--space-lg) var(--space-sm);
    margin-bottom: var(--space-xl);
  }
  
  /* CARDS */
  .service-card, .highlight-card, .team-member, .reason,
  .category-card, .link-card, .method, .content-card,
  .tip-card, .article-card, .pricing-card, .discount-card,
  .term, .step, .contrast-card, .building-card, .step-card {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* FLEXBOX ADJUSTMENTS */
  .hero-cta, .cta-buttons, .stats, .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn, .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* TEXT & IMAGE SECTIONS */
  .text-image-section {
    flex-direction: column;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* COOKIE BANNER */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
  
  /* CATEGORIES */
  .categories {
    justify-content: flex-start;
  }
  
  /* TIMELINE */
  .timeline {
    padding-left: var(--space-lg);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card, .highlight-card, .category-card,
  .link-card, .tip-card, .article-card, .pricing-card,
  .step-card {
    flex: 1 1 calc(50% - var(--space-md));
  }
}

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

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.hero, .service-card, .testimonial-card, .pricing-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

button:focus, a:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-consent, .cta-section {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* PREVENT LAYOUT SHIFTS */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* SELECTION STYLING */
::selection {
  background-color: var(--accent);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--accent);
  color: var(--white);
}