/* ========================================
   WHISPER RIDER - VINTAGE RETRO STYLE
   Sustainable Energy with Nostalgic Touch
   ======================================== */

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

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

body {
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  line-height: 1.8;
  color: #2d2d2d;
  background-color: #f5f1e8;
  overflow-x: hidden;
}

/* ========================================
   VINTAGE RETRO COLOR PALETTE
   ======================================== */
:root {
  --primary-vintage: #1a3d1b;
  --secondary-vintage: #2C5F2D;
  --accent-vintage: #9ED74E;
  --cream: #f5f1e8;
  --tan: #d4c4a8;
  --brown: #6b4423;
  --burnt-orange: #d2691e;
  --mustard: #e1ad01;
  --olive: #708238;
  --rust: #a0522d;
  --charcoal: #2d2d2d;
  --paper-white: #faf8f3;
}

/* ========================================
   TYPOGRAPHY - VINTAGE STYLE
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-vintage);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

h2 {
  font-size: 32px;
  border-bottom: 3px double var(--burnt-orange);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 18px;
  color: var(--olive);
}

p {
  margin-bottom: 16px;
  color: var(--charcoal);
}

a {
  color: var(--burnt-orange);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px dotted var(--burnt-orange);
}

a:hover {
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

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

/* ========================================
   HEADER - VINTAGE NEWSPAPER STYLE
   ======================================== */
header {
  background: linear-gradient(180deg, var(--paper-white) 0%, var(--cream) 100%);
  border-bottom: 4px solid var(--brown);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: sepia(20%);
  transition: filter 0.3s ease;
}

.logo img:hover {
  filter: sepia(0%);
}

/* MAIN NAVIGATION - VINTAGE TABS */
.main-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 12px 20px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-vintage);
  background-color: var(--tan);
  border: 2px solid var(--brown);
  border-bottom: none;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px 8px 0 0;
  border-bottom-width: 0;
}

.main-nav a:hover,
.main-nav a:focus {
  background-color: var(--paper-white);
  color: var(--burnt-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* ========================================
   MOBILE MENU - VINTAGE DRAWER STYLE
   ======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: var(--burnt-orange);
  color: var(--paper-white);
  border: 3px solid var(--brown);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--paper-white) 0%, var(--tan) 100%);
  border-left: 4px solid var(--brown);
  z-index: 1999;
  transition: right 0.4s ease;
  padding: 80px 32px 32px;
  overflow-y: auto;
  box-shadow: -4px 0 12px rgba(0,0,0,0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--brown);
  color: var(--paper-white);
  border: 2px solid var(--charcoal);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  padding: 16px 20px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-vintage);
  background-color: var(--cream);
  border: 2px solid var(--brown);
  border-left: 6px solid var(--burnt-orange);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background-color: var(--paper-white);
  border-left-color: var(--rust);
  transform: translateX(8px);
  box-shadow: 3px 3px 6px rgba(0,0,0,0.15);
}

/* ========================================
   HERO SECTION - VINTAGE POSTER STYLE
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--mustard) 0%, var(--burnt-orange) 100%);
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.03) 10px, rgba(0,0,0,0.03) 20px),
    linear-gradient(135deg, var(--mustard) 0%, var(--burnt-orange) 100%);
  padding: 80px 20px;
  border-bottom: 6px solid var(--brown);
  border-top: 6px solid var(--brown);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(250,248,243,0.95);
  padding: 48px 32px;
  border: 4px double var(--brown);
  box-shadow: 8px 8px 0px rgba(0,0,0,0.2);
}

.hero h1 {
  color: var(--primary-vintage);
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(210,105,30,0.3);
}

.subheadline {
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 32px;
  line-height: 1.6;
  font-style: italic;
}

/* ========================================
   BUTTONS - VINTAGE STYLE
   ======================================== */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--brown);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 4px;
  position: relative;
}

.btn-primary {
  background-color: var(--burnt-orange);
  color: var(--paper-white);
  box-shadow: 4px 4px 0px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  background-color: var(--rust);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: var(--tan);
  color: var(--charcoal);
  box-shadow: 4px 4px 0px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
  background-color: var(--cream);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
}

.btn-link {
  background-color: transparent;
  color: var(--burnt-orange);
  border: 2px solid var(--burnt-orange);
  padding: 10px 24px;
  font-size: 14px;
}

.btn-link:hover {
  background-color: var(--burnt-orange);
  color: var(--paper-white);
}

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

/* ========================================
   TRUST INDICATORS - VINTAGE STAMPS
   ======================================== */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.trust-indicators span {
  padding: 12px 20px;
  background-color: var(--paper-white);
  border: 3px dashed var(--brown);
  border-radius: 8px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-vintage);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* ========================================
   SECTIONS - VINTAGE PAPER STYLE
   ======================================== */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background-color: var(--paper-white);
  border: 2px solid var(--tan);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

section:nth-child(even) {
  background-color: var(--cream);
}

/* ========================================
   VALUE PROPOSITION - VINTAGE CARDS
   ======================================== */
.value-proposition h2 {
  text-align: center;
  color: var(--primary-vintage);
  margin-bottom: 16px;
}

.value-proposition > p {
  text-align: center;
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 48px;
  font-style: italic;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}

.value-cards .card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 24px;
  background-color: var(--paper-white);
  border: 3px solid var(--brown);
  border-radius: 0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.15);
}

.value-cards .card::before {
  content: '★';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: var(--burnt-orange);
  background-color: var(--paper-white);
  padding: 0 8px;
}

.value-cards .card:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.2);
  border-color: var(--burnt-orange);
}

.value-cards .card h3 {
  color: var(--brown);
  margin-bottom: 12px;
  font-size: 18px;
}

.value-cards .card p {
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.6;
}

/* STATISTICS - VINTAGE COUNTERS */
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin-top: 48px;
  padding: 32px;
  background-color: var(--tan);
  border: 4px double var(--brown);
  border-radius: 8px;
}

.statistics span {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-vintage);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 16px;
  background-color: var(--paper-white);
  border: 2px solid var(--brown);
  border-radius: 4px;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.1);
}

/* ========================================
   SERVICE CARDS - VINTAGE CATALOG STYLE
   ======================================== */
.service-grid,
.service-detail-card,
.case-study {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.service-detail-card,
.case-study {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: var(--paper-white);
  border: 3px solid var(--brown);
  border-left: 8px solid var(--burnt-orange);
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.service-card::before,
.service-detail-card::before {
  content: '◆';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  color: var(--mustard);
}

.service-card:hover,
.service-detail-card:hover,
.case-study:hover {
  transform: translateX(4px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
  border-left-color: var(--rust);
}

.service-card h3,
.service-detail-card h3,
.case-study h3 {
  color: var(--brown);
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.service-detail-card p,
.case-study p {
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.service-card .price,
.service-detail-card .price {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--burnt-orange);
  margin-top: 16px;
  margin-bottom: 16px;
}

.service-detail-card .tagline {
  font-style: italic;
  color: var(--olive);
  font-size: 16px;
  margin-bottom: 16px;
}

.service-detail-card .duration {
  font-size: 14px;
  color: var(--brown);
  font-weight: 700;
}

.service-detail-card h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--primary-vintage);
}

.service-detail-card ul {
  margin-left: 24px;
}

.service-detail-card ul li {
  padding-left: 8px;
  position: relative;
}

.service-detail-card ul li::marker {
  content: '▸ ';
  color: var(--burnt-orange);
}

/* ========================================
   TESTIMONIALS - VINTAGE QUOTE CARDS
   ======================================== */
.testimonials {
  background: linear-gradient(135deg, var(--cream) 0%, var(--tan) 100%);
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  color: var(--primary-vintage);
  margin-bottom: 48px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: var(--paper-white);
  border: 3px solid var(--brown);
  border-radius: 8px;
  position: relative;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 72px;
  color: var(--burnt-orange);
  opacity: 0.3;
  font-family: Georgia, serif;
}

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

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

.testimonial-card .author {
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  text-align: right;
  font-style: normal;
  margin-bottom: 0;
}

.testimonial-card .author::before {
  content: '— ';
}

.testimonials .rating {
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--burnt-orange);
  margin-top: 32px;
}

/* ========================================
   TIMELINE - VINTAGE JOURNEY
   ======================================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  padding-left: 48px;
  margin-top: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: repeating-linear-gradient(
    to bottom,
    var(--brown) 0px,
    var(--brown) 8px,
    transparent 8px,
    transparent 16px
  );
}

.timeline-item {
  position: relative;
  padding: 24px;
  background-color: var(--paper-white);
  border: 2px solid var(--brown);
  border-left: 6px solid var(--burnt-orange);
  border-radius: 4px;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.timeline-item::before {
  content: '●';
  position: absolute;
  left: -42px;
  top: 24px;
  font-size: 24px;
  color: var(--burnt-orange);
  background-color: var(--paper-white);
  border: 3px solid var(--brown);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 5px 5px 10px rgba(0,0,0,0.15);
}

.timeline-item h3 {
  font-size: 28px;
  color: var(--burnt-orange);
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--charcoal);
  font-size: 16px;
}

/* ========================================
   MISSION/VISION CARDS
   ======================================== */
.mission-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.mission-cards .card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: var(--paper-white);
  border: 4px double var(--brown);
  border-radius: 8px;
  position: relative;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.mission-cards .card h3 {
  color: var(--burnt-orange);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.mission-cards .card h4 {
  color: var(--primary-vintage);
  font-size: 22px;
  margin-bottom: 16px;
}

.mission-cards .card p {
  color: var(--charcoal);
  line-height: 1.8;
}

.values {
  padding: 32px;
  background-color: var(--tan);
  border: 3px solid var(--brown);
  border-radius: 8px;
  margin-top: 32px;
}

.values h3 {
  text-align: center;
  color: var(--primary-vintage);
  margin-bottom: 24px;
}

.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  list-style: none;
  margin-left: 0;
}

.values ul li {
  padding: 12px 24px;
  background-color: var(--paper-white);
  border: 2px solid var(--brown);
  border-radius: 24px;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* ========================================
   TEAM STATS & KEY FACTS
   ======================================== */
.team-stats,
.key-facts,
.impact-stats,
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.team-stats span,
.key-facts span,
.impact-stats span,
.stats span {
  padding: 16px 24px;
  background-color: var(--burnt-orange);
  color: var(--paper-white);
  border: 3px solid var(--brown);
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

/* ========================================
   CERTIFICATIONS GRID
   ======================================== */
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.cert {
  flex: 1 1 calc(25% - 24px);
  min-width: 180px;
  padding: 24px;
  background-color: var(--paper-white);
  border: 3px dashed var(--brown);
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-vintage);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.cert:hover {
  transform: rotate(5deg) scale(1.05);
  border-color: var(--burnt-orange);
  color: var(--burnt-orange);
}

/* ========================================
   PILLARS - VINTAGE COLUMNS
   ======================================== */
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}

.pillar {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 240px;
  padding: 32px;
  background-color: var(--paper-white);
  border: 4px solid var(--brown);
  border-top: 12px solid var(--burnt-orange);
  text-align: center;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
}

.pillar h3 {
  color: var(--brown);
  margin-bottom: 16px;
}

.pillar p {
  color: var(--charcoal);
  line-height: 1.6;
}

/* ========================================
   MEASURES LIST
   ======================================== */
.measures ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  list-style: none;
  margin-left: 0;
}

.measures ul li {
  padding: 16px 24px;
  background-color: var(--paper-white);
  border-left: 6px solid var(--accent-vintage);
  border: 2px solid var(--tan);
  border-left: 6px solid var(--accent-vintage);
  font-size: 16px;
  color: var(--charcoal);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.measures ul li::before {
  content: '✓ ';
  color: var(--accent-vintage);
  font-weight: 700;
  margin-right: 8px;
}

/* ========================================
   GOALS LIST
   ======================================== */
.goal-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.goal {
  padding: 32px;
  background-color: var(--paper-white);
  border: 3px solid var(--brown);
  border-left: 12px solid var(--burnt-orange);
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.goal:hover {
  transform: translateX(8px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
}

.goal h3 {
  font-size: 32px;
  color: var(--burnt-orange);
  margin-bottom: 12px;
}

.goal p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ========================================
   FEATURED PROJECT
   ======================================== */
.featured-project {
  background-color: var(--tan);
  padding: 60px 20px;
  border: 6px double var(--brown);
  margin-bottom: 60px;
}

.featured-project h2 {
  font-size: 36px;
  color: var(--primary-vintage);
  margin-bottom: 8px;
}

.featured-project .location {
  font-style: italic;
  color: var(--olive);
  margin-bottom: 24px;
}

.featured-project h3 {
  margin-top: 24px;
  color: var(--burnt-orange);
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.method {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: var(--paper-white);
  border: 3px solid var(--brown);
  text-align: center;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.method:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
}

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

.method p {
  color: var(--charcoal);
  line-height: 1.8;
}

.form-info {
  padding: 32px;
  background-color: var(--tan);
  border: 3px dashed var(--brown);
  border-radius: 8px;
  margin-top: 32px;
}

.form-info p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
}

/* FAQ SECTION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  padding: 24px;
  background-color: var(--paper-white);
  border: 2px solid var(--brown);
  border-left: 6px solid var(--burnt-orange);
  box-shadow: 3px 3px 0px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(4px);
  box-shadow: 5px 5px 0px rgba(0,0,0,0.15);
}

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

.faq-item p {
  color: var(--charcoal);
  line-height: 1.6;
}

/* ========================================
   CTA BANNER - VINTAGE POSTER
   ======================================== */
.cta-banner,
.cta {
  background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust) 100%);
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.05) 10px, rgba(0,0,0,0.05) 20px),
    linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust) 100%);
  padding: 60px 20px;
  text-align: center;
  border: 6px solid var(--brown);
  position: relative;
}

.cta-banner h2,
.cta h2 {
  color: var(--paper-white);
  margin-bottom: 16px;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

.cta-banner p,
.cta p {
  color: var(--paper-white);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .note {
  font-size: 14px;
  font-style: italic;
  margin-top: 24px;
  color: var(--cream);
}

/* ========================================
   CONFIRMATION & THANK YOU PAGES
   ======================================== */
.confirmation,
.next-steps,
.navigation,
.back-home {
  text-align: center;
  padding: 60px 20px;
}

.confirmation h1 {
  color: var(--burnt-orange);
  margin-bottom: 24px;
}

.next-steps h2 {
  color: var(--primary-vintage);
  margin-bottom: 32px;
}

.next-steps ol {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  list-style-position: inside;
}

.next-steps ol li {
  padding: 16px 24px;
  background-color: var(--paper-white);
  border-left: 6px solid var(--burnt-orange);
  margin-bottom: 16px;
  border: 2px solid var(--tan);
  border-left: 6px solid var(--burnt-orange);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.suggestion-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
}

.suggestion-nav a {
  padding: 16px 24px;
  background-color: var(--paper-white);
  border: 2px solid var(--brown);
  border-left: 6px solid var(--burnt-orange);
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.suggestion-nav a:hover {
  transform: translateX(8px);
  border-left-color: var(--rust);
  box-shadow: 4px 4px 6px rgba(0,0,0,0.15);
}

/* ========================================
   LEGAL CONTENT
   ======================================== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--paper-white);
  border: 2px solid var(--tan);
  border-radius: 8px;
}

.legal-content h1 {
  color: var(--primary-vintage);
  border-bottom: 4px double var(--brown);
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: var(--brown);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h3 {
  color: var(--olive);
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

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

/* ========================================
   FOOTER - VINTAGE NEWSPAPER FOOTER
   ======================================== */
footer {
  background: linear-gradient(180deg, var(--brown) 0%, var(--charcoal) 100%);
  color: var(--cream);
  padding: 60px 20px 20px;
  border-top: 6px solid var(--burnt-orange);
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 48px);
  min-width: 240px;
}

.footer-section h3 {
  color: var(--mustard);
  font-size: 20px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--burnt-orange);
  padding-bottom: 8px;
}

.footer-section p {
  color: var(--cream);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: var(--cream);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px dotted var(--tan);
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--mustard);
  padding-left: 8px;
  border-bottom-color: var(--mustard);
}

.footer-bottom {
  border-top: 2px solid var(--burnt-orange);
  padding-top: 24px;
  text-align: center;
}

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

.footer-legal a {
  color: var(--tan);
  font-size: 12px;
  padding: 4px 8px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: var(--mustard);
  border-bottom-color: var(--mustard);
}

.footer-bottom p {
  color: var(--tan);
  font-size: 12px;
  margin-bottom: 0;
}

/* ========================================
   COOKIE CONSENT BANNER - VINTAGE STAMP
   ======================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--brown) 0%, var(--charcoal) 100%);
  color: var(--cream);
  padding: 24px 20px;
  border-top: 4px solid var(--burnt-orange);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
  z-index: 1500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

#cookie-banner.hidden {
  display: none;
}

#cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--cream);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-all-cookies {
  background-color: var(--burnt-orange);
  color: var(--paper-white);
}

#accept-all-cookies:hover {
  background-color: var(--rust);
  transform: scale(1.05);
}

#reject-all-cookies {
  background-color: transparent;
  color: var(--cream);
}

#reject-all-cookies:hover {
  background-color: rgba(255,255,255,0.1);
}

#cookie-settings {
  background-color: var(--tan);
  color: var(--charcoal);
  border-color: var(--tan);
}

#cookie-settings:hover {
  background-color: var(--cream);
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.hidden {
  display: none;
}

.cookie-modal-content {
  background-color: var(--paper-white);
  border: 4px solid var(--brown);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 8px 8px 0px rgba(0,0,0,0.3);
}

.cookie-modal-content h2 {
  color: var(--primary-vintage);
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: var(--cream);
  border: 2px solid var(--tan);
  border-left: 6px solid var(--burnt-orange);
  border-radius: 4px;
}

.cookie-category h3 {
  color: var(--brown);
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-category p {
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

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

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

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

.cookie-toggle label {
  font-size: 14px;
  color: var(--charcoal);
  cursor: pointer;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px 24px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--brown);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#save-cookie-preferences {
  background-color: var(--burnt-orange);
  color: var(--paper-white);
}

#save-cookie-preferences:hover {
  background-color: var(--rust);
  transform: scale(1.02);
}

#close-cookie-modal {
  background-color: var(--tan);
  color: var(--charcoal);
}

#close-cookie-modal:hover {
  background-color: var(--cream);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-content {
    padding: 32px 20px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Cards */
  .value-cards .card,
  .service-card,
  .mission-cards .card,
  .pillar,
  .testimonial-card,
  .method {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 32px;
  }
  
  .timeline::before {
    left: 8px;
  }
  
  .timeline-item::before {
    left: -34px;
  }
  
  /* Statistics */
  .statistics,
  .team-stats,
  .key-facts,
  .impact-stats,
  .stats,
  .trust-indicators {
    flex-direction: column;
  }
  
  .statistics span,
  .team-stats span,
  .key-facts span,
  .impact-stats span,
  .stats span,
  .trust-indicators span {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-cards .card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .pillar {
    flex: 1 1 calc(50% - 32px);
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-banner,
  .cta {
    display: none !important;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}

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

.hidden {
  display: none !important;
}

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

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */
*:focus {
  outline: 3px solid var(--burnt-orange);
  outline-offset: 2px;
}

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

/* Smooth Animations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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