/* ============================================
   CyberLume Grid - Elegant Classic Design
   CSS Stylesheet
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2C2C2C;
  background-color: #F8F6F3;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ============================================
   TYPOGRAPHY - ELEGANT CLASSIC STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 24px;
}

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

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  color: #4A4A4A;
}

strong {
  font-weight: 600;
  color: #1A1A1A;
}

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

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

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

/* ============================================
   HEADER & NAVIGATION - ELEGANT CLASSIC
   ============================================ */

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #D4C5B9;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-menu li a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: #3A3A3A;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  color: #8B6F47;
  border-bottom-color: #8B6F47;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #8B6F47;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #6F5837;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  color: #8B6F47;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #3A3A3A;
  padding: 12px 0;
  border-bottom: 1px solid #E8E0D5;
  transition: all 0.3s ease;
}

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

/* ============================================
   BUTTONS - ELEGANT CLASSIC STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: #8B6F47;
  color: #FFFFFF;
  border-color: #8B6F47;
}

.btn-primary:hover {
  background-color: #6F5837;
  border-color: #6F5837;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 111, 71, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #8B6F47;
  border-color: #8B6F47;
}

.btn-secondary:hover {
  background-color: #8B6F47;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 111, 71, 0.2);
}

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

/* ============================================
   HERO SECTION - ELEGANT CLASSIC
   ============================================ */

.hero {
  background: linear-gradient(135deg, #F8F6F3 0%, #E8E0D5 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #D4C5B9;
}

.hero h1 {
  font-size: 56px;
  color: #1A1A1A;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subheadline {
  font-size: 20px;
  color: #5A5A5A;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.trust-badges span {
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #6A6A6A;
  padding: 8px 20px;
  background-color: #FFFFFF;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
  font-weight: 500;
}

/* ============================================
   PAGE HERO - ELEGANT CLASSIC
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #F8F6F3 0%, #E8E0D5 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #D4C5B9;
}

.page-hero h1 {
  font-size: 48px;
  color: #1A1A1A;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ============================================
   METRICS & STATS - ELEGANT CLASSIC
   ============================================ */

.value-proposition,
.stats-highlight {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.value-proposition h2,
.stats-highlight h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #1A1A1A;
}

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

.metric-card,
.stat-box {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background-color: #F8F6F3;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.metric-card:hover,
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #8B6F47;
}

.metric-number,
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #8B6F47;
  margin-bottom: 12px;
}

.metric-label,
.stat-label {
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  color: #3A3A3A;
  margin-bottom: 8px;
}

.metric-card p,
.stat-box p {
  font-size: 14px;
  color: #6A6A6A;
}

/* ============================================
   SERVICES SECTIONS - ELEGANT CLASSIC
   ============================================ */

.services-overview,
.services-detail {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.services-overview h2,
.services-detail h2 {
  text-align: center;
  margin-bottom: 20px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #6A6A6A;
  max-width: 700px;
  margin: 0 auto 60px;
}

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

.service-card,
.service-detail-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  padding: 40px 32px;
  background-color: #F8F6F3;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.service-card:hover,
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #8B6F47;
}

.service-card h3,
.service-detail-card h2 {
  font-size: 24px;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.service-card p,
.service-detail-card p {
  color: #5A5A5A;
  flex-grow: 1;
}

.service-card .price,
.service-meta .price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #8B6F47;
  margin: 16px 0;
}

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

.service-meta .duration {
  font-size: 15px;
  color: #6A6A6A;
  background-color: #FFFFFF;
  padding: 8px 16px;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
}

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

.service-detail-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4A4A4A;
  list-style: none;
}

.service-detail-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B6F47;
  font-weight: bold;
}

/* ============================================
   TESTIMONIALS - ELEGANT CLASSIC
   ============================================ */

.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #F8F6F3 0%, #E8E0D5 100%);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #1A1A1A;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.testimonial-card .quote {
  font-size: 17px;
  font-style: italic;
  color: #2C2C2C;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #E8E0D5;
  padding-top: 20px;
}

.testimonial-card .author strong {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #1A1A1A;
}

.testimonial-card .author span {
  font-size: 14px;
  color: #6A6A6A;
}

/* ============================================
   CONTENT SECTIONS - ELEGANT CLASSIC
   ============================================ */

.mission-vision,
.company-story,
.implementation,
.solutions,
.case-studies {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.mission-vision h2,
.company-story h2,
.implementation h2,
.solutions h2,
.case-studies h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.content-box,
.value-card,
.department-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 32px;
  background-color: #F8F6F3;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
  margin-bottom: 24px;
}

.content-box h3,
.value-card h4,
.department-card h3 {
  color: #8B6F47;
  margin-bottom: 16px;
}

.department-card .count {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #8B6F47;
  margin: 16px 0;
}

/* ============================================
   TIMELINE - ELEGANT CLASSIC
   ============================================ */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  padding-left: 40px;
  border-left: 2px solid #D4C5B9;
}

.timeline-item {
  position: relative;
  padding: 24px;
  background-color: #F8F6F3;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -52px;
  top: 28px;
  width: 20px;
  height: 20px;
  background-color: #8B6F47;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
}

.timeline-item .year {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #8B6F47;
  margin-bottom: 12px;
}

.timeline-item h4 {
  color: #1A1A1A;
  margin-bottom: 12px;
}

/* ============================================
   SOLUTIONS & CASE STUDIES
   ============================================ */

.solution-card,
.case-study {
  padding: 40px;
  background-color: #F8F6F3;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
  margin-bottom: 40px;
}

.solution-card h2,
.case-study h3 {
  color: #8B6F47;
  margin-bottom: 24px;
}

.solution-card h3 {
  font-size: 18px;
  color: #1A1A1A;
  margin-top: 24px;
  margin-bottom: 12px;
}

.solution-card ul,
.case-study ul {
  margin: 16px 0;
  padding-left: 0;
}

.solution-card ul li,
.case-study ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4A4A4A;
  list-style: none;
}

.solution-card ul li:before,
.case-study ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B6F47;
  font-weight: bold;
}

.case-meta {
  display: flex;
  gap: 20px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.case-meta .industry,
.case-meta .size {
  font-size: 14px;
  color: #6A6A6A;
  padding: 6px 16px;
  background-color: #FFFFFF;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
}

.case-study h4 {
  font-size: 20px;
  color: #8B6F47;
  margin-top: 24px;
  margin-bottom: 12px;
}

/* ============================================
   PROCESS & PHASES
   ============================================ */

.process,
.phases {
  padding: 80px 20px;
  background-color: #F8F6F3;
}

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

.process-steps,
.phases {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step,
.phase {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 24px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #8B6F47;
  margin-bottom: 16px;
}

.step h3,
.phase h3 {
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.step p,
.phase p {
  font-size: 15px;
  color: #5A5A5A;
}

.phase .duration {
  display: inline-block;
  font-size: 14px;
  color: #8B6F47;
  background-color: #F8F6F3;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ============================================
   CONTACT SECTIONS
   ============================================ */

.contact-info,
.contact-form-section,
.map-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.contact-card,
.contact-method {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  padding: 32px;
  background-color: #F8F6F3;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
  margin-bottom: 24px;
}

.contact-card h3,
.contact-method h4 {
  color: #8B6F47;
  margin-bottom: 20px;
}

.contact-card .hours,
.contact-card .note {
  font-size: 14px;
  color: #6A6A6A;
  margin-top: 12px;
}

.form-placeholder {
  padding: 60px 40px;
  background-color: #F8F6F3;
  border: 2px dashed #D4C5B9;
  border-radius: 4px;
  text-align: center;
}

.form-placeholder p {
  font-size: 16px;
  color: #5A5A5A;
  margin-bottom: 12px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.map-section p {
  text-align: center;
  margin-bottom: 16px;
}

.directions {
  margin-top: 40px;
  padding: 32px;
  background-color: #F8F6F3;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
}

.directions h3 {
  color: #8B6F47;
  margin-bottom: 20px;
}

.directions ul li {
  padding: 8px 0;
  color: #4A4A4A;
}

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

.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F8F6F3 0%, #E8E0D5 100%);
}

.checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background-color: #8B6F47;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
}

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

.thank-you-hero .subheadline {
  font-size: 20px;
  color: #5A5A5A;
  margin-bottom: 16px;
}

.next-steps,
.quick-links,
.contact-alternatives,
.social-proof {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.next-steps h2,
.quick-links h2,
.contact-alternatives h2,
.social-proof h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step-box,
.link-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  padding: 32px 24px;
  background-color: #F8F6F3;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 24px;
}

.step-box .step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background-color: #8B6F47;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
}

.step-box h3,
.link-card h3 {
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.step-box .timeline {
  font-size: 14px;
  color: #8B6F47;
  background-color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  border: none;
}

.social-proof .headline {
  text-align: center;
  font-size: 20px;
  color: #5A5A5A;
  margin-bottom: 32px;
}

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

.trust-stats span {
  font-size: 15px;
  color: #6A6A6A;
  padding: 8px 20px;
  background-color: #F8F6F3;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
}

/* ============================================
   CTA SECTIONS - ELEGANT CLASSIC
   ============================================ */

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8B6F47 0%, #6F5837 100%);
  text-align: center;
  color: #FFFFFF;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta-section p {
  color: #F8F6F3;
  font-size: 18px;
  margin-bottom: 32px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #F8F6F3;
  font-size: 16px;
}

.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F8F6F3;
  font-weight: bold;
  font-size: 20px;
}

.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #8B6F47;
  border-color: #FFFFFF;
}

.cta-section .btn-primary:hover {
  background-color: #F8F6F3;
  border-color: #F8F6F3;
}

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

.legal-page {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 16px;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #6A6A6A;
  margin-bottom: 48px;
}

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

.legal-content h2 {
  font-size: 28px;
  color: #8B6F47;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  font-size: 22px;
  color: #1A1A1A;
  margin-top: 28px;
  margin-bottom: 16px;
}

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

.legal-content a {
  color: #8B6F47;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #6F5837;
}

/* ============================================
   FOOTER - ELEGANT CLASSIC
   ============================================ */

footer {
  background-color: #2C2C2C;
  color: #D4C5B9;
  padding: 60px 20px 32px;
  border-top: 3px solid #8B6F47;
}

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

.footer-col {
  flex: 1 1 calc(25% - 36px);
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #F8F6F3;
  margin-bottom: 20px;
}

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

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

.footer-col ul li a {
  font-size: 14px;
  color: #A89B8F;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #8B6F47;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #4A4A4A;
}

.footer-bottom p {
  font-size: 14px;
  color: #A89B8F;
}

/* ============================================
   COOKIE CONSENT BANNER - ELEGANT CLASSIC
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C2C2C;
  border-top: 2px solid #8B6F47;
  padding: 24px 20px;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 400px;
  color: #D4C5B9;
  font-size: 14px;
  margin: 0;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

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

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

.cookie-modal h2 {
  color: #8B6F47;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #F8F6F3;
  border: 1px solid #D4C5B9;
  border-radius: 4px;
}

.cookie-category h3 {
  font-size: 18px;
  color: #1A1A1A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.cookie-toggle.active {
  background-color: #8B6F47;
}

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

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

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero */
  .hero h1 { font-size: 32px; }
  .hero-subheadline { font-size: 16px; }
  .hero { padding: 60px 20px; }
  
  .page-hero h1 { font-size: 32px; }
  .page-hero { padding: 60px 20px; }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-badges span {
    width: 100%;
    text-align: center;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Cards and grids */
  .metrics-grid,
  .services-grid,
  .testimonials-grid,
  .content-grid,
  .values-grid,
  .departments-grid,
  .stats-grid,
  .contact-methods,
  .process-steps,
  .phases,
  .steps-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .metric-card,
  .service-card,
  .service-detail-card,
  .testimonial-card,
  .content-box,
  .value-card,
  .department-card,
  .stat-box,
  .contact-card,
  .contact-method,
  .step,
  .phase,
  .step-box,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 20px;
  }
  
  .timeline-item:before {
    left: -32px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1 1 100%;
  }
  
  .cookie-modal {
    padding: 24px;
    width: 95%;
  }
  
  /* Sections */
  .section,
  .services-overview,
  .services-detail,
  .value-proposition,
  .testimonials,
  .mission-vision,
  .company-story,
  .team,
  .stats,
  .process,
  .implementation,
  .solutions,
  .case-studies,
  .contact-info,
  .contact-form-section,
  .map-section,
  .next-steps,
  .quick-links,
  .contact-alternatives,
  .social-proof,
  .cta-section,
  .legal-page {
    padding: 60px 20px;
  }
  
  /* Thank you page */
  .checkmark {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
  
  .thank-you-hero h1 {
    font-size: 32px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Adjust for tablets */
  .metric-card,
  .service-card,
  .stat-box,
  .step,
  .phase,
  .step-box {
    flex: 1 1 calc(50% - 16px);
  }
  
  .footer-col {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #8B6F47;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-section {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
    color: #000000;
  }
}