/* ============================================
   KALEIDO VEIL - VINTAGE RETRO STYLE CSS
   Design Style: Vintage & Retro-Inspired
   ============================================ */

/* 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: #F4E8D8;
  overflow-x: hidden;
}

/* VINTAGE RETRO COLOR PALETTE */
:root {
  --primary: #C41E3A;
  --secondary: #2B5F9E;
  --accent: #F4E8D8;
  --vintage-cream: #F9F5ED;
  --vintage-brown: #8B6F47;
  --vintage-teal: #5B8A8A;
  --vintage-mustard: #D4A574;
  --text-dark: #2C1810;
  --text-light: #6B5D52;
}

/* TYPOGRAPHY - VINTAGE STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--vintage-mustard);
  padding-bottom: 12px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary);
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 16px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

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

/* BUTTONS - VINTAGE STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
  position: relative;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(0,0,0,0.3);
}

.btn-primary {
  background-color: var(--primary);
  color: #FFF;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #A01829;
  border-color: #A01829;
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--vintage-cream);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: #FFF;
  text-decoration: none;
}

.btn-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

/* HEADER - VINTAGE DESIGN */
header {
  background: linear-gradient(135deg, var(--vintage-cream) 0%, var(--accent) 100%);
  padding: 20px 0;
  border-bottom: 4px solid var(--vintage-mustard);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

.tagline {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
}

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

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 12px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.phone-link {
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 8px 16px;
  background: var(--vintage-cream);
  border: 2px solid var(--secondary);
  border-radius: 4px;
}

.phone-link:hover {
  background: var(--secondary);
  color: #FFF;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary);
  color: #FFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.3);
}

.mobile-menu-toggle:hover {
  background: var(--secondary);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--vintage-cream);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 20px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  border-left: 4px solid var(--vintage-mustard);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: #FFF;
  border: none;
  padding: 10px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.mobile-menu-close:hover {
  background: var(--secondary);
}

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

.mobile-nav a {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-left: 4px solid var(--primary);
  background: var(--accent);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background: var(--primary);
  color: #FFF;
  padding-left: 24px;
  text-decoration: none;
}

/* HERO SECTION - VINTAGE POSTCARD STYLE */
.hero {
  background: linear-gradient(135deg, var(--vintage-teal) 0%, var(--secondary) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  border-bottom: 6px solid var(--vintage-mustard);
  box-shadow: inset 0 0 100px rgba(0,0,0,0.1);
}

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

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--vintage-cream);
  margin-bottom: 32px;
  font-style: italic;
}

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

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--vintage-cream) 100%);
  padding: 60px 20px 40px;
  border-bottom: 4px solid var(--vintage-mustard);
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--secondary);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-subtitle {
  font-size: 18px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 12px;
}

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

/* TRUST INDICATORS */
.trust-indicators {
  padding: 60px 20px;
  background: var(--vintage-cream);
  border-top: 4px solid var(--vintage-mustard);
  border-bottom: 4px solid var(--vintage-mustard);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  align-items: flex-start;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: #FFF;
  border: 3px solid var(--vintage-mustard);
  border-radius: 8px;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
  min-width: 200px;
  flex: 1 1 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Georgia', serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FEATURED SERVICES */
.featured-services {
  padding: 60px 20px;
  background: var(--accent);
}

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

.service-card {
  background: #FFF;
  padding: 32px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(139, 111, 71, 0.1) 10px,
    rgba(139, 111, 71, 0.1) 20px
  );
  border-radius: 8px;
  z-index: -1;
}

.service-card h3 {
  color: var(--primary);
  font-size: 22px;
  border-bottom: 2px solid var(--vintage-mustard);
  padding-bottom: 12px;
}

.service-card p {
  flex-grow: 1;
  color: var(--text-light);
}

.service-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Georgia', serif;
  text-align: center;
  padding: 12px;
  background: var(--vintage-cream);
  border: 2px dashed var(--vintage-brown);
  border-radius: 4px;
}

/* SERVICES DETAILED */
.services-listing {
  padding: 60px 20px;
}

.services-grid-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.service-card-detailed {
  background: #FFF;
  padding: 32px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.service-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.service-meta span {
  padding: 6px 12px;
  background: var(--vintage-cream);
  border: 2px solid var(--vintage-mustard);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-highlights li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
}

.service-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
  border-top: 2px dashed var(--vintage-mustard);
}

/* VALUE PROPOSITION */
.value-proposition {
  padding: 60px 20px;
  background: var(--vintage-cream);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.feature-item {
  background: #FFF;
  padding: 32px;
  border: 3px solid var(--vintage-mustard);
  border-radius: 8px;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.feature-item h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.feature-item p {
  color: var(--text-light);
  font-size: 15px;
}

/* TESTIMONIALS - VINTAGE CARD STYLE */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--vintage-cream) 100%);
}

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

.testimonial-card {
  background: #FFF;
  padding: 32px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  box-shadow: 6px 6px 0px rgba(0,0,0,0.15);
  flex: 1 1 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  padding-left: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  border-left: 4px solid var(--primary);
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: 16px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

/* CTA BANNER */
.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  border-top: 6px solid var(--vintage-mustard);
  border-bottom: 6px solid var(--vintage-mustard);
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.05) 20px,
    rgba(255,255,255,0.05) 40px
  );
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: #FFF;
  font-size: 36px;
  margin-bottom: 16px;
  border: none;
  display: block;
}

.cta-content p {
  color: var(--vintage-cream);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* STORY SECTION */
.story-section {
  padding: 60px 20px;
  background: var(--vintage-cream);
}

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

.story-section p {
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.8;
}

blockquote {
  border-left: 6px solid var(--primary);
  padding: 24px;
  margin: 32px 0;
  background: #FFF;
  font-style: italic;
  font-size: 20px;
  color: var(--text-dark);
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

/* MISSION SECTION */
.mission-section {
  padding: 60px 20px;
}

.mission-statement {
  font-size: 24px;
  font-style: italic;
  color: var(--primary);
  text-align: center;
  padding: 32px;
  background: var(--vintage-cream);
  border: 3px solid var(--vintage-mustard);
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-item {
  background: #FFF;
  padding: 24px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  flex: 1 1 220px;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
  text-align: center;
}

.value-item h3 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* APPROACH SECTION */
.approach-section {
  padding: 60px 20px;
  background: var(--accent);
}

.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.approach-item {
  background: #FFF;
  padding: 20px;
  border: 2px solid var(--vintage-mustard);
  border-radius: 4px;
  flex: 1 1 280px;
  color: var(--text-dark);
  font-size: 15px;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.1);
  position: relative;
  padding-left: 50px;
}

.approach-item::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
}

/* ACHIEVEMENTS */
.achievements-section {
  padding: 60px 20px;
  background: var(--vintage-cream);
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.achievement-item {
  text-align: center;
  padding: 32px;
  background: #FFF;
  border: 3px solid var(--primary);
  border-radius: 8px;
  flex: 1 1 200px;
  box-shadow: 5px 5px 0px rgba(0,0,0,0.15);
}

.achievement-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Georgia', serif;
  margin-bottom: 12px;
}

.achievement-item p {
  color: var(--text-light);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* GALLERY */
.gallery-intro {
  padding: 40px 20px;
  background: var(--vintage-cream);
}

.gallery-categories {
  padding: 40px 20px;
}

.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.category-btn {
  padding: 10px 20px;
  background: var(--vintage-cream);
  border: 2px solid var(--vintage-brown);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-btn:hover,
.category-btn.active {
  background: var(--primary);
  color: #FFF;
  border-color: var(--primary);
}

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

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

.gallery-content p {
  margin-bottom: 32px;
}

/* BLOG */
.blog-categories {
  padding: 40px 20px;
  background: var(--vintage-cream);
}

.featured-post {
  padding: 60px 20px;
}

.featured-card {
  background: #FFF;
  padding: 40px;
  border: 4px solid var(--primary);
  border-radius: 8px;
  box-shadow: 8px 8px 0px rgba(0,0,0,0.15);
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: var(--primary);
  color: #FFF;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.post-meta {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
  font-style: italic;
}

.blog-grid-section {
  padding: 60px 20px;
  background: var(--accent);
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.blog-card {
  background: #FFF;
  padding: 28px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(0,0,0,0.12);
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* CONTACT */
.contact-methods {
  padding: 60px 20px;
  background: var(--vintage-cream);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.contact-method {
  background: #FFF;
  padding: 32px;
  border: 3px solid var(--vintage-mustard);
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(0,0,0,0.12);
  flex: 1 1 280px;
  text-align: center;
}

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

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

.form-placeholder {
  background: var(--vintage-cream);
  padding: 40px;
  border: 3px dashed var(--vintage-brown);
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.form-placeholder ul {
  margin-left: 24px;
  margin-top: 16px;
}

.form-placeholder li {
  margin-bottom: 8px;
  color: var(--text-light);
}

/* OFFICE INFO */
.office-info {
  padding: 60px 20px;
  background: var(--accent);
}

.office-details {
  background: #FFF;
  padding: 32px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(0,0,0,0.12);
  max-width: 800px;
  margin: 0 auto;
}

.office-details p {
  margin-bottom: 16px;
}

/* FAQ */
.faq-contact {
  padding: 60px 20px;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: space-between;
}

.faq-item {
  background: var(--vintage-cream);
  padding: 24px;
  border: 2px solid var(--vintage-mustard);
  border-radius: 8px;
  flex: 1 1 280px;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.1);
}

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

/* TRIP INCLUDES */
.trip-includes {
  padding: 60px 20px;
  background: var(--vintage-cream);
}

.includes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.include-item {
  background: #FFF;
  padding: 20px;
  border: 2px solid var(--vintage-mustard);
  border-radius: 4px;
  flex: 1 1 250px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 3px 3px 0px rgba(0,0,0,0.1);
  position: relative;
  padding-left: 50px;
}

.include-item::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
}

/* BOOKING INFO */
.booking-info {
  padding: 60px 20px;
}

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

.step-item {
  background: var(--vintage-cream);
  padding: 28px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  flex: 1 1 220px;
  text-align: center;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Georgia', serif;
  box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.step-item p {
  color: var(--text-dark);
  font-weight: 600;
}

/* NEWSLETTER */
.newsletter-section {
  padding: 60px 20px;
  background: var(--vintage-cream);
}

.newsletter-box {
  background: #FFF;
  padding: 40px;
  border: 4px solid var(--vintage-mustard);
  border-radius: 8px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 6px 6px 0px rgba(0,0,0,0.12);
}

.newsletter-form-placeholder {
  margin-top: 24px;
  padding: 24px;
  background: var(--accent);
  border: 2px dashed var(--vintage-brown);
  border-radius: 4px;
}

/* SOCIAL */
.social-feed {
  padding: 60px 20px;
}

.social-handle {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 16px;
}

.user-content-invite {
  padding: 60px 20px;
  background: var(--accent);
  text-align: center;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--vintage-teal) 0%, var(--secondary) 100%);
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--primary);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  box-shadow: 6px 6px 0px rgba(0,0,0,0.2);
}

.thank-you-hero h1 {
  color: #FFF;
  margin-bottom: 16px;
}

.thank-you-subtitle {
  color: var(--vintage-cream);
  font-size: 18px;
  margin-bottom: 32px;
}

.next-steps {
  padding: 60px 20px;
}

.note {
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  background: var(--vintage-cream);
  border: 2px solid var(--vintage-mustard);
  border-radius: 4px;
}

.while-waiting {
  padding: 60px 20px;
  background: var(--accent);
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.suggestion-item {
  background: #FFF;
  padding: 28px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  flex: 1 1 280px;
  text-align: center;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

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

.contact-info {
  background: var(--vintage-cream);
  padding: 32px;
  border: 3px solid var(--vintage-mustard);
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.social-links {
  padding: 60px 20px;
  background: var(--accent);
  text-align: center;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
  background: #FFF;
  padding: 40px;
  border: 3px solid var(--vintage-brown);
  border-radius: 8px;
  box-shadow: 5px 5px 0px rgba(0,0,0,0.1);
}

.text-section h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary);
}

.text-section ul {
  margin-left: 32px;
  margin-bottom: 16px;
}

.text-section li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.key-terms {
  max-width: 900px;
  margin: 32px auto 0;
  background: var(--vintage-cream);
  padding: 32px;
  border: 3px solid var(--vintage-mustard);
  border-radius: 8px;
  box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.key-terms h2 {
  color: var(--secondary);
  margin-bottom: 20px;
}

.key-terms ul {
  margin-left: 24px;
}

.key-terms li {
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-terms {
  padding: 60px 20px;
  background: var(--accent);
  text-align: center;
}

.response-promise {
  padding: 60px 20px;
  background: var(--vintage-cream);
}

.promise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.promise-item {
  background: #FFF;
  padding: 20px;
  border: 2px solid var(--vintage-mustard);
  border-radius: 4px;
  flex: 1 1 250px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 3px 3px 0px rgba(0,0,0,0.1);
}

/* FOOTER - VINTAGE DESIGN */
footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1A0F08 100%);
  color: var(--vintage-cream);
  padding: 60px 20px 30px;
  border-top: 6px solid var(--vintage-mustard);
}

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

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

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

.footer-column p {
  color: var(--vintage-cream);
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: var(--vintage-cream);
  text-decoration: none;
  transition: all 0.3s ease;
  padding-left: 12px;
  border-left: 2px solid transparent;
}

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

.footer-bottom {
  border-top: 2px solid rgba(244, 232, 216, 0.2);
  padding-top: 30px;
  text-align: center;
}

.footer-legal p {
  color: var(--vintage-cream);
  margin-bottom: 16px;
}

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

.legal-nav a {
  color: var(--vintage-cream);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-nav a:hover {
  color: var(--vintage-mustard);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--vintage-cream);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 1500;
  border-top: 4px solid var(--vintage-mustard);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  color: var(--vintage-cream);
  margin-bottom: 8px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: var(--primary);
  color: #FFF;
  border-color: var(--primary);
}

.cookie-btn-accept:hover {
  background: #A01829;
}

.cookie-btn-reject {
  background: transparent;
  color: var(--vintage-cream);
  border-color: var(--vintage-cream);
}

.cookie-btn-reject:hover {
  background: var(--vintage-cream);
  color: var(--text-dark);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--vintage-mustard);
  border-color: var(--vintage-mustard);
}

.cookie-btn-settings:hover {
  background: var(--vintage-mustard);
  color: var(--text-dark);
}

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

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

.cookie-modal-content {
  background: var(--vintage-cream);
  padding: 40px;
  border: 4px solid var(--vintage-mustard);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 8px 8px 0px rgba(0,0,0,0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #FFF;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #FFF;
  border: 2px solid var(--vintage-brown);
  border-radius: 4px;
}

.cookie-category h3 {
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-switch.active {
  background: var(--primary);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

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

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Mobile Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-content {
    flex-direction: column;
    align-items: center;
  }
  
  .header-cta {
    width: 100%;
    justify-content: center;
  }
  
  /* Mobile Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Mobile Sections */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Mobile Grids */
  .stats-grid,
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .values-grid,
  .approach-grid,
  .achievements-grid,
  .contact-grid,
  .faq-grid,
  .includes-grid,
  .steps-grid,
  .blog-grid,
  .suggestions-grid,
  .promise-grid {
    flex-direction: column;
  }
  
  .service-card,
  .service-card-detailed,
  .feature-item,
  .testimonial-card,
  .blog-card {
    flex: 1 1 100%;
  }
  
  /* Mobile Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Mobile Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Mobile Modal */
  .cookie-modal-content {
    padding: 24px;
    margin: 20px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .achievement-number {
    font-size: 42px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .header-cta,
  .cta-banner {
    display: none;
  }
  
  body {
    background: #FFF;
  }
  
  .btn {
    border: 1px solid #000;
  }
}

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

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

/* ACCESSIBILITY */
.btn:focus,
.category-btn:focus,
.cookie-btn:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* SELECTION */
::selection {
  background: var(--primary);
  color: #FFF;
}

::-moz-selection {
  background: var(--primary);
  color: #FFF;
}