/* ============================================
   FABLED GUARD - MODERN BOLD DESIGN SYSTEM
   CSS Stylesheet for All Pages
   ============================================ */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - BOLD MODERN STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #2D1810;
  margin-bottom: 24px;
}

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

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

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.8;
}

a {
  color: #A33820;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #2D1810;
  transform: translateY(-2px);
}

strong {
  font-weight: 700;
  color: #2D1810;
}

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

li {
  margin-bottom: 12px;
  font-size: 18px;
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background: #A33820;
  color: #ffffff;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(163, 56, 32, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #2D1810;
  transform: scale(1.1);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #2D1810;
  z-index: 1002;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  background: rgba(255, 244, 224, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: #A33820;
  border-left-color: #FFF4E0;
  transform: translateX(8px);
}

/* HEADER */
.site-header {
  background: #ffffff;
  padding: 24px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 56px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 700;
  color: #2D1810;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #A33820;
  border-bottom-color: #A33820;
  transform: translateY(0);
}

/* BUTTONS - BOLD STYLE */
.cta-button,
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button,
.btn-primary {
  background: #A33820;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(163, 56, 32, 0.3);
}

.cta-button:hover,
.btn-primary:hover {
  background: #2D1810;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 24, 16, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: #A33820;
  border-color: #A33820;
  box-shadow: 0 4px 16px rgba(163, 56, 32, 0.2);
}

.btn-secondary:hover {
  background: #A33820;
  color: #ffffff;
  transform: translateY(-4px);
}

.btn-link {
  background: transparent;
  color: #A33820;
  padding: 12px 24px;
  font-size: 16px;
  border-bottom: 3px solid #A33820;
  border-radius: 0;
}

.btn-link:hover {
  color: #2D1810;
  border-bottom-color: #2D1810;
  transform: translateX(8px);
}

/* HERO SECTION - BOLD IMPACT */
.hero {
  background: linear-gradient(135deg, #2D1810 0%, #A33820 100%);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 244, 224, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 244, 224, 0.08);
  border-radius: 50%;
  z-index: 0;
}

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

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

.hero-subtitle {
  font-size: 22px;
  color: #FFF4E0;
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #A33820 0%, #2D1810 100%);
  padding: 80px 20px 60px;
  text-align: center;
  color: #ffffff;
}

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

.page-hero p {
  font-size: 20px;
  color: #FFF4E0;
  max-width: 700px;
  margin: 0 auto 16px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 32px;
  color: #FFF4E0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: #FFF4E0;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.last-updated {
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
}

/* SECTIONS - BOLD SPACING */
.section,
.value-proposition,
.featured-services,
.process,
.testimonials,
.about-preview,
.cta-final,
.services-full,
.about-story,
.mission-values,
.achievements,
.process-overview,
.process-steps,
.whats-included,
.blog-content,
.contact-options,
.contact-form-section,
.visit-info,
.faq-preview,
.legal-content,
.thank-you-hero,
.next-steps,
.while-waiting,
.contact-reminder,
.thank-you-actions,
.contact-info,
.cta-section {
  padding: 80px 20px;
  margin-bottom: 0;
}

.section:nth-child(even),
.value-proposition,
.testimonials,
.process-steps,
.contact-form-section,
.legal-content {
  background: #FFF4E0;
}

.section-intro,
.section-subtitle {
  font-size: 20px;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* GRIDS - FLEXBOX ONLY */
.value-grid,
.services-grid,
.testimonials-grid,
.stats-grid,
.footer-grid,
.services-grid-full,
.values-grid,
.includes-grid,
.blog-grid,
.contact-grid,
.faq-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.value-grid,
.testimonials-grid,
.stats-grid,
.footer-grid,
.values-grid,
.includes-grid,
.contact-grid,
.faq-grid,
.actions-grid {
  justify-content: space-between;
}

.value-item,
.stat-item,
.footer-column,
.value-item,
.include-category,
.contact-option,
.faq-item,
.action-item {
  flex: 1 1 280px;
  min-width: 0;
}

/* CARDS - BOLD DESIGN */
.service-card,
.testimonial-card,
.service-card-full,
.post-card,
.featured-post {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border-left: 6px solid #A33820;
  margin-bottom: 32px;
}

.service-card:hover,
.service-card-full:hover,
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(163, 56, 32, 0.2);
  border-left-color: #2D1810;
}

.service-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card-full {
  flex: 1 1 100%;
  margin-bottom: 40px;
}

.service-card h3,
.service-card-full h2 {
  color: #2D1810;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-meta,
.post-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.duration,
.price {
  font-size: 16px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.duration {
  background: #FFF4E0;
  color: #2D1810;
}

.price {
  background: #A33820;
  color: #ffffff;
  font-size: 20px;
}

.service-includes {
  list-style: none;
  padding-left: 0;
  margin-top: 24px;
}

.service-includes li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-weight: 600;
  color: #2D1810;
}

.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #A33820;
  font-weight: 900;
  font-size: 20px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonial-card {
  background: #ffffff;
  border-left-color: #2D1810;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
}

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

.testimonial-author {
  font-weight: 800;
  color: #A33820;
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* PROCESS STEPS - GEOMETRIC */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
}

.step,
.step-detail {
  flex: 1 1 calc(25% - 30px);
  min-width: 240px;
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover,
.step-detail:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(163, 56, 32, 0.15);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #A33820 0%, #2D1810 100%);
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(163, 56, 32, 0.3);
}

.step h3,
.step-detail h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #2D1810;
}

.step-detail {
  flex: 1 1 100%;
  text-align: left;
  padding: 48px;
  margin-bottom: 40px;
}

.step-detail h2 {
  font-size: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* STATS - BOLD NUMBERS */
.stats-grid {
  text-align: center;
  margin-top: 64px;
}

.stat-item {
  padding: 32px 24px;
  background: linear-gradient(135deg, #A33820 0%, #2D1810 100%);
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(163, 56, 32, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 24, 16, 0.4);
}

.stat-item strong {
  display: block;
  font-size: 56px;
  font-weight: 900;
  color: #FFF4E0;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-item p {
  font-size: 16px;
  color: #FFF4E0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
}

/* MILESTONES & VALUES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: space-between;
}

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  border-top: 6px solid #A33820;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.milestone strong {
  display: block;
  font-size: 36px;
  color: #A33820;
  margin-bottom: 12px;
}

.milestone p {
  font-size: 16px;
  color: #2D1810;
  font-weight: 600;
  margin: 0;
}

.mission-statement {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #2D1810;
  max-width: 800px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

/* BLOG */
.blog-categories {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.blog-categories a {
  padding: 12px 28px;
  background: #ffffff;
  border: 3px solid #A33820;
  border-radius: 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.blog-categories a:hover,
.blog-categories a:first-child {
  background: #A33820;
  color: #ffffff;
  transform: translateY(-2px);
}

.featured-post {
  border-left-color: #2D1810;
  border-width: 8px;
  margin-bottom: 56px;
}

.featured-label {
  display: inline-block;
  background: #A33820;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.post-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
}

.post-meta {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  gap: 16px;
}

/* CONTACT & FORMS */
.contact-option,
.faq-item {
  padding: 40px 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-option:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(163, 56, 32, 0.15);
}

.contact-option h3,
.faq-item h3 {
  color: #A33820;
  font-size: 24px;
  margin-bottom: 16px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-note {
  background: #FFF4E0;
  padding: 24px;
  border-radius: 12px;
  border-left: 6px solid #A33820;
  margin-bottom: 32px;
  font-weight: 600;
  color: #2D1810;
}

.contact-details {
  padding: 32px;
  background: #f8f8f8;
  border-radius: 12px;
  margin-top: 24px;
}

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

.visit-benefits {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  margin: 32px 0;
  border-left: 6px solid #A33820;
}

.visit-benefits li {
  padding-left: 32px;
  position: relative;
}

.visit-benefits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #A33820;
  font-weight: 900;
  font-size: 20px;
}

/* THANK YOU PAGE */
.thank-you-hero,
.thank-you-actions {
  text-align: center;
  padding: 120px 20px 80px;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  color: #ffffff;
  font-size: 64px;
  border-radius: 50%;
  margin-bottom: 32px;
  box-shadow: 0 12px 40px rgba(76, 175, 80, 0.4);
}

/* TRUST ELEMENTS */
.trust-elements {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-elements span {
  padding: 12px 24px;
  background: rgba(255, 244, 224, 0.5);
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2D1810;
}

/* FOOTER - BOLD STYLE */
.site-footer {
  background: #2D1810;
  color: #FFF4E0;
  padding: 80px 20px 40px;
}

.footer-grid {
  gap: 48px;
  margin-bottom: 56px;
}

.footer-column h4 {
  color: #FFF4E0;
  font-size: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid #A33820;
  padding-bottom: 12px;
}

.footer-column a {
  display: block;
  color: #FFF4E0;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: #ffffff;
  padding-left: 12px;
}

.footer-column p {
  color: #FFF4E0;
  font-size: 16px;
  line-height: 1.8;
}

.footer-logo {
  height: 64px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 244, 224, 0.2);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #FFF4E0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: #ffffff;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2D1810;
  color: #ffffff;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent p {
  flex: 1 1 400px;
  margin: 0;
  font-size: 16px;
  color: #FFF4E0;
}

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

.cookie-buttons button {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background: #A33820;
  color: #ffffff;
  border-color: #A33820;
}

.cookie-accept:hover {
  background: #ffffff;
  color: #A33820;
}

.cookie-reject,
.cookie-settings {
  background: transparent;
  color: #FFF4E0;
  border-color: #FFF4E0;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background: #FFF4E0;
  color: #2D1810;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h3 {
  color: #2D1810;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #FFF4E0;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-category label {
  font-weight: 700;
  color: #2D1810;
  flex: 1;
}

.cookie-toggle {
  width: 60px;
  height: 32px;
  background: #ccc;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #A33820;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 32px;
}

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

.cookie-save,
.cookie-modal-close {
  flex: 1;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-save {
  background: #A33820;
  color: #ffffff;
}

.cookie-save:hover {
  background: #2D1810;
}

.cookie-modal-close {
  background: #e0e0e0;
  color: #2D1810;
}

.cookie-modal-close:hover {
  background: #d0d0d0;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop nav */
  .main-nav,
  .header-content .cta-button {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  p, li {
    font-size: 16px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Section padding */
  .section,
  .value-proposition,
  .featured-services,
  .process,
  .testimonials,
  .about-preview,
  .cta-final,
  .services-full,
  .about-story,
  .mission-values,
  .achievements,
  .process-overview,
  .process-steps,
  .whats-included,
  .blog-content,
  .contact-options,
  .contact-form-section,
  .visit-info,
  .faq-preview,
  .legal-content,
  .thank-you-hero,
  .cta-section {
    padding: 60px 20px;
  }
  
  /* Grid adjustments */
  .value-item,
  .service-card,
  .testimonial-card,
  .stat-item,
  .post-card,
  .contact-option,
  .faq-item,
  .action-item {
    flex: 1 1 100%;
  }
  
  .step,
  .milestone {
    flex: 1 1 calc(50% - 16px);
    min-width: 140px;
  }
  
  /* Stats */
  .stat-item strong {
    font-size: 42px;
  }
  
  /* Footer */
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Form wrapper */
  .form-wrapper {
    padding: 32px 24px;
  }
  
  /* Step detail */
  .step-detail {
    padding: 32px 24px;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  /* Success icon */
  .success-icon {
    width: 100px;
    height: 100px;
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .step,
  .milestone {
    flex: 1 1 100%;
  }
  
  .step-number {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }
  
  .btn-primary,
  .btn-secondary,
  .cta-button {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-save,
  .cookie-modal-close {
    width: 100%;
  }
}

/* PRINT STYLES */
@media print {
  .site-header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .hero-cta,
  .cta-section,
  .cta-final,
  .site-footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  
  h1, h2, h3, h4 {
    page-break-after: avoid;
    color: #000;
  }
  
  a {
    text-decoration: underline;
    color: #000;
  }
}