/* ========================================
   BrightTread - Industrial Modern CSS
   Design Style: Industrial Modern
   ======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2A2A2A;
  background-color: #F5F5F5;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  border-left: 4px solid #F57C00;
  padding-left: 16px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #3A3A3A;
}

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

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

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #F57C00;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(1.2);
  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 {
  color: #E0E0E0;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F57C00;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #F57C00;
}

.main-nav a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, #F57C00 0%, #FF8F00 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(245, 124, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  background: linear-gradient(135deg, #FF8F00 0%, #F57C00 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(245, 124, 0, 0.4);
  border-color: #FFFFFF;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  color: #F57C00;
  border: 2px solid #F57C00;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1A1A 0%, #2A2A2A 100%);
  z-index: 1999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  border-left: 3px solid #F57C00;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #F57C00;
  border: 2px solid #F57C00;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #F57C00;
  color: #FFFFFF;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
}

.mobile-nav a {
  color: #E0E0E0;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #3A3A3A;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F57C00;
  padding-left: 8px;
  border-left: 3px solid #F57C00;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .cta-button {
    display: none;
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(27, 94, 32, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(27, 94, 32, 0.4);
  border-color: #F57C00;
}

.btn-secondary {
  background: transparent;
  color: #1B5E20;
  border: 2px solid #1B5E20;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #1B5E20;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(27, 94, 32, 0.3);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #3A3A3A 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #F57C00;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 18px;
  color: #E0E0E0;
  margin-bottom: 24px;
  line-height: 1.7;
}

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

.trust-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #F57C00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

.trust-badges span {
  color: #F57C00;
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-bottom: 4px solid #F57C00;
}

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

.page-hero p {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 24px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #BDBDBD;
}

.breadcrumb a {
  color: #F57C00;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #FF8F00;
  text-decoration: underline;
}

.subtitle {
  font-size: 18px;
  color: #BDBDBD;
  margin-bottom: 24px;
}

.trust-badge {
  display: inline-block;
  background: #F57C00;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 16px;
}

.trust-score {
  color: #F57C00;
  font-weight: 600;
  font-size: 18px;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-overview,
.services-detailed {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5A5A5A;
  margin-bottom: 48px;
}

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

.service-card {
  background: #F5F5F5;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #F57C00;
  transition: height 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-color: #F57C00;
}

.service-card:hover::before {
  height: 100%;
}

.service-card h3 {
  color: #1A1A1A;
  margin-bottom: 12px;
}

.service-card p {
  color: #4A4A4A;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #1B5E20;
  margin: 16px 0;
}

.service-link {
  color: #F57C00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  align-self: flex-start;
}

.service-link:hover {
  text-decoration: underline;
}

/* ========================================
   SERVICE DETAILS
   ======================================== */
.service-detail {
  background: #FFFFFF;
  border-left: 4px solid #1B5E20;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-detail h2 {
  border-left: none;
  padding-left: 0;
}

.service-detail ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.service-detail li {
  padding-left: 24px;
  position: relative;
  color: #3A3A3A;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1B5E20;
  font-weight: 700;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 700;
  color: #1B5E20;
  margin: 16px 0;
}

/* ========================================
   FEATURES GRID
   ======================================== */
.why-choose-us,
.values,
.stats {
  background: #F5F5F5;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.feature,
.value-item,
.stat-item {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature:hover,
.value-item:hover,
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-color: #F57C00;
}

.feature h3,
.value-item h3,
.stat-item h3 {
  color: #1B5E20;
  margin-bottom: 8px;
}

.stat-item h3 {
  font-size: 48px;
  color: #F57C00;
}

.feature p,
.value-item p,
.stat-item p {
  color: #4A4A4A;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials,
.testimonials-detailed {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 4px solid #F57C00;
  border-bottom: 4px solid #F57C00;
}

.testimonials h2,
.testimonials-detailed h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
  border-left-color: #F57C00;
}

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

.testimonial-card {
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(245, 124, 0, 0.3);
  border-color: #F57C00;
}

.testimonial-card .rating {
  color: #F57C00;
  font-size: 20px;
  margin-bottom: 8px;
}

.testimonial-card p {
  color: #E0E0E0;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-card .author {
  color: #F57C00;
  font-weight: 600;
  font-style: normal;
  margin-top: 8px;
  font-size: 14px;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-table {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.pricing-card {
  background: #F5F5F5;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 40px 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #1B5E20;
  transition: height 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-color: #F57C00;
}

.pricing-card:hover::before {
  height: 8px;
  background: #F57C00;
}

.pricing-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #1B5E20;
  margin: 16px 0 24px;
}

.pricing-card ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pricing-card li {
  padding-left: 24px;
  position: relative;
  color: #3A3A3A;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1B5E20;
  font-weight: 700;
}

/* ========================================
   TIMELINE
   ======================================== */
.company-story {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.timeline-item {
  background: #F5F5F5;
  border-left: 4px solid #F57C00;
  padding: 24px;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.timeline-item h3 {
  color: #F57C00;
  font-size: 32px;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #3A3A3A;
}

/* ========================================
   MISSION & VISION
   ======================================== */
.mission-vision {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-top: 4px solid #F57C00;
  border-bottom: 4px solid #F57C00;
}

.mission-vision .container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}

.mission,
.vision {
  flex: 1 1 calc(50% - 48px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission h2,
.vision h2 {
  color: #F57C00;
  border-left-color: #F57C00;
}

.mission p,
.vision p {
  color: #E0E0E0;
  line-height: 1.8;
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */
.contact-methods,
.contact-info,
.service-area {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact-method {
  background: #F5F5F5;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-method h3 {
  color: #1B5E20;
  margin-bottom: 12px;
}

.office-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

/* ========================================
   FAQ
   ======================================== */
.faq-contact,
.quality-standards,
.whats-included,
.guarantee {
  background: #F5F5F5;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.faq-list,
.quality-list,
.included-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-left: 4px solid #1B5E20;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item h3 {
  color: #1A1A1A;
  margin-bottom: 8px;
}

.faq-item p {
  color: #4A4A4A;
}

.quality-list li,
.included-list li {
  padding: 16px;
  background: #FFFFFF;
  border-left: 4px solid #F57C00;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ========================================
   CTA SECTIONS
   ======================================== */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-top: 4px solid #F57C00;
  border-bottom: 4px solid #F57C00;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  border-left: none;
  padding-left: 0;
}

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

.availability {
  margin-top: 24px;
  font-size: 14px;
  color: #BDBDBD;
}

/* ========================================
   CASE STUDIES
   ======================================== */
.case-studies {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.case-study {
  background: #F5F5F5;
  border-left: 4px solid #1B5E20;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-study h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

/* ========================================
   RATINGS
   ======================================== */
.ratings-overview {
  background: #F5F5F5;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.ratings-breakdown {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ratings-breakdown p {
  color: #3A3A3A;
  font-size: 16px;
}

.ratings-breakdown p strong {
  color: #1B5E20;
  font-size: 24px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thank-you-hero {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 4px solid #F57C00;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #F57C00;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.4);
}

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

.thank-you-hero p {
  color: #E0E0E0;
  font-size: 18px;
}

.confirmation {
  margin-top: 24px;
  font-size: 16px;
  color: #BDBDBD;
}

.next-steps,
.immediate-contact,
.helpful-resources {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.step,
.resource {
  background: #F5F5F5;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.step h3,
.resource h3 {
  color: #1B5E20;
  margin-bottom: 8px;
}

.timeline {
  text-align: center;
  color: #5A5A5A;
  font-style: italic;
}

.return-navigation {
  text-align: center;
  padding: 40px 20px;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-content h2 {
  color: #1A1A1A;
  margin-top: 32px;
  margin-bottom: 16px;
  border-left-color: #1B5E20;
}

.legal-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.legal-content li {
  padding-left: 24px;
  position: relative;
  color: #3A3A3A;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1B5E20;
  font-weight: 700;
}

.last-updated {
  color: #5A5A5A;
  font-style: italic;
  margin-bottom: 32px;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  color: #E0E0E0;
  padding: 60px 20px 20px;
  border-top: 4px solid #F57C00;
}

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

.footer-column {
  flex: 1 1 calc(25% - 48px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

.footer-column h4 {
  color: #F57C00;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column a {
  color: #BDBDBD;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-column a:hover {
  color: #F57C00;
  padding-left: 8px;
}

.footer-column p {
  color: #BDBDBD;
  font-size: 14px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid #3A3A3A;
  padding-top: 24px;
  text-align: center;
}

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

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  color: #E0E0E0;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  border-top: 3px solid #F57C00;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  color: #E0E0E0;
  margin-bottom: 8px;
  font-size: 14px;
}

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

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

.cookie-accept {
  background: #1B5E20;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #2E7D32;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #E0E0E0;
  border: 2px solid #5A5A5A;
}

.cookie-reject:hover {
  border-color: #F57C00;
  color: #F57C00;
}

.cookie-settings {
  background: transparent;
  color: #F57C00;
  border: 2px solid #F57C00;
}

.cookie-settings:hover {
  background: #F57C00;
  color: #FFFFFF;
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  border: 3px solid #F57C00;
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content h2 {
  color: #F57C00;
  margin-bottom: 24px;
  border-left-color: #F57C00;
}

.cookie-category {
  background: #3A3A3A;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-category h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.cookie-category p {
  color: #BDBDBD;
  font-size: 14px;
}

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

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

.cookie-toggle label {
  color: #E0E0E0;
  cursor: pointer;
  font-size: 14px;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .service-card,
  .pricing-card,
  .feature,
  .value-item,
  .stat-item,
  .testimonial-card,
  .contact-method,
  .step,
  .resource,
  .timeline-item {
    flex: 1 1 100%;
  }
  
  .mission,
  .vision,
  .footer-column {
    flex: 1 1 100%;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .stat-item h3 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .service-card,
  .pricing-card,
  .testimonial-card,
  .feature,
  .value-item,
  .service-detail,
  .case-study {
    padding: 24px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}

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

.service-card,
.pricing-card,
.testimonial-card,
.feature,
.value-item,
.stat-item {
  animation: fadeIn 0.6s ease-out;
}

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

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}
