/* ===================================
   QUIET LANDS - VINTAGE RETRO DESIGN
   Complete CSS Styles
   =================================== */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2C1810;
  background-color: #F5EFE6;
  overflow-x: hidden;
}

/* VINTAGE RETRO TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Courier New', 'Courier', monospace;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2C5F4F;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 12px;
}

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

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

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

ul {
  list-style: none;
}

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

/* VINTAGE RETRO BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid #2C5F4F;
  background-color: #E8DCC8;
  color: #2C5F4F;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 4px 4px 0 #2C5F4F;
}

.btn-primary:hover {
  background-color: #2C5F4F;
  color: #E8DCC8;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #2C5F4F;
}

.btn-secondary {
  background-color: #8B7355;
  color: #F5EFE6;
  border-color: #8B7355;
  box-shadow: 4px 4px 0 #5C4A3D;
}

.btn-secondary:hover {
  background-color: #F5EFE6;
  color: #8B7355;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #5C4A3D;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #E8DCC8;
  border: 3px solid #2C5F4F;
  color: #2C5F4F;
  font-size: 24px;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #2C5F4F;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2C5F4F;
  color: #E8DCC8;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #E8DCC8;
  border-left: 5px solid #2C5F4F;
  z-index: 999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(44, 95, 79, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #2C5F4F;
  border: 3px solid #2C5F4F;
  color: #E8DCC8;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E8DCC8;
  color: #2C5F4F;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2C5F4F;
  padding: 12px 0;
  border-bottom: 2px dotted #8B7355;
  transition: all 0.3s ease;
}

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

/* HEADER */
header {
  background-color: #E8DCC8;
  border-bottom: 5px solid #2C5F4F;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 10px rgba(44, 95, 79, 0.2);
}

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

.logo img {
  height: 50px;
  filter: sepia(30%);
}

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

.main-nav a {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2C5F4F;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #8B7355;
  border-bottom-color: #8B7355;
}

.header-cta {
  display: flex;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #E8DCC8 0%, #D4C4B0 100%);
  padding: 80px 20px;
  border-bottom: 5px solid #2C5F4F;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(44, 95, 79, 0.05) 10px, rgba(44, 95, 79, 0.05) 20px);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  color: #2C5F4F;
  text-shadow: 3px 3px 0 rgba(139, 115, 85, 0.3);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: #5C4A3D;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

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

.trust-indicators span {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #2C5F4F;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  background-color: #F5EFE6;
  border: 3px solid #2C5F4F;
  box-shadow: 3px 3px 0 #8B7355;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5C4A3D;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #8B7355;
}

/* SERVICES OVERVIEW */
.services-overview {
  background-color: #F5EFE6;
  border-top: 5px solid #2C5F4F;
  border-bottom: 5px solid #2C5F4F;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background-color: #FFFFFF;
  border: 4px solid #2C5F4F;
  padding: 30px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 350px;
  box-shadow: 6px 6px 0 #8B7355;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #8B7355;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  filter: sepia(40%);
}

.service-card h3 {
  font-size: 20px;
  color: #2C5F4F;
}

.service-card p {
  color: #5C4A3D;
  font-size: 15px;
  line-height: 1.6;
}

.service-card .price {
  font-family: 'Courier New', 'Courier', monospace;
  font-weight: 700;
  color: #8B7355;
  font-size: 16px;
  margin-top: auto;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* PROCESS SECTION */
.process {
  background-color: #E8DCC8;
  border-top: 5px solid #2C5F4F;
  border-bottom: 5px solid #2C5F4F;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.step-number {
  width: 70px;
  height: 70px;
  background-color: #2C5F4F;
  color: #E8DCC8;
  border: 4px solid #8B7355;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 32px;
  font-weight: 700;
  box-shadow: 4px 4px 0 #8B7355;
}

.step h3 {
  font-size: 18px;
}

.step p {
  color: #5C4A3D;
  font-size: 15px;
}

/* WHY CHOOSE SECTION */
.why-choose {
  background-color: #F5EFE6;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  background-color: #FFFFFF;
  border: 4px solid #8B7355;
  padding: 30px 20px;
  box-shadow: 5px 5px 0 #2C5F4F;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.feature img {
  width: 50px;
  height: 50px;
  filter: sepia(40%);
}

.feature h3 {
  font-size: 16px;
}

.feature p {
  font-size: 14px;
  color: #5C4A3D;
}

/* TESTIMONIALS SECTION */
.testimonials {
  background-color: #E8DCC8;
  border-top: 5px solid #2C5F4F;
  border-bottom: 5px solid #2C5F4F;
}

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

.testimonial-card {
  background-color: #F5EFE6;
  border: 4px solid #2C5F4F;
  padding: 30px;
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  max-width: 500px;
  box-shadow: 6px 6px 0 #8B7355;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2C1810;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
}

.testimonial-author strong {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 16px;
  color: #2C5F4F;
  text-transform: uppercase;
}

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

/* CTA BANNER */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C5F4F 0%, #1F4438 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 5px solid #8B7355;
  border-bottom: 5px solid #8B7355;
}

.cta-content h2,
.cta-section h2 {
  color: #E8DCC8;
  margin-bottom: 20px;
}

.cta-content h2::after,
.cta-section h2::after {
  background-color: #E8DCC8;
}

.cta-content p,
.cta-section p {
  color: #F5EFE6;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #E8DCC8 0%, #D4C4B0 100%);
  padding: 60px 20px;
  border-bottom: 5px solid #2C5F4F;
  text-align: center;
}

.breadcrumb {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 14px;
  margin-bottom: 20px;
  color: #5C4A3D;
}

.breadcrumb a {
  color: #2C5F4F;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #8B7355;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

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

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stats-bar span {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #2C5F4F;
  padding: 12px 24px;
  background-color: #F5EFE6;
  border: 3px solid #2C5F4F;
  box-shadow: 4px 4px 0 #8B7355;
}

.update-date {
  font-size: 14px;
  color: #8B7355;
  margin-top: 10px;
}

/* SERVICES DETAILED */
.services-detailed {
  background-color: #F5EFE6;
}

.service-detail-card {
  background-color: #FFFFFF;
  border: 4px solid #2C5F4F;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 6px 6px 0 #8B7355;
}

.service-detail-card h2 {
  text-align: left;
  margin-bottom: 20px;
}

.service-detail-card h2::after {
  left: 0;
  transform: none;
}

.service-features {
  margin: 20px 0;
  padding-left: 20px;
}

.service-features li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #5C4A3D;
  font-size: 16px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F4F;
  font-weight: 700;
  font-size: 18px;
}

.service-price {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #8B7355;
  margin: 20px 0;
}

/* SERVICE INCLUDES */
.service-includes {
  background-color: #E8DCC8;
  border-top: 5px solid #2C5F4F;
  border-bottom: 5px solid #2C5F4F;
}

.includes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.include-item {
  flex: 1 1 calc(33.333% - 25px);
  min-width: 250px;
  max-width: 350px;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #F5EFE6;
  padding: 20px;
  border: 3px solid #8B7355;
  box-shadow: 4px 4px 0 #2C5F4F;
}

.include-item img {
  width: 40px;
  height: 40px;
  filter: sepia(40%);
}

.include-item p {
  font-size: 15px;
  color: #2C5F4F;
  font-weight: 600;
  margin: 0;
}

/* PROJECTS GRID */
.projects-grid {
  background-color: #F5EFE6;
}

.project-card {
  background-color: #FFFFFF;
  border: 4px solid #2C5F4F;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 6px 6px 0 #8B7355;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #8B7355;
}

.project-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.project-meta {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 13px;
  color: #8B7355;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-budget {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 16px;
  font-weight: 700;
  color: #2C5F4F;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px dotted #8B7355;
}

/* ABOUT STORY */
.about-story {
  background-color: #F5EFE6;
}

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

.text-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #2C1810;
  margin-bottom: 20px;
}

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

.milestone {
  text-align: center;
  flex: 1 1 calc(25% - 30px);
  min-width: 180px;
  background-color: #FFFFFF;
  border: 4px solid #2C5F4F;
  padding: 30px 20px;
  box-shadow: 5px 5px 0 #8B7355;
}

.milestone strong {
  display: block;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 36px;
  color: #2C5F4F;
  margin-bottom: 10px;
}

.milestone p {
  font-size: 14px;
  color: #5C4A3D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* VALUES SECTION */
.values {
  background-color: #E8DCC8;
  border-top: 5px solid #2C5F4F;
  border-bottom: 5px solid #2C5F4F;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  background-color: #F5EFE6;
  border: 4px solid #8B7355;
  padding: 30px 20px;
  box-shadow: 5px 5px 0 #2C5F4F;
}

.value-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.value-item p {
  font-size: 15px;
  color: #5C4A3D;
}

/* APPROACH SECTION */
.approach {
  background-color: #F5EFE6;
}

.approach-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.approach-step {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  background-color: #FFFFFF;
  border: 4px solid #2C5F4F;
  padding: 30px 20px;
  box-shadow: 5px 5px 0 #8B7355;
}

.approach-step h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.approach-step p {
  font-size: 15px;
  color: #5C4A3D;
}

/* STATISTICS SECTION */
.statistics {
  background-color: #E8DCC8;
  border-top: 5px solid #2C5F4F;
  border-bottom: 5px solid #2C5F4F;
}

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

.stat-item {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  background-color: #FFFFFF;
  border: 4px solid #2C5F4F;
  padding: 40px 20px;
  box-shadow: 6px 6px 0 #8B7355;
}

.stat-item strong {
  display: block;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 48px;
  color: #2C5F4F;
  margin-bottom: 15px;
}

.stat-item p {
  font-size: 16px;
  color: #5C4A3D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* BLOG POSTS */
.blog-posts {
  background-color: #F5EFE6;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-card {
  background-color: #FFFFFF;
  border: 4px solid #2C5F4F;
  padding: 30px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 360px;
  box-shadow: 6px 6px 0 #8B7355;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #8B7355;
}

.blog-category {
  display: inline-block;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #E8DCC8;
  background-color: #8B7355;
  padding: 6px 12px;
  border: 2px solid #2C5F4F;
}

.blog-card h3 {
  font-size: 20px;
  color: #2C5F4F;
}

.blog-card p {
  color: #5C4A3D;
  font-size: 15px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #8B7355;
  margin-top: auto;
  padding-top: 15px;
  border-top: 2px dotted #8B7355;
}

/* CONTACT METHODS */
.contact-methods {
  background-color: #F5EFE6;
}

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

.method-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 450px;
  background-color: #FFFFFF;
  border: 4px solid #2C5F4F;
  padding: 40px;
  text-align: center;
  box-shadow: 6px 6px 0 #8B7355;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.method-card img {
  width: 60px;
  height: 60px;
  filter: sepia(40%);
}

.method-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.method-card p {
  font-size: 16px;
  color: #2C5F4F;
  font-weight: 600;
}

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

/* CONTACT INFO SECTION */
.contact-info-section {
  background-color: #E8DCC8;
  border-top: 5px solid #2C5F4F;
  border-bottom: 5px solid #2C5F4F;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.info-block {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background-color: #F5EFE6;
  border: 4px solid #8B7355;
  padding: 30px;
  box-shadow: 5px 5px 0 #2C5F4F;
}

.info-block h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.info-block p {
  font-size: 15px;
  color: #2C1810;
  margin-bottom: 12px;
}

.info-block strong {
  color: #2C5F4F;
}

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

/* LEGAL CONTENT */
.legal-content {
  background-color: #F5EFE6;
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 4px solid #2C5F4F;
  padding: 40px;
  box-shadow: 6px 6px 0 #8B7355;
}

.content-wrapper h2 {
  text-align: left;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-wrapper h2::after {
  display: none;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #2C1810;
  margin-bottom: 16px;
}

.content-wrapper a {
  color: #2C5F4F;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #8B7355;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #E8DCC8 0%, #D4C4B0 100%);
  padding: 100px 20px;
  text-align: center;
  border-bottom: 5px solid #2C5F4F;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #2C5F4F;
  color: #E8DCC8;
  border: 5px solid #8B7355;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 30px;
  box-shadow: 6px 6px 0 #8B7355;
}

.thank-you-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.lead {
  font-size: 20px;
  color: #5C4A3D;
  margin-bottom: 30px;
}

/* NEXT STEPS */
.next-steps {
  background-color: #F5EFE6;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.step-card {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  max-width: 260px;
  background-color: #FFFFFF;
  border: 4px solid #2C5F4F;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 5px 5px 0 #8B7355;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.confirmation-note {
  text-align: center;
  font-size: 15px;
  color: #8B7355;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* IMMEDIATE ACTIONS */
.immediate-actions {
  background-color: #E8DCC8;
  border-top: 5px solid #2C5F4F;
  border-bottom: 5px solid #2C5F4F;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.action-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 260px;
  max-width: 350px;
  background-color: #F5EFE6;
  border: 4px solid #8B7355;
  padding: 30px;
  text-align: center;
  box-shadow: 5px 5px 0 #2C5F4F;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.action-card h3 {
  font-size: 20px;
}

.action-card p {
  font-size: 15px;
  color: #5C4A3D;
}

/* CONTACT REMINDER */
.contact-reminder {
  background-color: #F5EFE6;
  text-align: center;
  padding: 60px 20px;
}

.contact-reminder h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-reminder p {
  font-size: 16px;
  color: #5C4A3D;
  margin-bottom: 10px;
}

.contact-detail {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #2C5F4F;
  margin: 20px 0;
}

.hours {
  font-size: 15px;
  color: #8B7355;
}

/* FOOTER */
footer {
  background-color: #2C5F4F;
  color: #E8DCC8;
  padding: 60px 20px 30px;
  border-top: 5px solid #8B7355;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1) sepia(30%);
}

.footer-col h4 {
  font-size: 16px;
  color: #E8DCC8;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col p {
  font-size: 14px;
  color: #D4C4B0;
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.footer-col nav a {
  font-size: 14px;
  color: #D4C4B0;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col nav a:hover {
  color: #E8DCC8;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 3px solid #8B7355;
  padding-top: 30px;
  text-align: center;
}

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

.footer-legal a {
  font-size: 13px;
  color: #D4C4B0;
  text-decoration: underline;
  transition: all 0.3s ease;
}

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

.footer-bottom p {
  font-size: 13px;
  color: #D4C4B0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C5F4F;
  border-top: 5px solid #8B7355;
  padding: 25px 20px;
  z-index: 950;
  box-shadow: 0 -5px 20px rgba(44, 95, 79, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-buttons button {
  padding: 10px 20px;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid #E8DCC8;
  background-color: #E8DCC8;
  color: #2C5F4F;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0 #8B7355;
}

.cookie-buttons button:hover {
  background-color: #2C5F4F;
  color: #E8DCC8;
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #8B7355;
}

.cookie-buttons .btn-reject {
  background-color: transparent;
  color: #E8DCC8;
}

.cookie-buttons .btn-reject:hover {
  background-color: #8B7355;
  border-color: #8B7355;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 31, 16, 0.85);
  z-index: 960;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background-color: #E8DCC8;
  border: 5px solid #2C5F4F;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 10px 10px 0 #8B7355;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #2C5F4F;
  border: 3px solid #2C5F4F;
  color: #E8DCC8;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: #E8DCC8;
  color: #2C5F4F;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background-color: #F5EFE6;
  border: 3px solid #8B7355;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}

.category-header h3 {
  font-size: 18px;
  margin: 0;
}

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #8B7355;
  border: 3px solid #2C5F4F;
  transition: 0.3s;
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #F5EFE6;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background-color: #2C5F4F;
}

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

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  /* Flexbox adjustments for mobile */
  .hero-cta,
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }

  .services-grid,
  .process-steps,
  .features-grid,
  .testimonials-grid,
  .includes-grid,
  .methods-grid,
  .info-grid,
  .values-grid,
  .approach-steps,
  .stats-grid,
  .blog-grid,
  .actions-grid,
  .steps-grid,
  .milestones {
    flex-direction: column;
    align-items: center;
  }

  .service-card,
  .step,
  .feature,
  .testimonial-card,
  .include-item,
  .method-card,
  .info-block,
  .value-item,
  .approach-step,
  .stat-item,
  .blog-card,
  .action-card,
  .step-card,
  .milestone {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .stats-bar {
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile padding adjustments */
  section {
    padding: 40px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .modal-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 13px;
  }

  .service-card,
  .project-card,
  .blog-card {
    padding: 25px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .header-cta,
  .hero-cta,
  .cta-banner,
  .cta-section,
  .section-cta {
    display: none !important;
  }

  body {
    background-color: white;
    color: black;
  }

  * {
    box-shadow: none !important;
    border-color: #333 !important;
  }
}