/* ===================================
   GLIMMER BUNGALOW - PROFESSIONAL CORPORATE CSS
   Professional Blue/Gray Palette with Structured Layout
   =================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #F8F9FA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A252F;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

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

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

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

li {
  margin-bottom: 8px;
  color: #495057;
}

a {
  text-decoration: none;
  color: #2C5F4F;
  transition: color 0.3s ease;
}

a:hover {
  color: #1A4037;
}

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

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

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

.section-subtitle {
  font-size: 18px;
  color: #6C757D;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #495057;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: #2C3E50;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  background-color: #E8F4F8;
  color: #2C5F4F;
}

@media (min-width: 769px) {
  .main-nav {
    display: flex;
    gap: 8px;
    align-items: center;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #2C5F4F;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1001;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1A4037;
}

@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #1A252F;
  z-index: 1002;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
}

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

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

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.btn-primary {
  background-color: #2C5F4F;
  color: #FFFFFF;
  border-color: #2C5F4F;
}

.btn-primary:hover {
  background-color: #1A4037;
  border-color: #1A4037;
  color: #F8F9FA;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F4F;
  border-color: #2C5F4F;
}

.btn-secondary:hover {
  background-color: #2C5F4F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.3);
}

.btn-link {
  background-color: transparent;
  color: #2C5F4F;
  padding: 8px 0;
  border: none;
  font-weight: 700;
}

.btn-link:hover {
  color: #1A4037;
  transform: translateX(4px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1A4037 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.hero-content h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #E8F4F8;
}

.hero-text {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #E8F4F8;
}

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

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

.trust-badges span {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  color: #FFFFFF;
  padding: 60px 20px 40px;
  text-align: center;
  margin-bottom: 0;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 40px;
}

.page-hero p {
  color: #E8F4F8;
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 24px;
  color: #E8F4F8;
  font-size: 14px;
  text-align: left;
}

.breadcrumb a {
  color: #E8F4F8;
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

/* CARDS & GRIDS */
.services-grid,
.benefits-grid,
.testimonial-grid,
.link-grid,
.contact-grid,
.project-grid,
.values-grid,
.stats-grid,
.steps-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}

.service-card,
.benefit-item,
.testimonial-card,
.link-card,
.contact-method,
.project-card,
.value-item,
.stat-box,
.step-card {
  background-color: #FFFFFF;
  border: 1px solid #DEE2E6;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.service-card:hover,
.link-card:hover,
.step-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.service-card img,
.benefit-item img,
.contact-method img,
.step-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.service-card h3,
.benefit-item h3,
.link-card h3,
.contact-method h3,
.value-item h3 {
  color: #1A252F;
  font-size: 20px;
}

.service-card p,
.benefit-item p,
.link-card p,
.contact-method p {
  color: #6C757D;
  flex-grow: 1;
}

.price,
.price-tag {
  font-size: 20px;
  font-weight: 700;
  color: #2C5F4F;
  margin-top: auto;
}

/* TESTIMONIALS */
.testimonial-card {
  background-color: #F8F9FA;
  border-left: 4px solid #2C5F4F;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #1A252F;
  font-weight: 700;
  font-size: 16px;
}

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

.trust-metric {
  text-align: center;
  font-weight: 600;
  color: #2C5F4F;
  font-size: 18px;
  margin-top: 32px;
}

/* STATS */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stat-item strong {
  font-size: 32px;
  color: #2C5F4F;
  font-weight: 700;
}

.stat-item span {
  font-size: 14px;
  color: #6C757D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-box {
  text-align: center;
  padding: 32px 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-box strong {
  display: block;
  font-size: 40px;
  color: #2C5F4F;
  margin-bottom: 8px;
}

.stat-box span {
  color: #6C757D;
  font-size: 14px;
}

/* CTA SECTIONS */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, #2C5F4F 0%, #1A4037 100%);
  padding: 60px 20px;
  margin-bottom: 0;
}

.cta-box {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cta-box h2 {
  color: #1A252F;
  margin-bottom: 16px;
}

.cta-box p {
  color: #495057;
  font-size: 18px;
  margin-bottom: 24px;
}

.benefit-list {
  list-style: none;
  margin: 24px 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #495057;
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2C5F4F;
  font-weight: 700;
  font-size: 18px;
}

.availability,
.office-info,
.additional-info {
  color: #6C757D;
  font-size: 14px;
  margin-top: 16px;
}

/* SERVICE DETAILS */
.service-detail {
  background-color: #FFFFFF;
  border: 1px solid #DEE2E6;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 32px;
  position: relative;
}

.service-detail h2 {
  color: #1A252F;
  margin-bottom: 16px;
  padding-right: 120px;
}

.service-detail .price-tag {
  position: absolute;
  top: 32px;
  right: 32px;
  background-color: #E8F4F8;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 18px;
}

.benefits-list {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefits-list li {
  background-color: #F8F9FA;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  color: #495057;
}

.ideal-for {
  background-color: #E8F4F8;
  padding: 12px 16px;
  border-radius: 4px;
  font-weight: 600;
  color: #2C5F4F;
  margin-top: 16px;
}

/* QUALITY & GUARANTEE */
.quality-guarantee {
  background-color: #E8F4F8;
  padding: 48px 20px;
}

.guarantee-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-list li {
  padding: 16px 24px;
  background-color: #FFFFFF;
  margin-bottom: 12px;
  border-radius: 4px;
  border-left: 4px solid #2C5F4F;
  font-weight: 600;
  color: #2C3E50;
}

/* COMPANY STORY & VALUES */
.company-story,
.values,
.certifications,
.why-trust {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.cert-list,
.trust-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.cert-list li,
.trust-list li {
  padding: 16px 24px 16px 48px;
  position: relative;
  margin-bottom: 12px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

.cert-list li:before,
.trust-list li:before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: #2C5F4F;
  font-weight: 700;
  font-size: 20px;
}

/* GUIDE & FAQ */
.guide-section {
  background-color: #FFFFFF;
  border: 1px solid #DEE2E6;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 32px;
}

.guide-section h3 {
  color: #1A252F;
  border-bottom: 3px solid #2C5F4F;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #DEE2E6;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}

.faq-item h3 {
  color: #2C5F4F;
  font-size: 18px;
  margin-bottom: 12px;
}

/* CONTACT */
.contact-methods {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.contact-method {
  text-align: center;
  flex: 1 1 calc(50% - 24px);
}

.method-note {
  font-size: 14px;
  color: #6C757D;
}

.form-placeholder {
  background-color: #F8F9FA;
  border: 2px dashed #DEE2E6;
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.office-hours,
.service-area,
.next-steps {
  background-color: #FFFFFF;
  padding: 48px 20px;
  text-align: center;
}

.steps-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  counter-reset: step-counter;
  text-align: left;
}

.steps-list li {
  padding: 16px 24px 16px 64px;
  position: relative;
  margin-bottom: 16px;
  background-color: #F8F9FA;
  border-radius: 4px;
  counter-increment: step-counter;
}

.steps-list li:before {
  content: counter(step-counter);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  background-color: #2C5F4F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ERROR PAGES */
.error-hero {
  background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin-bottom: 16px;
}

.error-content h1 {
  color: #FFFFFF;
  font-size: 40px;
}

.error-subheadline {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.error-links {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.error-contact {
  padding: 48px 20px;
  background-color: #FFFFFF;
}

.contact-box {
  background-color: #E8F4F8;
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info,
.contact-email {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F4F;
  margin-bottom: 8px;
}

.contact-hours {
  color: #6C757D;
  margin-bottom: 24px;
}

/* THANK YOU PAGE */
.thank-you-hero,
.thank-you-page {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #FFFFFF;
  color: #27AE60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.confirmation-text {
  font-size: 20px;
  color: #E8F4F8;
  margin-bottom: 16px;
}

.urgent-contact,
.social-proof {
  padding: 48px 20px;
  background-color: #F8F9FA;
}

.useful-links {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

/* LEGAL PAGES */
.legal-content {
  background-color: #FFFFFF;
  padding: 40px 20px;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

.legal-section h2 {
  color: #1A252F;
  border-bottom: 3px solid #2C5F4F;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.legal-section h3 {
  color: #2C5F4F;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-date {
  color: #6C757D;
  font-style: italic;
  font-size: 14px;
}

/* FOOTER */
footer {
  background-color: #1A252F;
  color: #E8F4F8;
  padding: 48px 20px 24px;
  margin-top: 80px;
}

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

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

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 8px;
}

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

.footer-col p {
  color: #B0BEC5;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col a {
  color: #B0BEC5;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A252F;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: #E8F4F8;
}

.cookie-text a {
  color: #FFFFFF;
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accept-all {
  background-color: #2C5F4F;
  color: #FFFFFF;
}

.accept-all:hover {
  background-color: #1A4037;
}

.reject-all {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

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

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

.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6C757D;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

.cookie-category h3 {
  font-size: 18px;
  color: #1A252F;
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: #6C757D;
  margin-bottom: 12px;
}

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .service-card,
  .benefit-item,
  .testimonial-card,
  .link-card,
  .contact-method,
  .project-card,
  .value-item,
  .stat-box,
  .step-card {
    flex: 1 1 100%;
  }

  .service-detail .price-tag {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }

  .service-detail h2 {
    padding-right: 0;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .error-code {
    font-size: 80px;
  }

  .stats-row {
    flex-direction: column;
    gap: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .benefit-item,
  .link-card,
  .value-item,
  .step-card {
    flex: 1 1 calc(50% - 24px);
  }

  .testimonial-card,
  .contact-method {
    flex: 1 1 calc(50% - 24px);
  }

  .footer-col {
    flex: 1 1 calc(50% - 40px);
  }
}

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

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

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

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

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.hidden {
  display: none;
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* FOCUS STYLES */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #2C5F4F;
  outline-offset: 2px;
}

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

  body {
    background-color: #FFFFFF;
    color: #000000;
  }

  a {
    text-decoration: underline;
  }
}