/* ==========================================
   FLARING INVEST - LUXURY PREMIUM CSS
   Luxury Landscape Design - Ingolstadt
   ========================================== */

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

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

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C2C2C;
  background-color: #FEFEFE;
  overflow-x: hidden;
}

/* LUXURY TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2D5016;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: 0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #3A3A3A;
}

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

a:hover {
  color: #8B7355;
}

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

ul {
  list-style: none;
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2D5016 0%, #3A6B1E 100%);
  color: #FFFFFF;
  border: 2px solid #C8B896;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #3A6B1E 0%, #2D5016 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2D5016 0%, #1E3510 100%);
  z-index: 9998;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(200, 184, 150, 0.2);
  color: #C8B896;
  border: 1px solid #C8B896;
  border-radius: 6px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #C8B896;
  color: #2D5016;
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(200, 184, 150, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C8B896;
  padding-left: 10px;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #2D5016 0%, #3A6B1E 50%, #2D5016 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #C8B896;
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  filter: brightness(10);
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: #C8B896;
  letter-spacing: 0.5px;
}

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C8B896, #D4C6A4);
  transition: width 0.3s ease;
}

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

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

.cta-button {
  background: linear-gradient(135deg, #C8B896 0%, #D4C6A4 100%);
  color: #2D5016;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  box-shadow: 0 4px 8px rgba(200, 184, 150, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #D4C6A4 0%, #C8B896 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(200, 184, 150, 0.4);
  border-color: #8B7355;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #2D5016 0%, #3A6B1E 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3A6B1E 0%, #2D5016 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.4);
  border-color: #C8B896;
}

.btn-secondary {
  background: transparent;
  color: #2D5016;
  border: 2px solid #2D5016;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2D5016 0%, #3A6B1E 100%);
  color: #FFFFFF;
  border-color: #C8B896;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(58, 107, 30, 0.92) 50%, rgba(45, 80, 22, 0.95) 100%),
              url('assets/hero-bg.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(200, 184, 150, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: #C8B896;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #F5F5F5;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.9) 0%, rgba(58, 107, 30, 0.88) 100%),
              url('assets/page-hero-bg.jpg') center/cover;
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 60px;
}

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

.page-hero p {
  color: #F5F5F5;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 12px;
}

/* SECTIONS */
section {
  padding: 80px 20px;
  margin-bottom: 40px;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5A5A5A;
  margin-bottom: 40px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  text-align: center;
  padding: 80px 20px;
}

.value-proposition h2 {
  margin-bottom: 16px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 48px;
}

.value-card {
  flex: 1 1 220px;
  max-width: 260px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid #C8B896;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(45, 80, 22, 0.15);
  border-color: #8B7355;
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 2px 4px rgba(45, 80, 22, 0.2));
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2D5016;
}

.value-card p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}

.trust-indicators span {
  color: #2D5016;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  background: rgba(200, 184, 150, 0.15);
  border-radius: 6px;
  border: 1px solid #C8B896;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

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

.service-card {
  flex: 1 1 260px;
  max-width: 340px;
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 36px 28px;
  border-radius: 10px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(45, 80, 22, 0.15);
  border-color: #C8B896;
}

.service-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 3px 6px rgba(45, 80, 22, 0.15));
}

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

.service-card p {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .price {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #8B7355;
  margin-top: 16px;
  padding: 8px 20px;
  background: rgba(200, 184, 150, 0.15);
  border-radius: 6px;
  border: 1px solid #C8B896;
}

/* PROCESS SECTION */
.process {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  text-align: center;
  padding: 80px 20px;
}

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

.step {
  flex: 1 1 240px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 36px 24px;
  border-radius: 8px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.06);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(45, 80, 22, 0.12);
  border-color: #C8B896;
}

.step-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #2D5016 0%, #3A6B1E 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 56px;
  text-align: center;
  margin-bottom: 20px;
  border: 3px solid #C8B896;
  box-shadow: 0 4px 8px rgba(45, 80, 22, 0.2);
}

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

.step p {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #2D5016 0%, #3A6B1E 100%);
  padding: 80px 20px;
  color: #FFFFFF;
  text-align: center;
}

.testimonials h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.95);
  color: #2C2C2C;
  padding: 36px 32px;
  border-radius: 10px;
  border: 2px solid #C8B896;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: #C8B896;
  line-height: 1;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 2px solid #E8E4D8;
}

.testimonial-author strong {
  font-weight: 700;
  color: #2D5016;
  font-size: 16px;
}

.testimonial-author span {
  font-size: 14px;
  color: #666666;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.95) 0%, rgba(58, 107, 30, 0.92) 100%),
              url('assets/cta-bg.jpg') center/cover;
  padding: 100px 20px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}

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

.cta-section p {
  color: #F5F5F5;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-benefits span {
  color: #FFFFFF;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(200, 184, 150, 0.2);
  border-radius: 6px;
  border: 1px solid #C8B896;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #1E3510 0%, #2D5016 100%);
  color: #E8E4D8;
  padding: 60px 20px 20px;
  border-top: 3px solid #C8B896;
}

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

.footer-section {
  flex: 1 1 220px;
}

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

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #C8B896;
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-section h4 {
  color: #C8B896;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section a {
  color: #E8E4D8;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #C8B896;
  padding-left: 8px;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(200, 184, 150, 0.3);
  text-align: center;
}

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

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

.footer-legal a {
  color: #D0CFC5;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #C8B896;
}

/* SERVICES DETAIL PAGE */
.services-detail {
  padding: 60px 20px;
}

.service-block {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 40px 36px;
  border-radius: 10px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.08);
  margin-bottom: 40px;
  position: relative;
}

.service-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: #8B7355;
  margin-bottom: 16px;
}

.service-block .price {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #2D5016;
  margin: 16px 0;
  padding: 12px 28px;
  background: rgba(200, 184, 150, 0.15);
  border-radius: 8px;
  border: 2px solid #C8B896;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #C8B896 0%, #D4C6A4 100%);
  color: #2D5016;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid #8B7355;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #3A3A3A;
  line-height: 1.6;
}

.included-list li::before {
  content: '✓';
  color: #2D5016;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* PRICING INFO */
.pricing-info {
  background: linear-gradient(135deg, rgba(200, 184, 150, 0.15) 0%, rgba(200, 184, 150, 0.08) 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #C8B896;
  border-bottom: 2px solid #C8B896;
}

.pricing-notes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin: 32px auto 0;
  text-align: left;
}

.pricing-notes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #2D5016;
  font-weight: 500;
}

.pricing-notes li::before {
  content: '✓';
  color: #2D5016;
  font-weight: 700;
  font-size: 18px;
}

/* PROJECTS PAGE */
.projects-intro {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
}

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

.stat {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 28px 20px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 2px solid #C8B896;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.08);
}

.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #2D5016;
  margin-bottom: 8px;
}

.stat span {
  font-size: 15px;
  color: #5A5A5A;
}

.project-showcase {
  padding: 60px 20px;
}

.project {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 40px 36px;
  border-radius: 10px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.08);
  margin-bottom: 40px;
}

.project h2 {
  margin-bottom: 16px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.project-meta span {
  color: #8B7355;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 16px;
  background: rgba(200, 184, 150, 0.15);
  border-radius: 6px;
  border: 1px solid #C8B896;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #2D5016;
  font-size: 17px;
  padding: 20px 24px;
  background: rgba(200, 184, 150, 0.1);
  border-left: 4px solid #C8B896;
  margin-top: 24px;
  border-radius: 4px;
}

.project-categories {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

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

.category {
  flex: 1 1 220px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid #C8B896;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
}

.category:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(45, 80, 22, 0.15);
  border-color: #8B7355;
}

.category h3 {
  color: #2D5016;
  font-size: 20px;
  margin-bottom: 12px;
}

.category span {
  color: #8B7355;
  font-weight: 600;
  font-size: 15px;
}

.testimonials-extended {
  padding: 60px 20px;
}

.testimonials-extended .testimonial-card {
  margin-bottom: 24px;
}

.testimonials-extended .testimonial-card p {
  font-size: 17px;
  color: #2C2C2C;
}

.testimonials-extended .testimonial-card strong {
  display: block;
  color: #2D5016;
  font-size: 16px;
  margin-top: 16px;
}

.testimonials-extended .testimonial-card span {
  color: #C8B896;
  font-size: 20px;
}

/* CONTACT PAGE */
.contact-options {
  padding: 60px 20px;
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
}

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

.contact-card {
  flex: 1 1 280px;
  max-width: 340px;
  background: #FFFFFF;
  padding: 36px 28px;
  border-radius: 10px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(45, 80, 22, 0.15);
  border-color: #C8B896;
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.contact-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 15px;
  color: #3A3A3A;
  margin-bottom: 12px;
}

.contact-card span {
  display: block;
  font-size: 14px;
  color: #8B7355;
  font-style: italic;
}

.contact-form-section {
  padding: 60px 20px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-note {
  background: linear-gradient(135deg, rgba(200, 184, 150, 0.15) 0%, rgba(200, 184, 150, 0.08) 100%);
  padding: 32px;
  border-radius: 10px;
  border: 2px solid #C8B896;
}

.form-note p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.form-note ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.form-note li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 20px;
}

.form-note li::before {
  content: '•';
  color: #2D5016;
  font-weight: 700;
  font-size: 18px;
}

.location {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

.location-content {
  max-width: 800px;
  margin: 0 auto;
}

.address-block {
  background: #FFFFFF;
  padding: 36px 32px;
  border-radius: 10px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.08);
}

.address-block h3 {
  color: #2D5016;
  margin-bottom: 20px;
}

.address-block p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.address-block .note {
  color: #8B7355;
  font-style: italic;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 2px solid #E8E4D8;
}

.opening-hours {
  padding: 60px 20px;
  text-align: center;
}

.hours-grid {
  max-width: 500px;
  margin: 0 auto;
}

.hours-block {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 32px;
  border-radius: 10px;
  border: 2px solid #C8B896;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.08);
}

.hours-block p {
  font-size: 16px;
  margin-bottom: 12px;
}

.service-area {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.areas-grid span {
  padding: 10px 20px;
  background: #FFFFFF;
  border: 1px solid #C8B896;
  border-radius: 6px;
  color: #2D5016;
  font-size: 15px;
}

.service-note {
  color: #8B7355;
  font-style: italic;
  font-size: 15px;
  margin-top: 24px;
}

.contact-benefits {
  padding: 60px 20px;
}

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

.benefit {
  flex: 1 1 260px;
  max-width: 320px;
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 32px 28px;
  border-radius: 10px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(45, 80, 22, 0.15);
  border-color: #C8B896;
}

.benefit h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

.benefit p {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.7;
}

.availability {
  color: #8B7355;
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.9) 0%, rgba(58, 107, 30, 0.88) 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C8B896 0%, #D4C6A4 100%);
  color: #2D5016;
  border-radius: 50%;
  font-size: 48px;
  line-height: 80px;
  text-align: center;
  margin: 0 auto 24px;
  border: 4px solid #FFFFFF;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.confirmation {
  padding: 60px 20px;
}

.confirmation-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(200, 184, 150, 0.15) 0%, rgba(200, 184, 150, 0.08) 100%);
  padding: 36px;
  border-radius: 10px;
  border: 2px solid #C8B896;
  text-align: center;
}

.confirmation-box p {
  font-size: 17px;
  margin-bottom: 16px;
}

.next-steps {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

.steps-list {
  max-width: 700px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.06);
  text-align: left;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2D5016 0%, #3A6B1E 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  line-height: 48px;
  text-align: center;
  flex-shrink: 0;
  border: 2px solid #C8B896;
}

.step-item p {
  font-size: 16px;
  margin: 0;
}

.timeline-note {
  color: #8B7355;
  font-style: italic;
  font-size: 15px;
  margin-top: 24px;
}

.resources {
  padding: 60px 20px;
}

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

.resource-card {
  flex: 1 1 280px;
  max-width: 340px;
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 36px 28px;
  border-radius: 10px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(45, 80, 22, 0.15);
  border-color: #C8B896;
}

.resource-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

.resource-card p {
  font-size: 15px;
  color: #5A5A5A;
  margin-bottom: 24px;
}

.testimonials-short {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
}

.testimonial-mini {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.06);
  margin-bottom: 20px;
}

.testimonial-mini p {
  font-style: italic;
  color: #2C2C2C;
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-mini span {
  color: #8B7355;
  font-weight: 600;
  font-size: 14px;
}

.rating {
  color: #C8B896;
  font-size: 18px;
  margin-top: 32px;
}

.contact-reminder {
  padding: 60px 20px;
  text-align: center;
}

.contact-info {
  max-width: 600px;
  margin: 32px auto;
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 32px;
  border-radius: 10px;
  border: 2px solid #E8E4D8;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 12px;
}

.email-check {
  background: linear-gradient(135deg, rgba(200, 184, 150, 0.15) 0%, rgba(200, 184, 150, 0.08) 100%);
  padding: 60px 20px;
  text-align: center;
}

.notice-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 10px;
  border: 2px solid #C8B896;
}

.notice-box p {
  font-size: 16px;
  margin-bottom: 16px;
}

/* LEGAL PAGES */
.legal-page {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #2D5016;
}

.legal-page h3 {
  font-size: 22px;
  margin-top: 28px;
  margin-bottom: 12px;
  color: #3A6B1E;
}

.legal-page p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-page ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

.legal-page ul li {
  list-style: disc;
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-page a {
  color: #2D5016;
  text-decoration: underline;
}

.legal-page a:hover {
  color: #8B7355;
}

/* STORY & PHILOSOPHY */
.story {
  padding: 80px 20px;
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
}

.story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.milestone {
  flex: 1 1 220px;
  max-width: 260px;
  background: #FFFFFF;
  padding: 28px 24px;
  border-radius: 8px;
  border: 2px solid #C8B896;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(45, 80, 22, 0.12);
}

.milestone strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2D5016;
  margin-bottom: 12px;
}

.milestone span {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.6;
}

.philosophy {
  padding: 80px 20px;
}

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

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

.philosophy-card {
  flex: 1 1 260px;
  max-width: 320px;
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 36px 28px;
  border-radius: 10px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(45, 80, 22, 0.15);
  border-color: #C8B896;
}

.philosophy-card h3 {
  color: #2D5016;
  margin-bottom: 12px;
}

.philosophy-card p {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.7;
}

.team {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 32px;
}

.team-member {
  flex: 1 1 260px;
  max-width: 300px;
  background: #FFFFFF;
  padding: 36px 28px;
  border-radius: 10px;
  border: 2px solid #C8B896;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(45, 80, 22, 0.15);
  border-color: #8B7355;
}

.team-member h3 {
  color: #2D5016;
  margin-bottom: 8px;
}

.team-member .role {
  font-weight: 600;
  color: #8B7355;
  font-size: 15px;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.6;
}

.team-note {
  color: #8B7355;
  font-style: italic;
  font-size: 15px;
}

.values {
  padding: 80px 20px;
}

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

.values-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  border-radius: 8px;
  border: 2px solid #E8E4D8;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.06);
  font-size: 16px;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.values-list li:hover {
  border-color: #C8B896;
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.12);
}

.values-list li::before {
  content: '✓';
  color: #2D5016;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.certifications {
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
}

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

.cert-grid span {
  padding: 12px 24px;
  background: #FFFFFF;
  border: 2px solid #C8B896;
  border-radius: 6px;
  color: #2D5016;
  font-weight: 500;
  font-size: 15px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D5016 0%, #3A6B1E 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9997;
  border-top: 3px solid #C8B896;
}

.cookie-consent.active {
  display: block;
}

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-text p {
  color: #F5F5F5;
  margin-bottom: 8px;
}

.cookie-text a {
  color: #C8B896;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #C8B896 0%, #D4C6A4 100%);
  color: #2D5016;
  border-color: #C8B896;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #D4C6A4 0%, #C8B896 100%);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #C8B896;
  border-color: #C8B896;
}

.cookie-settings:hover {
  background: rgba(200, 184, 150, 0.1);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  padding: 40px 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
  border: 3px solid #C8B896;
}

.cookie-modal h2 {
  color: #2D5016;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 100%);
  border-radius: 8px;
  border: 2px solid #E8E4D8;
  margin-bottom: 20px;
}

.cookie-category h3 {
  color: #2D5016;
  margin-bottom: 8px;
  font-size: 18px;
}

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

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

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  /* Mobile Menu Display */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide Desktop Navigation */
  .main-nav {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  /* Header Adjustments */
  header {
    padding: 16px 0;
  }
  
  .header-content {
    justify-content: center;
  }
  
  .logo img {
    height: 40px;
  }
  
  .tagline {
    font-size: 12px;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  .page-hero {
    padding: 60px 20px;
  }
  
  /* Flexbox Layouts - Mobile Column */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .value-grid,
  .services-grid,
  .process-steps,
  .testimonial-grid,
  .stats-grid,
  .categories-grid,
  .contact-grid,
  .benefits-grid,
  .resources-grid,
  .philosophy-grid,
  .team-grid,
  .milestones {
    flex-direction: column;
    align-items: center;
  }
  
  .value-card,
  .service-card,
  .step,
  .testimonial-card,
  .stat,
  .category,
  .contact-card,
  .benefit,
  .resource-card,
  .philosophy-card,
  .team-member,
  .milestone {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 34px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
  }
  
  .service-block,
  .project,
  .address-block {
    padding: 28px 20px;
  }
  
  .cookie-modal-content {
    padding: 28px 20px;
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

.mb-medium {
  margin-bottom: 40px;
}

.mb-large {
  margin-bottom: 60px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  header,
  footer {
    background: #FFFFFF;
    color: #000000;
  }
}