/* ============================================
   LEDGERSPARK GARTENBAU - MONOCHROME SOPHISTICATED
   Sophisticated monochrome design with dramatic contrast
   ============================================ */

/* ============================================
   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.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY - MONOCHROME SOPHISTICATED
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

strong {
  font-weight: 600;
  color: #000000;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

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

/* ============================================
   HEADER - SOPHISTICATED BLACK & WHITE
   ============================================ */

header {
  background-color: #000000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

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

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

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

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

/* ============================================
   MOBILE MENU - SOPHISTICATED SLIDE-IN
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: #000000;
  z-index: 1999;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid #333333;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #cccccc;
  padding-left: 8px;
}

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

/* ============================================
   BUTTONS - DRAMATIC CONTRAST
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-link {
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: transform 0.3s ease;
  transform: scaleX(1);
}

.btn-link:hover::after {
  transform: scaleX(0);
}

/* ============================================
   HERO SECTIONS - MONOCHROME DRAMA
   ============================================ */

.hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, #000000 25%, transparent 25%),
                    linear-gradient(-45deg, #000000 25%, transparent 25%),
                    linear-gradient(45deg, transparent 75%, #000000 75%),
                    linear-gradient(-45deg, transparent 75%, #000000 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  opacity: 0.03;
}

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

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

.hero-subtitle {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badge {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  border: 2px solid #ffffff;
}

.hero-simple {
  background-color: #f5f5f5;
  padding: 80px 20px 60px;
  border-bottom: 3px solid #000000;
}

.hero-simple h1 {
  color: #000000;
  text-align: center;
  margin-bottom: 16px;
}

.hero-simple .hero-subtitle {
  text-align: center;
  color: #2a2a2a;
  font-size: 18px;
}

/* ============================================
   BREADCRUMB - ELEGANT NAVIGATION
   ============================================ */

.breadcrumb {
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #666666;
  transition: color 0.3s ease;
}

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

.breadcrumb span {
  color: #000000;
  font-weight: 600;
}

/* ============================================
   FEATURE CARDS - SOPHISTICATED GRID
   ============================================ */

.introduction,
.services-overview,
.company-story,
.mission-vision,
.team,
.certifications {
  padding: 80px 20px;
  background-color: #ffffff;
}

.introduction h2,
.services-overview h2,
.company-story h2,
.mission-vision h2,
.team h2,
.certifications h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: #666666;
  font-size: 18px;
  margin-bottom: 48px;
}

.features-grid,
.services-grid,
.values-grid,
.team-grid,
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.feature-card,
.service-card,
.value-card,
.team-member,
.cert-item {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.feature-card:hover,
.service-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 #000000;
}

.feature-card img,
.service-card img,
.value-card img {
  width: 48px;
  height: 48px;
  filter: brightness(0);
}

.feature-card h3,
.service-card h3,
.value-card h3,
.team-member h3,
.cert-item h3 {
  color: #000000;
  margin-bottom: 8px;
}

.feature-card p,
.service-card p,
.value-card p,
.cert-item p {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
}

.service-card .price {
  font-weight: 700;
  color: #000000;
  font-size: 18px;
  margin-top: auto;
}

/* ============================================
   PROCESS STEPS - ELEGANT TIMELINE
   ============================================ */

.process {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

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

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

.step {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 24px;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  color: #4a4a4a;
  font-size: 14px;
}

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

.testimonials {
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
}

.testimonials h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 32px;
  background-color: #ffffff;
  color: #000000;
  border: 3px solid #000000;
  position: relative;
}

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

.rating {
  color: #000000;
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: #1a1a1a;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.customer-name {
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.customer-location {
  color: #666666;
  font-size: 14px;
}

/* ============================================
   CTA SECTIONS - BOLD & DRAMATIC
   ============================================ */

.cta-final,
.cta-about,
.cta-services,
.cta-projects,
.cta-blog {
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.cta-final h2,
.cta-about h2,
.cta-services h2,
.cta-projects h2,
.cta-blog h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-final p,
.cta-about p,
.cta-services p,
.cta-projects p,
.cta-blog p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-buttons .btn-primary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-buttons .btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-buttons .btn-secondary {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-buttons .btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

.contact-info {
  color: #cccccc;
  font-size: 14px;
}

.contact-info strong {
  color: #ffffff;
}

/* ============================================
   COMPANY STORY - TEXT & IMAGE SECTIONS
   ============================================ */

.story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.story-column {
  flex: 1 1 400px;
}

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

.milestone {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 20px;
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
  font-weight: 600;
  text-align: center;
}

/* ============================================
   MISSION & VISION
   ============================================ */

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

.mission-box {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 40px;
  background-color: #000000;
  color: #ffffff;
  border: 3px solid #000000;
}

.mission-box h3 {
  color: #ffffff;
  margin-bottom: 16px;
}

.mission-box p {
  color: #e0e0e0;
}

/* ============================================
   SERVICE DETAILS
   ============================================ */

.services-intro {
  padding: 40px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

.service-detail {
  padding: 60px 20px;
  border-bottom: 2px solid #e0e0e0;
}

.service-detail:nth-child(even) {
  background-color: #f5f5f5;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.service-header h2 {
  margin-bottom: 0;
}

.service-header .price {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 20px;
}

.service-detail li {
  margin-bottom: 12px;
  color: #2a2a2a;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ============================================
   PROJECT SHOWCASE
   ============================================ */

.project-showcase {
  padding: 60px 20px;
  border-bottom: 2px solid #e0e0e0;
}

.project-showcase:nth-child(even) {
  background-color: #f5f5f5;
}

.project-header {
  margin-bottom: 24px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 14px;
}

.category {
  padding: 6px 12px;
  background-color: #000000;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.testimonial-inline {
  margin-top: 32px;
  padding: 24px;
  background-color: #ffffff;
  border-left: 4px solid #000000;
}

.testimonial-inline .author {
  font-weight: 600;
  color: #000000;
  margin-top: 8px;
}

.project-statistics {
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
}

.project-statistics h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

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

.stat-card {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px;
  border: 2px solid #ffffff;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-card p {
  color: #e0e0e0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.blog-intro {
  padding: 40px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

.featured-article {
  padding: 60px 20px;
  background-color: #ffffff;
  border-bottom: 3px solid #000000;
}

.label {
  display: inline-block;
  padding: 6px 12px;
  background-color: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
  font-size: 14px;
  color: #666666;
}

.blog-articles {
  padding: 60px 20px;
}

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

.article-card {
  flex: 1 1 320px;
  max-width: 380px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 0 #000000;
}

.article-card .author {
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

.faq-gardening {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.faq-item {
  padding: 24px;
  background-color: #ffffff;
  border-left: 4px solid #000000;
}

.faq-item h3 {
  margin-bottom: 12px;
}

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

.contact-methods {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.method-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 40px;
  text-align: center;
  background-color: #f5f5f5;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 0 #000000;
}

.method-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: brightness(0);
}

.contact-form {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

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

.form-note {
  padding: 24px;
  background-color: #ffffff;
  border: 2px solid #000000;
  margin-bottom: 32px;
}

.form-note a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.field-group label {
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.field-info {
  padding: 12px;
  background-color: #ffffff;
  border: 2px solid #000000;
  color: #4a4a4a;
  font-size: 14px;
}

.form-note-small {
  font-size: 12px;
  color: #666666;
  margin-top: 16px;
}

.form-note-small a {
  color: #000000;
  text-decoration: underline;
}

.office-info {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.office-details {
  flex: 1 1 400px;
  max-width: 600px;
}

.office-details p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.map-location {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.map-placeholder {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background-color: #ffffff;
  border: 2px solid #000000;
  text-align: center;
}

.service-area {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.areas-list {
  max-width: 800px;
  margin: 32px auto 0;
  padding: 32px;
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
}

.trust-signals {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.signals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.signal-item {
  flex: 1 1 200px;
  max-width: 250px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #ffffff;
  border: 2px solid #000000;
}

.signal-item img {
  width: 32px;
  height: 32px;
  filter: brightness(0);
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

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

.legal-hero {
  background-color: #f5f5f5;
  padding: 80px 20px 40px;
  text-align: center;
  border-bottom: 3px solid #000000;
}

.last-updated {
  color: #666666;
  font-size: 14px;
  margin-top: 8px;
}

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 16px 0 16px 24px;
}

.content-wrapper li {
  margin-bottom: 8px;
  color: #2a2a2a;
}

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

.thank-you-hero {
  padding: 100px 20px 60px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 700;
  margin: 0 auto 32px;
  border: 4px solid #ffffff;
}

.thank-you-hero h1 {
  color: #ffffff;
}

.thank-you-hero .hero-subtitle {
  color: #e0e0e0;
}

.confirmation {
  color: #cccccc;
  font-size: 14px;
  margin-top: 16px;
}

.next-steps {
  padding: 80px 20px;
  background-color: #ffffff;
}

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

.step-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px;
  background-color: #f5f5f5;
  border: 2px solid #000000;
  text-align: center;
}

.step-card .step-number {
  width: 60px;
  height: 60px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-time {
  font-size: 12px;
  color: #666666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

.explore-more {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

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

.explore-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #000000;
  text-align: center;
  transition: all 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 0 #000000;
}

.testimonial-single {
  padding: 80px 20px;
  background-color: #ffffff;
}

.testimonial-large {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background-color: #f5f5f5;
  border-left: 6px solid #000000;
  text-align: center;
}

.quote {
  font-size: 20px;
  font-style: italic;
  color: #1a1a1a;
  margin: 24px 0;
  line-height: 1.8;
}

.project-type {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-proof {
  padding: 80px 20px;
  background-color: #000000;
  color: #ffffff;
}

.social-proof h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px;
  border: 2px solid #ffffff;
}

.stat-item .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-item p {
  color: #e0e0e0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.quick-links {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

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

.link-card {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #000000;
  text-align: center;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 0 #000000;
}

/* ============================================
   FOOTER - ELEGANT BLACK & WHITE
   ============================================ */

footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 3px solid #ffffff;
}

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

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

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  color: #999999;
  font-size: 12px;
}

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 24px;
  z-index: 9999;
  border-top: 3px solid #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #e0e0e0;
  font-size: 14px;
}

.cookie-text p {
  color: white;
}

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

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 12px;
}

#cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: #ffffff;
  padding: 40px;
  z-index: 10000;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border: 3px solid #000000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#cookie-settings-modal.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
}

.cookie-category h3 {
  margin-bottom: 8px;
}

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

.toggle-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .features-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .stats-grid,
  .methods-grid,
  .signals-grid {
    flex-direction: column;
  }
  
  .feature-card,
  .service-card,
  .step,
  .testimonial-card,
  .stat-card,
  .method-card,
  .signal-item {
    max-width: 100%;
  }
  
  .story-content,
  .mission-content,
  .office-content {
    flex-direction: column;
  }
  
  .service-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .mobile-menu {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 12px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-settings-modal,
  .modal-overlay {
    display: none !important;
  }
  
  body {
    background-color: #ffffff;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

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

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

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

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

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

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

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

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

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

.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; }

/* ============================================
   END OF STYLESHEET
   ============================================ */