/* ===== CSS VARIABLES ===== */
:root {
  /* Irish Color Scheme */
  --primary-color: #228B22;
  /* Irish Green */
  --primary-color-dark: #006400;
  /* Dark Green */
  --primary-color-light: #32CD32;
  /* Lime Green */
  --secondary-color: #FF8C00;
  /* Irish Orange */
  --secondary-color-dark: #FF6347;
  /* Dark Orange */
  --accent-color: #FFD700;
  /* Gold */

  /* Neutral Colors */
  --white-color: #ffffff;
  --light-gray: #f8f9fa;
  --gray-color: #6c757d;
  --dark-gray: #2F4F2F;
  /* Dark Slate Gray with green tint */
  --black-color: #000000;

  /* Background Colors */
  --body-color: #fafbfa;
  /* Slightly green-tinted white */
  --container-color: #ffffff;
  --section-bg: #f0f8f0;
  /* Very light green */
  --card-bg: #ffffff;

  /* Text Colors */
  --title-color: #2c3e50;
  --text-color: #5a6c7d;
  --text-color-light: #7b8794;

  /* Typography */
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes */
  --biggest-font-size: 3rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;

  /* Font Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Layout */
  --container-max-width: 1200px;
  --header-height: 4rem;
  --section-padding: 5rem 0;

  /* Border Radius */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;

  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
/* Mobile First Approach */

/* Extra Small devices (phones, 576px and down) */
@media screen and (max-width: 575.98px) {
  :root {
    --biggest-font-size: 2rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --section-padding: 3rem 0;
  }
}



/*===== GALLERY SECTION =====*/
.gallery {
  background: var(--white-color);
}

.gallery__filters {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.gallery__filter {
  background: transparent;
  border: 2px solid var(--gray-color);
  color: var(--gray-color);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius-md);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: var(--transition-medium);
}

.gallery__filter:hover,
.gallery__filter.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.gallery__item {
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  cursor: pointer;
}

.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.gallery__item-container {
  position: relative;
}

.before-after-comparison {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  cursor: ew-resize;
}

.before-after__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.before-after__before,
.before-after__after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-after__before {
  z-index: 1;
}

.before-after__after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after__label {
  position: absolute;
  top: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  border-radius: var(--border-radius-sm);
  z-index: 10;
  pointer-events: none;
}

.before-after__label--before {
  left: var(--spacing-sm);
  z-index: 10;
}

.before-after__label--after {
  right: var(--spacing-sm);
  z-index: 10;
}

.before-after__slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--white-color);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 3;
}

.before-after__line {
  width: 100%;
  height: 100%;
  background: var(--white-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.before-after__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: var(--white-color);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  cursor: ew-resize;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.before-after__handle:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.before-after__handle-icon {
  font-weight: bold;
}

.before-after__label {
  position: absolute;
  top: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  border-radius: var(--border-radius-sm);
  z-index: 10;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.before-after__label--before {
  left: var(--spacing-sm);
}

.before-after__label--after {
  right: var(--spacing-sm);
}

.gallery__content {
  padding: var(--spacing-lg);
}

.gallery__title {
  color: var(--title-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-sm);
}

.gallery__description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.gallery__meta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.gallery__location,
.gallery__category {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.gallery__featured {
  color: var(--secondary-color);
  font-weight: var(--font-medium);
}

.gallery__tags {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.gallery__tag {
  background: var(--light-gray);
  color: var(--text-color);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
  font-size: var(--smaller-font-size);
}

.gallery__view-btn {
  width: 100%;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-md);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: var(--transition-medium);
}

.gallery__view-btn:hover {
  background: var(--primary-color-dark);
}

.gallery--loading {
  opacity: 0.7;
}

.gallery--loaded {
  opacity: 1;
  transition: opacity var(--transition-medium);
}

/* Gallery Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* REMOVED DUPLICATE - Using the existing before-after styles above */

/*===== HERO SECTION BEFORE/AFTER - ENHANCED =====*/
.hero__comparison {
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  cursor: ew-resize;
}

.hero__comparison .before-after__container {
  height: 100%;
}

.hero__comparison .gallery__image,
.hero__comparison .hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__comparison .before-after__label {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(0, 0, 0, 0.9);
  border-radius: var(--border-radius-md);
}

.hero__comparison .before-after__handle {
  width: 60px;
  height: 60px;
  border: 4px solid var(--white-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  font-size: 1.5rem;
}

.hero__comparison .before-after__handle:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.hero__comparison .before-after__line {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  width: 6px;
}

.hero__comparison .before-after__slider {
  width: 6px;
}

.hero__image-caption {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.hero__image-caption p {
  color: var(--text-color);
  font-style: italic;
  font-size: var(--normal-font-size);
}

/* Responsive Hero Before/After */
@media screen and (max-width: 768px) {
  .hero__comparison {
    height: 300px;
  }

  .hero__comparison .before-after__handle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .hero__comparison .before-after__label {
    font-size: var(--normal-font-size);
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .hero__comparison .before-after__line,
  .hero__comparison .before-after__slider {
    width: 4px;
  }
}

/*===== CONTACT SECTION =====*/
.contact {
  background: var(--section-bg);
  padding: var(--spacing-xl) 0;
}

.contact__container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--spacing-xl);
  align-items: start;
}

/* Contact Form - Primary Focus */
.contact__form {
  background: var(--white-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
  order: 1;
}

.form__header {
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.form__title {
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-sm);
}

.form__subtitle {
  color: var(--text-color);
  font-size: var(--normal-font-size);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.form__group {
  margin-bottom: var(--spacing-md);
}

.form__label {
  display: block;
  color: var(--title-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: var(--normal-font-size);
  transition: var(--transition-fast);
  background: var(--white-color);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__group--checkbox {
  margin-bottom: var(--spacing-lg);
}

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  font-size: var(--small-font-size);
  color: var(--text-color);
  cursor: pointer;
}

.form__checkbox {
  margin-top: 2px;
}

.form__submit {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  min-height: 48px;
}

/* Contact Info - Compact Sidebar */
.contact__info {
  background: var(--white-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  order: 2;
}

.contact__info-header {
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.contact__info-title {
  color: var(--title-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-sm);
}

.contact__info-subtitle {
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 1.4;
}

.contact__details {
  margin-bottom: var(--spacing-lg);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
}

.contact__detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact__detail-icon {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-top: 0.125rem;
  min-width: 20px;
}

.contact__detail-content {
  flex: 1;
}

.contact__detail-label {
  color: var(--title-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact__detail-value,
.contact__detail-link {
  color: var(--primary-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  line-height: 1.3;
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact__detail-link:hover {
  color: var(--primary-color-dark);
}

/* Service Area */
.contact__service-area {
  margin-bottom: var(--spacing-lg);
}

.contact__service-area-title {
  color: var(--title-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.contact__coverage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xs);
}

.contact__coverage-item {
  color: var(--text-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--section-bg);
  border-radius: var(--border-radius-sm);
  text-align: center;
  transition: var(--transition-fast);
}

.contact__coverage-item:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Credentials */
.contact__credentials {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact__credential {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--section-bg);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.contact__credential:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.contact__credential-icon {
  font-size: 1rem;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.contact__credential:hover .contact__credential-icon {
  color: var(--white-color);
}

.contact__credential-text {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .contact__form {
    order: 2;
  }

  .contact__info {
    order: 1;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact__coverage {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__credentials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact__credential {
    flex: 1;
    min-width: 120px;
  }
}

@media screen and (max-width: 480px) {
  .contact__form,
  .contact__info {
    padding: var(--spacing-md);
  }

  .contact__coverage {
    grid-template-columns: 1fr;
  }

  .contact__credentials {
    flex-direction: column;
  }

  .contact__credential {
    min-width: auto;
  }
}

/*===== FOOTER SECTION =====*/
.footer {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 1rem 0 0.25rem 0 !important;
}

.footer__content,
.footer__main {
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer__cta {
  margin-bottom: 0.5rem !important;
}

.footer__bottom {
  padding-top: 0.25rem !important;
  margin-top: 0 !important;
}

.footer__copyright {
  margin: 0 !important;
  padding: 0 !important;
}



/* New Minimalistic Footer Styles */
.footer__main {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
}

.footer__brand {
  margin-bottom: 0;
}

.footer__title {
  color: var(--white-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 0;
  line-height: 1.1;
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
  font-size: var(--normal-font-size);
  margin: 0;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  margin-bottom: 0;
}

.footer__contact-link {
  color: var(--white-color);
  text-decoration: none;
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: var(--transition-fast);
}

.footer__contact-link:hover {
  color: var(--secondary-color);
}

.footer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 0.5rem !important;
}

.footer__cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white-color);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-weight: var(--font-semi-bold);
  font-size: var(--normal-font-size);
  transition: var(--transition-fast);
  border: 2px solid var(--secondary-color);
  white-space: nowrap;
  margin-bottom: 0.5rem !important;
}

.footer__cta-button:hover {
  background: var(--secondary-color-dark);
  border-color: var(--secondary-color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.footer__bottom {
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--small-font-size);
}

.footer__copyright p {
  margin: 0;
  line-height: 1.4;
}

.footer__links {
  display: flex;
  gap: 0.125rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__link:hover {
  color: var(--white-color);
}

/* Footer Responsive Design */
@media screen and (max-width: 768px) {
  .footer__main {
    gap: var(--spacing-md);
  }

  .footer__brand {
    margin-bottom: var(--spacing-sm);
  }

  .footer__contact {
    margin-bottom: var(--spacing-sm);
  }

  .footer__cta {
    margin-bottom: var(--spacing-md);
  }

  .footer__bottom {
    gap: var(--spacing-sm);
  }

  .footer__links {
    gap: var(--spacing-md);
  }
}



/* Small devices (landscape phones, 576px and up) */
@media screen and (min-width: 576px) {
  :root {
    --container-max-width: 540px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media screen and (min-width: 768px) {
  :root {
    --container-max-width: 720px;
    --header-height: 5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media screen and (min-width: 992px) {
  :root {
    --container-max-width: 960px;
    --biggest-font-size: 3.5rem;
    --h1-font-size: 3rem;
    --h2-font-size: 2.25rem;
    --section-padding: 6rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media screen and (min-width: 1200px) {
  :root {
    --container-max-width: 1140px;
  }
}

/* XXL devices (larger desktops, 1400px and up) */
@media screen and (min-width: 1400px) {
  :root {
    --container-max-width: 1320px;
  }
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  color: var(--text-color);
  background-color: var(--body-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--section-padding);
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-sm);
}

.section__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  border-radius: var(--border-radius-md);
  transition: var(--transition-medium);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
  /* Accessibility: minimum touch target */
}

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

.btn--primary:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn--secondary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

/* Visibility Classes */
.show-mobile {
  display: block;
}

.hide-mobile {
  display: none;
}

@media screen and (min-width: 768px) {
  .show-mobile {
    display: none;
  }

  .hide-mobile {
    display: block;
  }
}

/* ===== COMPONENT STYLES (Basic Structure) ===== */

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  box-shadow: var(--shadow-light);
  z-index: var(--z-fixed);
  transition: var(--transition-medium);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
}

/* Main */
.main {
  margin-top: var(--header-height);
}

/* ===== HERO SECTION - PROFESSIONAL REDESIGN ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fafffe 0%, #f5faf9 50%, #f0f6f4 100%);
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(34, 139, 34, 0.02) 0%, rgba(34, 139, 34, 0.05) 100%);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 80vh;
}

.hero__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(34, 139, 34, 0.2);
}

.hero__badge-icon {
  font-size: 1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-bold);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--title-color);
  margin-top: 0;
  padding-top: 0;
}

.hero__title-main {
  display: block;
  color: var(--title-color);
}

.hero__title-accent {
  display: block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.1em;
  margin-bottom: 0.1em;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero__description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  margin-bottom: var(--spacing-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero__features {
  text-align: center;
  margin: var(--spacing-lg) 0 var(--spacing-xl) 0;
}

.hero__feature-text {
  display: inline;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color-light);
  position: relative;
}

.hero__feature-text:not(:last-child)::after {
  content: ' • ';
  color: var(--primary-color);
  font-weight: bold;
  margin: 0 var(--spacing-xs);
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.hero__before-after {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  background-color: var(--white-color);
}

.hero__image-container {
  position: relative;
  width: 50%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hero__image-container--before {
  float: left;
}

.hero__image-container--after {
  float: right;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.hero__image-label {
  position: absolute;
  top: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__image-label--before {
  left: var(--spacing-sm);
  background-color: rgba(108, 117, 125, 0.9);
  color: var(--white-color);
}

.hero__image-label--after {
  right: var(--spacing-sm);
  background-color: var(--primary-color);
  color: var(--white-color);
}

.hero__divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 4px;
  z-index: 3;
}

.hero__divider-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent 0%,
      var(--white-color) 20%,
      var(--white-color) 80%,
      transparent 100%);
}

.hero__divider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  cursor: pointer;
  transition: var(--transition-medium);
}

.hero__divider-handle:hover {
  background-color: var(--primary-color-dark);
  transform: translate(-50%, -50%) scale(1.1);
}

.hero__divider-icon {
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.hero__image-caption {
  text-align: center;
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(10px);
}

.hero__image-caption p {
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin: 0;
  font-style: italic;
}

/* Hero animations and states */
.hero--visible .hero__title,
.hero--visible .hero__subtitle,
.hero--visible .hero__description {
  animation: fadeInUp 0.8s ease forwards;
}

.hero--visible .hero__features {
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero--visible .hero__buttons {
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero--visible .hero__before-after {
  animation: fadeInRight 1s ease 0.4s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero image placeholder styles */
.hero__image-placeholder {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  text-align: center;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  border: 2px dashed var(--gray-color);
  min-height: 200px;
}

.hero__image-placeholder strong {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
}

/* Enhanced button hover effects for hero */
.hero__buttons .btn--primary {
  position: relative;
  overflow: hidden;
}

.hero__buttons .btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero__buttons .btn--primary:hover::before {
  left: 100%;
}

.hero__buttons .btn--secondary {
  position: relative;
  background: linear-gradient(135deg, transparent 0%, rgba(44, 90, 160, 0.05) 100%);
}

.hero__buttons .btn--secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.hero__buttons .btn--secondary:hover::after {
  opacity: 1;
}

/* Enhanced feature cards */
.hero__feature {
  position: relative;
  overflow: hidden;
}

.hero__feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
  transition: left 0.6s ease;
}

.hero__feature:hover::before {
  left: 100%;
}

/* Improved divider handle interaction */
.hero__divider-handle {
  cursor: pointer;
  user-select: none;
}

.hero__divider-handle:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.hero__divider-handle:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
}

.hero__divider-handle:focus:not(:focus-visible) {
  outline: none;
}

/* Add subtle pulse animation to divider handle */
@keyframes pulse {

  0%,
  100% {
    box-shadow: var(--shadow-medium);
  }

  50% {
    box-shadow: var(--shadow-heavy);
  }
}

.hero__divider-handle:hover {
  animation: pulse 2s infinite;
}

/* Additional mobile optimizations */
@media screen and (max-width: 480px) {
  .hero {
    min-height: calc(100vh - var(--header-height));
    padding: var(--spacing-lg) 0;
  }

  .hero__title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__description {
    font-size: var(--small-font-size);
    margin-bottom: var(--spacing-md);
  }

  .hero__features {
    gap: var(--spacing-xs);
  }

  .hero__feature {
    padding: var(--spacing-xs) var(--spacing-sm);
    min-width: auto;
  }

  .hero__feature-text {
    font-size: var(--smaller-font-size);
  }

  .hero__buttons .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--small-font-size);
  }

  .hero__divider-handle {
    width: 35px;
    height: 35px;
  }

  .hero__divider-icon {
    font-size: 1rem;
  }
}

/* Performance optimizations */
.hero__img {
  will-change: transform;
}

.hero__before-after {
  will-change: transform;
}

.hero__divider-handle {
  will-change: transform;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

  .hero__feature,
  .hero__buttons .btn,
  .hero__before-after,
  .hero__divider-handle {
    transition: none !important;
    animation: none !important;
  }

  .hero--visible .hero__title,
  .hero--visible .hero__subtitle,
  .hero--visible .hero__description,
  .hero--visible .hero__features,
  .hero--visible .hero__buttons,
  .hero--visible .hero__before-after {
    animation: none !important;
  }
}

/* Services */
.services__category {
  margin-bottom: var(--spacing-xxl);
}

.services__category-title {
  font-size: var(--h3-font-size);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--primary-color);
}

.services__grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Service Cards */
.service-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  border: 1px solid rgba(44, 90, 160, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-md);
  transition: var(--transition-medium);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card__icon-emoji {
  font-size: 1.5rem;
  filter: grayscale(1) brightness(0) invert(1);
}

.service-card__content {
  flex: 1;
}

.service-card__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--spacing-sm);
  transition: var(--transition-fast);
}

.service-card:hover .service-card__title {
  color: var(--primary-color);
}

.service-card__description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  font-size: var(--normal-font-size);
}

.service-card__features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.service-card__features li {
  position: relative;
  padding-left: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
  color: var(--text-color);
  font-size: var(--small-font-size);
  transition: var(--transition-fast);
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  font-size: var(--small-font-size);
}

.service-card:hover .service-card__features li {
  color: var(--title-color);
  transform: translateX(3px);
}

.service-card__cta {
  margin-top: auto;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--primary-color);
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
}

.service-card__link::after {
  content: '→';
  transition: var(--transition-fast);
}

.service-card__link:hover {
  color: var(--primary-color-dark);
  transform: translateX(3px);
}

.service-card__link:hover::after {
  transform: translateX(3px);
}

.service-card__link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: var(--border-radius-sm);
}

/* Industrial Service Cards Variant */
.service-card--industrial {
  border-color: rgba(243, 156, 18, 0.2);
}

.service-card--industrial::before {
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color-dark));
}

.service-card--industrial .service-card__icon {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color-dark));
}

.service-card--industrial:hover .service-card__title {
  color: var(--secondary-color-dark);
}

.service-card--industrial .service-card__features li::before {
  color: var(--secondary-color);
}

.service-card--industrial .service-card__link {
  color: var(--secondary-color);
}

.service-card--industrial .service-card__link:hover {
  color: var(--secondary-color-dark);
}

.service-card--industrial .service-card__link:focus {
  outline-color: var(--secondary-color);
}

/* Service Cards Responsive Design */
@media screen and (max-width: 575.98px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .service-card {
    padding: var(--spacing-md);
  }

  .service-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--spacing-sm);
  }

  .service-card__icon-emoji {
    font-size: 1.25rem;
  }

  .service-card__title {
    font-size: var(--normal-font-size);
  }

  .service-card__description {
    font-size: var(--small-font-size);
  }
}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
}

/* Gallery */
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.gallery__filter {
  padding: var(--spacing-xs) var(--spacing-md);
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--gray-color);
  border-radius: var(--border-radius-md);
  transition: var(--transition-medium);
  font-weight: var(--font-medium);
}

.gallery__filter:hover,
.gallery__filter.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.gallery__grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Gallery Item Styles */
.gallery__item {
  background-color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  position: relative;
}

.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.gallery__item-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery__item .before-after-comparison {
  border-radius: 0;
  margin-bottom: 0;
}

.gallery__content {
  padding: var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gallery__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--spacing-xs);
  line-height: 1.3;
}

.gallery__description {
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
  flex: 1;
}

.gallery__meta {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.gallery__location,
.gallery__category,
.gallery__featured {
  font-size: var(--smaller-font-size);
  padding: 2px 6px;
  border-radius: var(--border-radius-sm);
  background-color: var(--light-gray);
  color: var(--text-color-light);
}

.gallery__featured {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.gallery__tags {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.gallery__tag {
  font-size: var(--smaller-font-size);
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 2px 6px;
  border-radius: var(--border-radius-sm);
}

.gallery__view-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-md);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: var(--transition-fast);
  margin-top: auto;
}

.gallery__view-btn:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-1px);
}

.gallery__view-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Gallery loading states */
.gallery--loading {
  opacity: 0.7;
}

.gallery--loaded {
  opacity: 1;
}

.gallery__item--hover {
  transform: translateY(-2px);
}

/* Contact */
.contact__container {
  display: grid;
  gap: var(--spacing-xl);
}

.contact__info {
  display: grid;
  gap: var(--spacing-lg);
}

.contact__item h3 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-xs);
  color: var(--primary-color);
}

.contact__item a {
  color: var(--text-color);
  transition: var(--transition-fast);
}

.contact__item a:hover {
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  color: var(--white-color);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}



.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-sm);
}

.footer__links li {
  margin-bottom: var(--spacing-xs);
}

.footer__links a {
  color: var(--light-gray);
  transition: var(--transition-fast);
}

.footer__links a:hover {
  color: var(--white-color);
}

.footer__bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-gray);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile-first hero responsive styles */
@media screen and (max-width: 575.98px) {
  .hero__title {
    font-size: var(--h1-font-size);
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: var(--normal-font-size);
  }

  .hero__features {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }

  .hero__feature {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__before-after {
    margin: 0 -var(--spacing-sm);
  }

  .hero__image-container {
    width: 100%;
    float: none;
  }

  .hero__image-container--before {
    margin-bottom: 2px;
  }

  .hero__divider {
    left: 0;
    top: 50%;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
  }

  .hero__divider-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        transparent 0%,
        var(--white-color) 20%,
        var(--white-color) 80%,
        transparent 100%);
  }

  .hero__divider-handle {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .hero__features {
    justify-content: space-around;
  }

  .hero__buttons {
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
  }

  .hero__content {
    text-align: left;
  }

  .hero__buttons {
    justify-content: flex-start;
  }

  .hero__features {
    justify-content: flex-start;
  }

  .hero__image {
    max-width: none;
  }

  .contact__container {
    grid-template-columns: 1fr 1fr;
  }

  .contact__info {
    grid-template-columns: 1fr;
  }


}

@media screen and (min-width: 992px) {
  .hero__title {
    font-size: var(--biggest-font-size);
  }

  .hero__subtitle {
    font-size: var(--h3-font-size);
  }

  .hero__description {
    font-size: 1.125rem;
    max-width: 600px;
  }

  .hero__features {
    gap: var(--spacing-lg);
  }

  .hero__buttons {
    gap: var(--spacing-lg);
  }
}

@media screen and (min-width: 992px) {
  .container {
    padding: 0 var(--spacing-md);
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== NAVIGATION STYLES ===== */
.nav {
  position: relative;
}

.nav__brand {
  z-index: var(--z-fixed);
}

.nav__logo {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-block;
  letter-spacing: -0.5px;
  border-bottom: none;
  position: relative;
}

.nav__logo::before,
.nav__logo::after {
  display: none !important;
}

/* Force remove any underlines from logo */
.nav__logo,
.nav__logo:hover,
.nav__logo:focus,
.nav__logo:active {
  text-decoration: none !important;
  border-bottom: none !important;
  background: none !important;
  box-shadow: none !important;
}

.nav__logo * {
  text-decoration: none !important;
  border-bottom: none !important;
}

.nav__logo:hover {
  color: var(--primary-color-dark);
  transform: scale(1.02);
}

.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--white-color);
  padding: var(--spacing-xl) var(--spacing-lg);
  transition: var(--transition-medium);
  z-index: var(--z-modal);
  box-shadow: var(--shadow-heavy);
}

.nav__menu.show-menu {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.nav__item {
  position: relative;
}

.nav__link {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  color: var(--title-color);
  transition: var(--transition-fast);
  padding: var(--spacing-xs) 0;
  position: relative;
  display: block;
}

.nav__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-medium);
}

.nav__link:hover::before,
.nav__link.active-link::before {
  width: 100%;
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--primary-color);
  transform: translateX(5px);
}

.nav__link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: var(--border-radius-sm);
}

.nav__close {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  font-size: 2rem;
  cursor: pointer;
  color: var(--title-color);
  background: none;
  border: none;
  padding: var(--spacing-xs);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.nav__close:hover {
  color: var(--primary-color);
  background-color: var(--light-gray);
  transform: rotate(90deg);
}

.nav__close:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: var(--spacing-xs);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  background: none;
  border: none;
  z-index: var(--z-fixed);
}

.nav__toggle:hover {
  background-color: var(--light-gray);
}

.nav__toggle:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--title-color);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav__toggle:hover span {
  background-color: var(--primary-color);
}

/* Hamburger animation */
.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav__contact {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  z-index: var(--z-fixed);
}

.nav__phone {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-md);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: var(--transition-medium);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  min-height: 48px;
  white-space: nowrap;
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.nav__phone:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.nav__phone:focus {
  outline: 2px solid var(--white-color);
  outline-offset: 2px;
}

.nav__phone::before {
  content: '📞';
  font-size: 16px;
  margin-right: var(--spacing-xs);
}

/* Enhanced hover effects for nav phone button - matching hero buttons */
.nav__phone::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav__phone:hover::after {
  left: 100%;
}

/* Mobile-specific click-to-call styling */
@media screen and (max-width: 767.98px) {
  .nav__phone {
    background-color: var(--primary-color);
    font-weight: var(--font-medium);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--normal-font-size);
    border-color: var(--primary-color);
  }

  .nav__phone:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
  }

  .nav__phone::before {
    content: '📱';
    font-size: 16px;
  }
}

/* Header scroll effects */
.header--scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header--hidden {
  transform: translateY(-100%);
}

/* ===== GALLERY STYLES ===== */
.gallery__item {
  background-color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  cursor: pointer;
}

.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.gallery__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.gallery__image-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.gallery__label {
  position: absolute;
  top: var(--spacing-xs);
  left: var(--spacing-xs);
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white-color);
  padding: 2px var(--spacing-xs);
  border-radius: var(--border-radius-sm);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
}

.gallery__label--after {
  left: auto;
  right: var(--spacing-xs);
  background-color: var(--primary-color);
}

.gallery__content {
  padding: var(--spacing-md);
}

.gallery__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-xs);
}

.gallery__description {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--spacing-sm);
}

.gallery__meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

.gallery__view-btn {
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-md);
  font-size: var(--small-font-size);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-medium);
}

.gallery__item:hover .gallery__view-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}

.lightbox--active {
  opacity: 1;
  visibility: visible;
}

.lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.lightbox__close {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  background: none;
  border: none;
  color: var(--white-color);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

.lightbox__content {
  max-width: 1000px;
  width: 100%;
  background-color: var(--white-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.lightbox__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.lightbox__image-container {
  position: relative;
  aspect-ratio: 4/3;
}

.lightbox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox__label {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white-color);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  font-weight: var(--font-medium);
}

.lightbox__info {
  padding: var(--spacing-lg);
}

.lightbox__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-sm);
}

.lightbox__navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--spacing-lg);
  pointer-events: none;
}

.lightbox__nav {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition-fast);
}

.lightbox__nav:hover {
  background-color: var(--white-color);
}

/* ===== CONTACT FORM STYLES ===== */
.contact__form {
  background-color: var(--card-bg);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.contact__form-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.contact__form-header h3 {
  font-size: var(--h3-font-size);
  margin-bottom: var(--spacing-xs);
}

.form__group {
  margin-bottom: var(--spacing-md);
}

.form__label {
  display: block;
  font-weight: var(--font-medium);
  margin-bottom: var(--spacing-xs);
  color: var(--title-color);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius-md);
  font-family: inherit;
  font-size: var(--normal-font-size);
  transition: var(--transition-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form__input--error,
.form__select--error,
.form__textarea--error {
  border-color: var(--accent-color);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__radio-group {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.form__radio-label {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  cursor: pointer;
}

.form__radio {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-color);
  border-radius: 50%;
  position: relative;
}

.form__radio:checked {
  border-color: var(--primary-color);
}

.form__radio:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  cursor: pointer;
  line-height: 1.4;
}

.form__checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-color);
  border-radius: var(--border-radius-sm);
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.form__checkbox:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form__checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  font-size: 14px;
  font-weight: bold;
}

.form__error {
  display: none;
  color: var(--accent-color);
  font-size: var(--small-font-size);
  margin-top: var(--spacing-xs);
}

.form__actions {
  margin-top: var(--spacing-lg);
}

.form__submit {
  width: 100%;
  position: relative;
}

.form__status {
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-md);
  text-align: center;
  display: none;
}

.form__status--success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form__status--error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ===== SCROLL STYLES ===== */
.scroll-to-top {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-medium);
  z-index: var(--z-fixed);
}

.scroll-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
}

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--primary-color);
  z-index: var(--z-fixed);
  transition: width 0.1s ease;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOADING STATES ===== */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-md);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--light-gray);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

/* ===== RESPONSIVE NAVIGATION ===== */
@media screen and (min-width: 768px) {
  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
  }

  .nav__list {
    flex-direction: row;
    gap: var(--spacing-lg);
    margin-top: 0;
  }

  .nav__link {
    font-size: var(--normal-font-size);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
  }

  .nav__link::before {
    bottom: -2px;
    height: 2px;
  }

  .nav__link:hover,
  .nav__link.active-link {
    transform: none;
    background-color: rgba(44, 90, 160, 0.1);
  }

  .nav__link:hover::before,
  .nav__link.active-link::before {
    width: 100%;
  }

  .nav__close,
  .nav__toggle {
    display: none;
  }

  .nav__phone {
    display: block;
    font-size: var(--normal-font-size);
    padding: var(--spacing-sm) var(--spacing-lg);
    min-height: 48px;
  }

  .nav__contact {
    margin-left: var(--spacing-md);
  }
}

@media screen and (min-width: 992px) {
  .nav__list {
    gap: var(--spacing-xl);
  }

  .nav__link {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
  }

  .nav__phone {
    font-size: var(--normal-font-size);
    padding: var(--spacing-sm) var(--spacing-lg);
    min-height: 48px;
  }
}

/* ===== RESPONSIVE GALLERY ===== */
@media screen and (max-width: 767.98px) {
  .gallery__before-after {
    grid-template-columns: 1fr;
  }

  .lightbox__images {
    grid-template-columns: 1fr;
  }

  .lightbox__container {
    padding: var(--spacing-sm);
  }
}

/* ===== RESPONSIVE CONTACT FORM ===== */
@media screen and (min-width: 768px) {
  .contact__form {
    padding: var(--spacing-xxl);
  }

  .form__radio-group {
    justify-content: flex-start;
  }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-animate {
    opacity: 1;
    transform: none;
  }
}

/* Focus styles for better accessibility */
.btn:focus,
.form__input:focus,
.form__select:focus,
.form__textarea:focus,
.nav__link:focus,
.gallery__item:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000080;
    --text-color: #000000;
    --title-color: #000000;
    --border-color: #000000;
  }
}

/* Print styles */
@media print {

  .header,
  .nav__menu,
  .scroll-to-top,
  .lightbox,
  .form__submit {
    display: none !important;
  }

  .main {
    margin-top: 0;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* ====
= BEFORE/AFTER COMPARISON COMPONENT ===== */
.before-after-comparison {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  background-color: var(--light-gray);
  user-select: none;
}

.before-after__container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.before-after__before,
.before-after__after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.before-after__before img,
.before-after__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after__after img {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.1s ease;
}

.before-after__label {
  position: absolute;
  top: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-sm);
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--white-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}

.before-after__label--before {
  left: var(--spacing-sm);
}

.before-after__label--after {
  right: var(--spacing-sm);
}

.before-after__slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  z-index: 4;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.before-after__line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent 0%,
      var(--white-color) 10%,
      var(--white-color) 90%,
      transparent 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.before-after__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  border: 3px solid var(--white-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-medium);
  z-index: 5;
}

.before-after__handle:hover,
.before-after__handle:focus {
  background-color: var(--primary-color-dark);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-heavy);
}

.before-after__handle:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
}

.before-after__handle:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.before-after__handle-icon {
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: bold;
  pointer-events: none;
}

/* States */
.before-after-comparison--dragging {
  cursor: ew-resize;
}

.before-after-comparison--dragging .before-after__handle {
  transform: translate(-50%, -50%) scale(1.1);
}

.before-after-comparison--focused .before-after__handle {
  box-shadow: var(--shadow-heavy), 0 0 0 3px var(--primary-color);
}

.before-after-comparison--loaded {
  background-color: transparent;
}

.before-after-comparison--ready .before-after__handle {
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: var(--shadow-medium);
  }

  50% {
    box-shadow: var(--shadow-heavy);
  }
}

/* ===== ENHANCED LIGHTBOX STYLES ===== */
.enhanced-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
  backdrop-filter: blur(5px);
}

.enhanced-lightbox--active {
  opacity: 1;
  visibility: visible;
}

.enhanced-lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.enhanced-lightbox__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.enhanced-lightbox__close {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--title-color);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.enhanced-lightbox__close:hover {
  background-color: var(--white-color);
  transform: scale(1.1);
}

.enhanced-lightbox__content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-lg);
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  display: grid;
  grid-template-rows: 1fr auto;
}

.enhanced-lightbox__image-container {
  position: relative;
  min-height: 400px;
  background-color: var(--light-gray);
  overflow: hidden;
}

.enhanced-lightbox__image-container .before-after-comparison {
  height: 100%;
  border-radius: 0;
}

.enhanced-lightbox__image-container .before-after__container {
  aspect-ratio: unset;
  height: 100%;
}

.enhanced-lightbox__loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.enhanced-lightbox__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: var(--spacing-sm);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.enhanced-lightbox__info {
  padding: var(--spacing-lg);
  background-color: var(--white-color);
}

.enhanced-lightbox__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-sm);
  color: var(--title-color);
}

.enhanced-lightbox__description {
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.enhanced-lightbox__meta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.enhanced-lightbox__location,
.enhanced-lightbox__category,
.enhanced-lightbox__service-type {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  background-color: var(--light-gray);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
}

.enhanced-lightbox__tags {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.enhanced-lightbox__tag {
  font-size: var(--smaller-font-size);
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
}

.enhanced-lightbox__navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 var(--spacing-lg);
  pointer-events: none;
  z-index: 6;
}

.enhanced-lightbox__nav {
  pointer-events: all;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

.enhanced-lightbox__nav:hover {
  background-color: var(--white-color);
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.enhanced-lightbox__nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.enhanced-lightbox__counter {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--white-color);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--border-radius-lg);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  z-index: 7;
}

.enhanced-lightbox__controls {
  position: absolute;
  top: var(--spacing-lg);
  left: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-xs);
  z-index: 8;
}

.enhanced-lightbox__control {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.enhanced-lightbox__control:hover {
  background-color: var(--white-color);
  transform: scale(1.1);
}

/* Zoom functionality */
.enhanced-lightbox--zoomed .enhanced-lightbox__image-container {
  cursor: grab;
}

.enhanced-lightbox--zoomed .enhanced-lightbox__image-container:active {
  cursor: grabbing;
}

.enhanced-lightbox--zoomed .before-after-comparison {
  transform: scale(1.5);
  transition: transform 0.3s ease;
}

/* Fullscreen mode */
.enhanced-lightbox--fullscreen {
  background-color: rgba(0, 0, 0, 1);
}

.enhanced-lightbox--fullscreen .enhanced-lightbox__container {
  padding: 0;
}

.enhanced-lightbox--fullscreen .enhanced-lightbox__content {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
}

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

/* ===== RESPONSIVE STYLES FOR BEFORE/AFTER COMPARISON ===== */
@media screen and (max-width: 575.98px) {
  .before-after__handle {
    width: 40px;
    height: 40px;
  }

  .before-after__handle-icon {
    font-size: 1rem;
  }

  .before-after__label {
    font-size: var(--smaller-font-size);
    padding: 4px 8px;
  }

  .enhanced-lightbox__container {
    padding: var(--spacing-sm);
  }

  .enhanced-lightbox__content {
    max-height: 95vh;
  }

  .enhanced-lightbox__info {
    padding: var(--spacing-md);
  }

  .enhanced-lightbox__controls {
    top: var(--spacing-sm);
    left: var(--spacing-sm);
  }

  .enhanced-lightbox__close {
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 44px;
    height: 44px;
  }

  .enhanced-lightbox__counter {
    bottom: var(--spacing-sm);
  }
}

@media screen and (max-width: 767.98px) {
  .enhanced-lightbox__meta {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .enhanced-lightbox__navigation {
    padding: 0 var(--spacing-sm);
  }

  .enhanced-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
}

/* Touch-friendly enhancements */
@media (hover: none) and (pointer: coarse) {
  .before-after__handle {
    width: 48px;
    height: 48px;
  }

  .enhanced-lightbox__nav,
  .enhanced-lightbox__close,
  .enhanced-lightbox__control {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .before-after__after img {
    transition: none;
  }

  .before-after__handle,
  .enhanced-lightbox,
  .enhanced-lightbox__close,
  .enhanced-lightbox__nav,
  .enhanced-lightbox__control {
    transition: none !important;
    animation: none !important;
  }

  .enhanced-lightbox__spinner {
    animation: none;
    border: 4px solid var(--primary-color);
  }

  .before-after-comparison--ready .before-after__handle {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .before-after__handle {
    border-width: 4px;
    box-shadow: 0 0 0 2px var(--black-color);
  }

  .before-after__line {
    background: var(--black-color);
    box-shadow: 0 0 0 2px var(--white-color);
  }

  .enhanced-lightbox__close,
  .enhanced-lightbox__nav,
  .enhanced-lightbox__control {
    border: 2px solid var(--black-color);
  }
}

/* DELETED - DUPLICATE ABOUT SECTION */

.about__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.about__content {
  display: grid;
  gap: var(--spacing-xxl);
}

.about__main {
  display: grid;
  gap: var(--spacing-xl);
}

.about__text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about__heading {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.about__description {
  font-size: var(--normal-font-size);
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.about__description:last-child {
  margin-bottom: 0;
}

.about__description strong {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.about__stat {
  text-align: center;
  padding: var(--spacing-lg);
  background-color: var(--white-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  border: 1px solid rgba(44, 90, 160, 0.1);
}

.about__stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.about__stat-number {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.about__stat-label {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.about__expertise {
  margin-top: var(--spacing-xl);
}

.about__expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.about__expertise-item {
  background-color: var(--white-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  border: 1px solid rgba(44, 90, 160, 0.1);
  text-align: center;
}

.about__expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.about__expertise-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.about__expertise-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--spacing-sm);
}

.about__expertise-description {
  color: var(--text-color);
  line-height: 1.6;
  font-size: var(--normal-font-size);
}

.about__service-area {
  background-color: var(--white-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(44, 90, 160, 0.1);
}

.about__location-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about__location-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.about__location-description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  font-size: var(--normal-font-size);
}

.about__coverage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.about__coverage-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm);
  background-color: var(--light-gray);
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
}

.about__coverage-item:hover {
  background-color: rgba(44, 90, 160, 0.1);
  transform: translateY(-2px);
}

.about__coverage-icon {
  font-size: 1.2rem;
}

.about__coverage-text {
  font-weight: var(--font-medium);
  color: var(--text-color);
}

.about__testimonials {
  background-color: var(--white-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(44, 90, 160, 0.1);
}

.about__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.about__testimonial {
  background-color: var(--light-gray);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  position: relative;
  transition: var(--transition-medium);
}

.about__testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

.about__testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--spacing-lg);
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: var(--font-bold);
  line-height: 1;
}

.about__testimonial-content {
  margin-bottom: var(--spacing-md);
}

.about__testimonial-text {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  font-size: var(--normal-font-size);
}

.about__testimonial-author {
  color: var(--title-color);
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
}

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

.about__star {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.about__cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
  color: var(--white-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.about__cta-title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-md);
  color: var(--white-color);
}

.about__cta-description {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about__cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.about__cta-buttons .btn--primary {
  background-color: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
}

.about__cta-buttons .btn--primary:hover {
  background-color: var(--light-gray);
  border-color: var(--light-gray);
  transform: translateY(-2px);
}

.about__cta-buttons .btn--secondary {
  background-color: transparent;
  color: var(--white-color);
  border-color: var(--white-color);
}

.about__cta-buttons .btn--secondary:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ABOUT SECTION ===== */
@media screen and (max-width: 575.98px) {
  .about__stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about__stat {
    padding: var(--spacing-md);
  }

  .about__stat-number {
    font-size: var(--h1-font-size);
  }

  .about__expertise-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about__expertise-item {
    padding: var(--spacing-md);
  }

  .about__testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about__testimonial {
    padding: var(--spacing-md);
  }

  .about__coverage {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .about__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about__cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .about__service-area,
  .about__testimonials,
  .about__cta {
    padding: var(--spacing-lg);
  }
}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about__coverage {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .about__main {
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
  }

  .about__text {
    text-align: left;
    margin: 0;
  }

  .about__heading {
    text-align: left;
  }

  .about__description {
    text-align: left;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about__expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__coverage {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .about__expertise-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about__testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .about__main {
    grid-template-columns: 3fr 1fr;
  }
}

/* Scroll animations for about section */
.about__stat,
.about__expertise-item,
.about__testimonial {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about__stat.scroll-animate--visible,
.about__expertise-item.scroll-animate--visible,
.about__testimonial.scroll-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.about__stat:nth-child(1) {
  transition-delay: 0.1s;
}

.about__stat:nth-child(2) {
  transition-delay: 0.2s;
}

.about__stat:nth-child(3) {
  transition-delay: 0.3s;
}

.about__expertise-item:nth-child(1) {
  transition-delay: 0.1s;
}

.about__expertise-item:nth-child(2) {
  transition-delay: 0.2s;
}

.about__expertise-item:nth-child(3) {
  transition-delay: 0.3s;
}

.about__expertise-item:nth-child(4) {
  transition-delay: 0.4s;
}

.about__testimonial:nth-child(1) {
  transition-delay: 0.1s;
}

.about__testimonial:nth-child(2) {
  transition-delay: 0.2s;
}

.about__testimonial:nth-child(3) {
  transition-delay: 0.3s;
}

/* Reduced motion preferences for about section */
@media (prefers-reduced-motion: reduce) {

  .about__stat,
  .about__expertise-item,
  .about__testimonial {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* DELETED - DUPLICATE ABOUT SECTION 2 */

.about__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}

.about__main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.about__heading {
  color: var(--title-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.about__description {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.about__description strong {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
}

.about__stats {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  background: var(--white-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--primary-color);
}

.about__stat {
  text-align: center;
  padding: var(--spacing-md) 0;
}

.about__stat-number {
  display: block;
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: var(--spacing-xs);
}

.about__stat-label {
  color: var(--text-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about__expertise {
  margin-top: var(--spacing-lg);
}

.about__expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.about__expertise-item {
  background: var(--white-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition-medium);
  border: 1px solid rgba(44, 90, 160, 0.1);
}

.about__expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.about__expertise-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.about__expertise-title {
  color: var(--title-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.about__expertise-description {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.6;
}

.about__service-area {
  margin-top: var(--spacing-lg);
}

.about__location {
  background: var(--white-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  margin-top: var(--spacing-lg);
}

.about__location-title {
  color: var(--title-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.about__location-description {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.about__coverage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.about__coverage-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--light-gray);
  border-radius: var(--border-radius-md);
}

.about__coverage-icon {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.about__coverage-text {
  color: var(--text-color);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
}

.about__testimonials {
  margin-top: var(--spacing-lg);
}

.about__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.about__testimonial {
  background: var(--white-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition-medium);
}

.about__testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.about__testimonial-content {
  margin-bottom: var(--spacing-md);
}

.about__testimonial-text {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.about__testimonial-author {
  color: var(--title-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

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

.about__star {
  color: var(--secondary-color);
  font-size: 1.25rem;
}

.about__cta {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: var(--white-color);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  text-align: center;
  margin-top: var(--spacing-lg);
}

.about__cta-title {
  color: var(--white-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.about__cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about__cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* About Section Responsive Design */
@media screen and (max-width: 575.98px) {
  .about__main {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .about__stats {
    padding: var(--spacing-sm);
  }

  .about__stat-number {
    font-size: var(--h3-font-size);
  }

  .about__expertise-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about__expertise-item {
    padding: var(--spacing-lg);
  }

  .about__expertise-icon {
    font-size: 2.5rem;
  }

  .about__location {
    padding: var(--spacing-lg);
  }

  .about__coverage {
    grid-template-columns: 1fr;
  }

  .about__testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .about__testimonial {
    padding: var(--spacing-lg);
  }

  .about__cta {
    padding: var(--spacing-xl);
  }

  .about__cta-title {
    font-size: var(--h3-font-size);
  }

  .about__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .about__main {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .about__expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__coverage {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .about__main {
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
  }

  .about__expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__coverage {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .about__content {
    gap: var(--spacing-xxl);
  }

  .about__main {
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
  }

  .about__expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .about__expertise-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
  }

  .about__coverage {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
  }
}

/* =
==== SCROLL ANIMATIONS ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-medium);
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-medium);
}

.scroll-to-top:hover {
  background: var(--primary-color-dark);
  transform: translateY(0);
}

.scroll-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: var(--z-fixed);
  transition: width 0.1s ease;
}

/* Staggered animations for child elements */
.scroll-animate--visible .about__stat:nth-child(1) {
  transition-delay: 0.1s;
}

.scroll-animate--visible .about__stat:nth-child(2) {
  transition-delay: 0.2s;
}

.scroll-animate--visible .about__stat:nth-child(3) {
  transition-delay: 0.3s;
}

.scroll-animate--visible .about__expertise-item:nth-child(1) {
  transition-delay: 0.1s;
}

.scroll-animate--visible .about__expertise-item:nth-child(2) {
  transition-delay: 0.2s;
}

.scroll-animate--visible .about__expertise-item:nth-child(3) {
  transition-delay: 0.3s;
}

.scroll-animate--visible .about__expertise-item:nth-child(4) {
  transition-delay: 0.4s;
}

.scroll-animate--visible .about__testimonial:nth-child(1) {
  transition-delay: 0.1s;
}

.scroll-animate--visible .about__testimonial:nth-child(2) {
  transition-delay: 0.2s;
}

.scroll-animate--visible .about__testimonial:nth-child(3) {
  transition-delay: 0.3s;
}

/*====
= CONTACT SECTION =====*/
.contact {
  background: var(--section-bg);
  padding: var(--section-padding);
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.contact__info {
  background: var(--card-bg);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.contact__info-header {
  margin-bottom: var(--spacing-lg);
}

.contact__info-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--spacing-sm);
}

.contact__info-subtitle {
  color: var(--text-color);
  font-size: var(--normal-font-size);
}

.contact__details {
  display: grid;
  gap: var(--spacing-md);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
}

.contact__detail:hover {
  background: var(--light-gray);
}

.contact__detail-icon {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.contact__detail-content {
  flex: 1;
}

.contact__detail-label {
  font-weight: var(--font-medium);
  color: var(--title-color);
  margin-bottom: 0.25rem;
  font-size: var(--small-font-size);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact__detail-value {
  color: var(--text-color);
  font-size: var(--normal-font-size);
}

.contact__detail-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact__detail-link:hover {
  color: var(--primary-color-dark);
  text-decoration: underline;
}

.contact__service-area {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid #e9ecef;
}

.contact__service-area-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--spacing-sm);
}

.contact__service-area-description {
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
}

.contact__coverage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-sm);
}

.contact__coverage-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-color);
  font-size: var(--small-font-size);
}

.contact__coverage-icon {
  color: var(--primary-color);
  font-size: 1rem;
}

/*===== CONTACT FORM =====*/
.contact__form {
  background: var(--card-bg);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.contact__form-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.contact__form-header h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--spacing-xs);
}

.contact__form-header p {
  color: var(--text-color);
  font-size: var(--normal-font-size);
}

/*===== FORM STYLES =====*/
.form {
  display: grid;
  gap: var(--spacing-md);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form__label {
  font-weight: var(--font-medium);
  color: var(--title-color);
  font-size: var(--small-font-size);
  margin-bottom: 0.25rem;
}

.form__input,
.form__select,
.form__textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius-md);
  font-size: var(--normal-font-size);
  font-family: var(--body-font);
  background: var(--white-color);
  transition: var(--transition-fast);
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-color-light);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  appearance: none;
}

.form__radio-group {
  display: flex;
  gap: var(--spacing-md);
  margin-top: 0.25rem;
}

.form__radio-label {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  cursor: pointer;
  font-size: var(--small-font-size);
  color: var(--text-color);
}

.form__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form__radio-custom {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  position: relative;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.form__radio:checked+.form__radio-custom {
  border-color: var(--primary-color);
  background: var(--primary-color);
}

.form__radio:checked+.form__radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  background: var(--white-color);
  border-radius: 50%;
}

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  cursor: pointer;
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.5;
}

.form__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form__checkbox-custom {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius-sm);
  position: relative;
  transition: var(--transition-fast);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.form__checkbox:checked+.form__checkbox-custom {
  border-color: var(--primary-color);
  background: var(--primary-color);
}

.form__checkbox:checked+.form__checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  font-size: 0.875rem;
  font-weight: var(--font-bold);
}

.form__error {
  color: var(--accent-color);
  font-size: var(--smaller-font-size);
  margin-top: 0.25rem;
  display: none;
}

.form__input--error,
.form__select--error,
.form__textarea--error {
  border-color: var(--accent-color);
}

.form__radio-group--error .form__radio-custom {
  border-color: var(--accent-color);
}

.form__actions {
  margin-top: var(--spacing-md);
}

.form__submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  position: relative;
  overflow: hidden;
}

.form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form__submit-loading {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.form__submit-loading::after {
  content: '';
  width: 1rem;
  height: 1rem;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form__status {
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-md);
  font-size: var(--small-font-size);
  text-align: center;
  display: none;
}

.form__status--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form__status--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/*===== RESPONSIVE DESIGN =====*/
@media screen and (min-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xxl);
  }

  .form__radio-group {
    gap: var(--spacing-lg);
  }

  .form__submit {
    width: auto;
    min-width: 200px;
  }
}

@media screen and (min-width: 992px) {
  .contact__details {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__coverage {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*====
= MOBILE CONTACT ENHANCEMENTS =====*/
@media screen and (max-width: 768px) {

  /* Enhanced mobile contact buttons */
  .contact__detail-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white-color) !important;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: var(--font-medium);
    transition: var(--transition-fast);
    margin-top: 0.25rem;
  }

  .contact__detail-link:hover {
    background: var(--primary-color-dark);
    color: var(--white-color) !important;
  }

  /* Mobile-friendly navigation phone button */
  .nav__phone {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-weight: var(--font-medium);
    font-size: var(--small-font-size);
    transition: var(--transition-fast);
  }

  .nav__phone:hover {
    background: var(--secondary-color-dark);
  }

  /* Footer contact links mobile styling */
  .footer__links a[href^="tel:"],
  .footer__links a[href^="mailto:"] {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
  }

  .footer__links a[href^="tel:"]:hover,
  .footer__links a[href^="mailto:"]:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

/*===== CONTACT ACCESSIBILITY IMPROVEMENTS =====*/
/* Focus states for better keyboard navigation */
.contact__detail-link:focus,
.nav__phone:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .contact__detail-link {
    border: 2px solid currentColor;
  }

  .form__input:focus,
  .form__select:focus,
  .form__textarea:focus {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .contact__detail,
  .form__input,
  .form__select,
  .form__textarea,
  .contact__detail-link {
    transition: none;
  }
}

/*===== NA
VIGATION PHONE PROMINENCE =====*/
.nav__phone--prominent {
  background: var(--accent-color) !important;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
  }
}

/* Disable animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .nav__phone--prominent {
    animation: none;
  }
}

/* ===
== FOOTER STYLES ===== */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  color: var(--white-color);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  margin-top: var(--spacing-xxl);
}





.footer__brand {
  margin-bottom: var(--spacing-lg);
}

.footer__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--white-color);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.footer__description {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}

.footer__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer__credential {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  background-color: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
}

.footer__credential:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.footer__credential-icon {
  font-size: 1.2rem;
}

.footer__credential-text {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--white-color);
}

.footer__section-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--white-color);
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: var(--spacing-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--normal-font-size);
  transition: var(--transition-fast);
  display: inline-block;
  position: relative;
  padding-left: var(--spacing-md);
}

.footer__link::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  transition: var(--transition-fast);
  transform: translateX(-5px);
  opacity: 0;
}

.footer__link:hover {
  color: var(--white-color);
  transform: translateX(5px);
}

.footer__link:hover::before {
  transform: translateX(0);
  opacity: 1;
}

.footer__contact {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
  padding: 0 !important;
}

.footer__contact-link {
  margin-top: 0.1rem !important;
  margin-bottom: 0.1rem !important;
  line-height: 1.2 !important;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-sm);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
}

.footer__contact-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.footer__contact-icon {
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer__contact-label {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__contact-link {
  color: var(--white-color);
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: var(--transition-fast);
}

.footer__contact-link:hover {
  color: var(--secondary-color);
}

.footer__contact-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.footer__cta {
  margin-top: var(--spacing-lg);
}

.footer__cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  font-weight: var(--font-semi-bold);
  font-size: var(--normal-font-size);
  transition: var(--transition-medium);
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--secondary-color);
  margin-bottom: 0.5rem !important;
}

.footer__cta-button:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}



.footer__copyright {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer__copyright p {
  margin: 0;
  font-size: var(--small-font-size);
  color: rgba(255, 255, 255, 0.8);
}

.footer__tagline {
  font-style: italic;
  color: var(--secondary-color) !important;
  font-weight: var(--font-medium);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.footer__legal-text {
  font-size: var(--small-font-size);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--font-medium);
}

.footer__separator {
  color: var(--secondary-color);
  font-weight: var(--font-bold);
}

/* ===== RESPONSIVE FOOTER STYLES ===== */
@media screen and (max-width: 575.98px) {
  .footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer__section--main {
    grid-column: span 1;
  }

  .footer__title {
    font-size: var(--h3-font-size);
  }

  .footer__credentials {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .footer__credential {
    justify-content: center;
    text-align: center;
  }

  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .footer__contact-item {
    padding: var(--spacing-sm);
  }
}

@media screen and (max-width: 767.98px) {
  .footer__content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .footer__section--main {
    grid-column: span 1;
  }

  .footer__credentials {
    justify-content: center;
  }

  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .footer__section--main {
    grid-column: span 2;
  }
}

@media screen and (min-width: 992px) {
  .footer__content {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
  }

  .footer__section--main {
    grid-column: span 1;
  }
}

/* ===== FOOTER ACCESSIBILITY IMPROVEMENTS ===== */
.footer__link:focus,
.footer__contact-link:focus,
.footer__cta-button:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
  border-radius: var(--border-radius-sm);
}

/* High contrast mode support for footer */
@media (prefers-contrast: high) {
  .footer {
    background: var(--black-color);
    border-top: 3px solid var(--white-color);
  }

  .footer__credential,
  .footer__contact-item {
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .footer__section-title::after {
    background-color: var(--white-color);
  }
}

/* Reduced motion preferences for footer */
@media (prefers-reduced-motion: reduce) {

  .footer__credential,
  .footer__contact-item,
  .footer__link,
  .footer__cta-button {
    transition: none !important;
    transform: none !important;
  }

  .footer__credential:hover,
  .footer__contact-item:hover,
  .footer__link:hover,
  .footer__cta-button:hover {
    transform: none !important;
  }
}

/* Print styles for footer */
@media print {
  .footer {
    background: none !important;
    color: var(--black-color) !important;
    border-top: 2px solid var(--black-color);
  }

  .footer__title,
  .footer__section-title,
  .footer__contact-link,
  .footer__link {
    color: var(--black-color) !important;
  }

  .footer__credential,
  .footer__contact-item {
    background: none !important;
    border: 1px solid var(--black-color) !important;
  }

  .footer__cta-button {
    display: none !important;
  }
}

/*===== IRISH BACKGROUND ELEMENTS & PATTERNS =====*/

/* Subtle Irish pattern background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(34, 139, 34, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(34, 139, 34, 0.02) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* Section backgrounds with Irish touches */
.hero {
  background: linear-gradient(135deg,
      rgba(34, 139, 34, 0.05) 0%,
      rgba(255, 140, 0, 0.03) 50%,
      rgba(34, 139, 34, 0.05) 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23228B22' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  z-index: -1;
}

.services {
  background: linear-gradient(45deg,
      rgba(240, 248, 240, 0.8) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(240, 248, 240, 0.8) 100%);
  position: relative;
}

.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FF8C00' fill-opacity='0.015'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20s-20-8.954-20-20 8.954-20 20-20 20 8.954 20 20zm0-20c0 11.046-8.954 20-20 20s-20-8.954-20-20 8.954-20 20-20 20 8.954 20 20z'/%3E%3C/g%3E%3C/svg%3E") repeat;
  z-index: -1;
}

/* DELETED - DUPLICATE ABOUT SECTION 3 */

.gallery {
  background: linear-gradient(-45deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(240, 248, 240, 0.5) 50%,
      rgba(255, 255, 255, 1) 100%);
  position: relative;
}

.contact {
  background: linear-gradient(135deg,
      rgba(34, 139, 34, 0.08) 0%,
      rgba(240, 248, 240, 1) 50%,
      rgba(255, 140, 0, 0.05) 100%);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23228B22' fill-opacity='0.02'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z' fill-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E") repeat;
  z-index: -1;
}

/* Irish-themed decorative elements */
.section__header::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
  margin: var(--spacing-lg) auto 0;
  border-radius: 2px;
}

/* Enhanced card shadows with Irish colors */
.service-card,
.about__expertise-card,
.gallery__item {
  box-shadow:
    0 4px 16px rgba(34, 139, 34, 0.08),
    0 2px 8px rgba(255, 140, 0, 0.05);
}

.service-card:hover,
.about__expertise-card:hover,
.gallery__item:hover {
  box-shadow:
    0 8px 32px rgba(34, 139, 34, 0.12),
    0 4px 16px rgba(255, 140, 0, 0.08);
}

/* Irish flag inspired accent lines - REMOVED */

.nav__brand {
  position: relative;
}

/* Floating elements for visual interest */
.hero__container::before {
  content: '🍀';
  position: absolute;
  top: 10%;
  right: 10%;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
  z-index: -1;
}

.hero__container::after {
  content: '🍀';
  position: absolute;
  bottom: 20%;
  left: 5%;
  font-size: 1.5rem;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite reverse;
  z-index: -1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Irish-themed button enhancements */
.btn--primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  box-shadow: 0 4px 16px rgba(34, 139, 34, 0.3);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color-dark) 100%);
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
}

/* Enhanced navigation with Irish touches */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(34, 139, 34, 0.1);
}

/* Irish-themed footer enhancement */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpolygon points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E") repeat;
  z-index: 0;
}

.footer__content {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments for backgrounds */
@media screen and (max-width: 768px) {

  .hero__container::before,
  .hero__container::after {
    display: none;
  }

  .services::after,
  .contact::before {
    opacity: 0.5;
  }
}

/* Loading animation with Irish colors */
@keyframes irishPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 139, 34, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 139, 34, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 139, 34, 0);
  }
}

.btn--primary:active {
  animation: irishPulse 0.6s;
}

/* Enhanced text colors for better Irish theme */
.hero__title {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__title {
  color: var(--primary-color-dark);
  position: relative;
}

/* Irish-themed accent for statistics */
.about__stat-number {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*===== ENH
ANCED ABOUT SECTION STYLES =====*/

/* About Hero Section */
.about__hero {
  margin-bottom: 0;
}

.about__hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  margin-bottom: 0;
}

.about__hero-text {
  padding-right: var(--spacing-lg);
}

.about__hero-title {
  font-size: var(--h2-font-size);
  color: var(--primary-color-dark);
  margin-bottom: var(--spacing-lg);
  font-weight: var(--font-bold);
}

.about__hero-description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.about__feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: rgba(34, 139, 34, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.about__feature-icon {
  font-size: 1.2rem;
}

.about__feature-text {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--primary-color-dark);
}

.about__hero-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(34, 139, 34, 0.15);
}

.about__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.about__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-lg);
}

.about__image-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about__badge-text {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--primary-color-dark);
}

/* Enhanced Statistics */
.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.05) 0%, rgba(255, 140, 0, 0.03) 100%);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(34, 139, 34, 0.1);
}

.about__stat {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(34, 139, 34, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(34, 139, 34, 0.15);
}

.about__stat-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.about__stat-number {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.about__stat-label {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--primary-color-dark);
  margin-bottom: var(--spacing-xs);
}

.about__stat-desc {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

/* Why Choose Us Section */
.about__why-choose {
  margin: var(--spacing-xl) 0;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 248, 240, 0.8) 100%);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(34, 139, 34, 0.1);
}

.about__section-title {
  font-size: var(--h2-font-size);
  color: var(--primary-color-dark);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  font-weight: var(--font-bold);
  position: relative;
}

.about__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
  margin: var(--spacing-md) auto 0;
  border-radius: 2px;
}

.about__why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.about__why-item {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(34, 139, 34, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(34, 139, 34, 0.12);
}

.about__why-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 16px rgba(34, 139, 34, 0.3);
}

.about__why-title {
  font-size: var(--h3-font-size);
  color: var(--primary-color-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: var(--font-semi-bold);
}

.about__why-text {
  color: var(--text-color);
  line-height: 1.6;
  font-size: var(--normal-font-size);
}

/* Process Section */
.about__process {
  margin: var(--spacing-xl) 0;
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.03) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 140, 0, 0.03) 100%);
  border-radius: var(--border-radius-lg);
}

.about__process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

.about__step {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(34, 139, 34, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.about__step:hover {
  transform: translateY(-3px);
}

.about__step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(34, 139, 34, 0.3);
}

.about__step-content {
  flex: 1;
}

.about__step-title {
  font-size: var(--h3-font-size);
  color: var(--primary-color-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: var(--font-semi-bold);
}

.about__step-text {
  color: var(--text-color);
  line-height: 1.6;
  font-size: var(--normal-font-size);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .about__hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .about__hero-text {
    padding-right: 0;
  }

  .about__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__why-grid {
    grid-template-columns: 1fr;
  }

  .about__process-steps {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .about__features {
    grid-template-columns: 1fr;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
  }

  .about__why-item {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-lg);
  }

  .about__why-icon {
    align-self: center;
  }

  .about__step {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-lg);
  }

  .about__step-number {
    align-self: center;
  }

  .about__hero-title {
    font-size: var(--h3-font-size);
  }

  .about__section-title {
    font-size: var(--h3-font-size);
  }
}

@media screen and (max-width: 480px) {

  .about__hero,
  .about__why-choose,
  .about__process {
    padding: var(--spacing-lg);
  }

  .about__stats {
    padding: var(--spacing-md);
  }

  .about__stat {
    padding: var(--spacing-md);
  }

  .about__stat-number {
    font-size: var(--h2-font-size);
  }
}

/*===== 
ABOUT SECTION - REDESIGNED =====*/
.about {
  background: var(--section-bg);
  padding: var(--section-padding);
}

/* Header with Stats */
.about__header-stats {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  margin-bottom: var(--spacing-xxl);
}

.about__intro {
  max-width: none;
}

.about__description {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.7;
  margin-top: var(--spacing-md);
}

.about__quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.stat-item {
  background: var(--white-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-number {
  display: block;
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  display: block;
  font-size: var(--small-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
}

/* Features Showcase */
.about__features-showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  margin-bottom: var(--spacing-xxl);
}

.about__features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.feature-card {
  background: var(--white-color);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.feature-card h4 {
  color: var(--title-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: var(--text-color);
  line-height: 1.6;
  font-size: var(--normal-font-size);
}

.about__showcase-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about__showcase-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white-color);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-md);
  font-weight: var(--font-medium);
}

/* Value Process Section */
.about__value-process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xxl);
}

.value-proposition h3,
.process-flow h3 {
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-lg);
}

.value-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

.value-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

.value-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.value-content h4 {
  color: var(--title-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-xs);
}

.value-content p {
  color: var(--text-color);
  line-height: 1.6;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

.process-step:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: var(--normal-font-size);
  flex-shrink: 0;
}

.step-info h4 {
  color: var(--title-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-xs);
}

.step-info p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Expertise & Coverage */
.about__expertise-coverage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-xxl);
  margin-bottom: var(--spacing-xxl);
}

.expertise-section h3,
.coverage-section h3 {
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-lg);
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.expertise-card {
  background: var(--white-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

.expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.expertise-icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.expertise-card h4 {
  color: var(--title-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--spacing-sm);
}

.expertise-card p {
  color: var(--text-color);
  line-height: 1.6;
}

.coverage-intro {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.coverage-areas {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.coverage-area {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--white-color);
  border-radius: var(--border-radius-md);
  color: var(--text-color);
  font-weight: var(--font-medium);
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
}

.coverage-area:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Final CTA */
.about__final-cta {
  text-align: center;
  background: var(--white-color);
  padding: var(--spacing-xxl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.about__final-cta h3 {
  color: var(--title-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-md);
}

.about__final-cta p {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {

  .about__header-stats,
  .about__features-showcase,
  .about__value-process,
  .about__expertise-coverage {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .about__quick-stats {
    grid-template-columns: repeat(4, 1fr);
    margin-top: var(--spacing-lg);
  }

  .about__features-grid,
  .expertise-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .about__quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__features-grid,
  .expertise-cards {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .process-steps {
    gap: var(--spacing-md);
  }

  .value-item,
  .process-step {
    padding: var(--spacing-md);
  }

  .feature-card,
  .expertise-card {
    padding: var(--spacing-md);
  }

  .about__final-cta {
    padding: var(--spacing-xl);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 480px) {
  .about__quick-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: var(--spacing-md);
  }

  .about__showcase-image img {
    height: 250px;
  }
}/* H
ero Stats Section */
.hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  justify-content: flex-start;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Services - Compact */
.hero__services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__service {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  border: 1px solid rgba(34, 139, 34, 0.1);
  transition: var(--transition-medium);
}

.hero__service:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--primary-color);
  transform: translateX(0.25rem);
  box-shadow: 0 6px 20px rgba(34, 139, 34, 0.15);
}

.hero__service-icon {
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__service-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero__service-text strong {
  font-size: 1rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
}

.hero__service-text span {
  font-size: 0.8rem;
  color: var(--text-color);
}

/* Hero CTA - Compact */
.hero__cta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: var(--font-semi-bold);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero__btn--primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(34, 139, 34, 0.3);
}

.hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 139, 34, 0.4);
}

.hero__btn--secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.hero__btn--secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

.hero__btn-icon {
  transition: transform 0.3s ease;
}

.hero__btn:hover .hero__btn-icon {
  transform: translateX(0.25rem);
}

/* Hero Trust Section - Aligned with CTA Buttons */
.hero__trust {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(34, 139, 34, 0.1);
  margin-top: auto;
}

.hero__trust-text {
  font-size: 0.8rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  font-weight: var(--font-medium);
}

.hero__trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__trust-badge {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Hero Visual Section */
.hero__visual {
  position: relative;
}

.hero__comparison-wrapper {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(34, 139, 34, 0.1);
}

.hero__comparison-header {
  text-align: center;
  margin-bottom: 2rem;
}

.hero__comparison-title {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.hero__comparison-subtitle {
  font-size: 0.875rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
}

/* New Hero Comparison Slider */
.hero__comparison {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  cursor: ew-resize;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero__comparison-before,
.hero__comparison-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__comparison-before {
  z-index: 1;
}

.hero__comparison-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.hero__comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__comparison-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.hero__comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  border: 4px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 11;
  color: white;
  font-weight: bold;
  box-shadow: 0 6px 25px rgba(34, 139, 34, 0.4);
  transition: all 0.3s ease;
}

.hero__comparison-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 35px rgba(34, 139, 34, 0.5);
}

.hero__comparison-handle svg {
  width: 24px;
  height: 24px;
}

.hero__comparison-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 15;
}

.hero__comparison-label {
  position: absolute;
  top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  font-weight: var(--font-bold);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.hero__comparison-label--before {
  left: 1.5rem;
}

.hero__comparison-label--after {
  right: 1.5rem;
}

.hero__comparison-caption {
  text-align: center;
  margin-top: 1.5rem;
}

.hero__comparison-caption p {
  font-size: 0.875rem;
  color: var(--text-color);
  font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .hero__container {
    gap: 3rem;
    padding: 0 1.5rem;
  }
  
  .hero__stats {
    gap: 1.5rem;
  }
  
  .hero__stat-number {
    font-size: 2rem;
  }
}

@media screen and (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero__content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .hero__stats {
    justify-content: center;
  }
  
  .hero__cta {
    justify-content: center;
  }
  
  .hero__comparison {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  /* Show mobile comparison on mobile */
  .hero__mobile-comparison {
    display: block;
  }
  
  /* Hide desktop comparison on mobile */
  .hero__visual {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .hero__container {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero__subtitle {
    font-size: 1.125rem;
  }
  
  .hero__stats {
    gap: 1rem;
  }
  
  .hero__stat-number {
    font-size: 1.75rem;
  }
  
  .hero__stat-label {
    font-size: 0.75rem;
  }
  
  .hero__services {
    gap: 1rem;
  }
  
  .hero__service {
    padding: 1rem;
  }
  
  .hero__service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero__trust-badges {
    justify-content: center;
    gap: 1rem;
  }
  
  .hero__comparison-wrapper {
    padding: 1.5rem;
  }
  
  .hero__comparison {
    height: 300px;
  }
  
  .hero__comparison-handle {
    width: 50px;
    height: 50px;
  }
  
  .hero__comparison-handle svg {
    width: 20px;
    height: 20px;
  }
  
  .hero__comparison-label {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 480px) {
  .hero__badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero__services {
    gap: 0.75rem;
  }
  
  .hero__service {
    flex-direction: column;
    text-align: center;
    padding: 1rem 0.75rem;
  }
  
  .hero__comparison-wrapper {
    padding: 1rem;
  }
  
  .hero__comparison {
    height: 250px;
  }
}/* Hero
 Stats Section - Compact */
.hero__stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  justify-content: flex-start;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Services - Compact */
.hero__services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__service {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  border: 1px solid rgba(34, 139, 34, 0.1);
  transition: var(--transition-medium);
}

.hero__service:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--primary-color);
  transform: translateX(0.25rem);
  box-shadow: 0 6px 20px rgba(34, 139, 34, 0.15);
}

.hero__service-icon {
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__service-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero__service-text strong {
  font-size: 1rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
}

.hero__service-text span {
  font-size: 0.8rem;
  color: var(--text-color);
}

/* Hero Visual Section - Flex Layout for Alignment */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Hero Comparison - Direct Background Integration */
.hero__comparison {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  cursor: ew-resize;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero__comparison-before,
.hero__comparison-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__comparison-before {
  z-index: 1;
}

.hero__comparison-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.hero__comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__comparison-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.hero__comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  border: 3px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 11;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(34, 139, 34, 0.4);
  transition: all 0.3s ease;
}

.hero__comparison-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(34, 139, 34, 0.5);
}

.hero__comparison-handle svg {
  width: 20px;
  height: 20px;
}

.hero__comparison-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 15;
}

.hero__comparison-label {
  position: absolute;
  top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  font-weight: var(--font-bold);
  border-radius: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.hero__comparison-label--before {
  left: 1rem;
}

.hero__comparison-label--after {
  right: 1rem;
}

/* Responsive - Compact */
@media screen and (max-width: 992px) {
  .hero__stats {
    justify-content: center;
    gap: 1rem;
  }
  
  .hero__stat-number {
    font-size: 1.75rem;
  }
  
  .hero__comparison {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .hero__stats {
    gap: 0.75rem;
  }
  
  .hero__stat-number {
    font-size: 1.5rem;
  }
  
  .hero__stat-label {
    font-size: 0.7rem;
  }
  
  .hero__services {
    gap: 0.75rem;
  }
  
  .hero__service {
    padding: 0.75rem;
  }
  
  .hero__service-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .hero__comparison {
    height: 300px;
  }
  
  .hero__comparison-handle {
    width: 45px;
    height: 45px;
  }
  
  .hero__comparison-handle svg {
    width: 18px;
    height: 18px;
  }
}/* Hero
 Comparison Header */
.hero__comparison-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero__comparison-title {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero__comparison-subtitle {
  font-size: 0.875rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
  margin-bottom: 0;
}

/* Responsive for comparison header */
@media screen and (max-width: 768px) {
  .hero__comparison-header {
    margin-bottom: 1rem;
  }
  
  .hero__comparison-title {
    font-size: 1.25rem;
  }
  
  .hero__comparison-subtitle {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .hero__comparison-title {
    font-size: 1.125rem;
  }
  
  .hero__comparison-subtitle {
    font-size: 0.75rem;
  }
}/* He
ro Comparison Header - Left Aligned */
.hero__comparison-header {
  text-align: left;
  margin-bottom: 1.5rem;
  padding: 0;
}

.hero__comparison-title {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__comparison-subtitle {
  font-size: 0.875rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
  margin-bottom: 0;
  text-align: left;
  line-height: 1.4;
}

/* Fix text cutoff issues */
.hero__title,
.hero__title-main,
.hero__title-accent {
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
}

.hero__title-accent {
  display: block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive adjustments for header alignment */
@media screen and (max-width: 992px) {
  .hero__comparison-header {
    text-align: center;
  }
  
  .hero__comparison-title,
  .hero__comparison-subtitle {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .hero__comparison-header {
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .hero__comparison-title {
    font-size: 1.25rem;
    text-align: center;
  }
  
  .hero__comparison-subtitle {
    font-size: 0.8rem;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .hero__comparison-title {
    font-size: 1.125rem;
  }
  
  .hero__comparison-subtitle {
    font-size: 0.75rem;
  }
}/* Hero C
omparison Header - Top Aligned with Main Title */
.hero__comparison-header {
  text-align: left;
  margin-bottom: 1.5rem;
  padding: 0;
  margin-top: 0;
}

.hero__comparison-title {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-top: 0;
  padding-top: 0;
}

.hero__comparison-subtitle {
  font-size: 0.875rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
  margin-bottom: 0;
  text-align: left;
  line-height: 1.4;
}

/* Fix text cutoff issues for main title */
.hero__title,
.hero__title-main,
.hero__title-accent {
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
}

/* Ensure proper alignment between left and right sections */
.hero__content,
.hero__visual {
  align-self: start;
}

/* Make sure both sections start at the same vertical position */
.hero__visual {
  margin-top: 0;
  padding-top: 0;
}

/* Responsive adjustments for header alignment */
@media screen and (max-width: 992px) {
  .hero__comparison-header {
    text-align: center;
  }
  
  .hero__comparison-title,
  .hero__comparison-subtitle {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .hero__comparison-header {
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .hero__comparison-title {
    font-size: 1.25rem;
    text-align: center;
  }
  
  .hero__comparison-subtitle {
    font-size: 0.8rem;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .hero__comparison-title {
    font-size: 1.125rem;
  }
  
  .hero__comparison-subtitle {
    font-size: 0.75rem;
  }
}

/* Mobile Before/After Comparison - Hidden on desktop */
.hero__mobile-comparison {
  display: none;
  margin-bottom: 2rem;
}

/* Hero Comparison Header - Center Aligned with Before/After */
.hero__comparison-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0;
  margin-top: 0;
}

.hero__comparison-title {
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  color: var(--title-color);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-top: 0;
  padding-top: 0;
}

.hero__comparison-subtitle {
  font-size: 0.875rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
  margin-bottom: 0;
  text-align: center;
  line-height: 1.4;
}

/* Override any previous left-aligned styles */
.hero__visual .hero__comparison-header,
.hero__visual .hero__comparison-title,
.hero__visual .hero__comparison-subtitle {
  text-align: center;
}

/* Responsive - keep centered on all screen sizes */
@media screen and (max-width: 992px) {
  .hero__comparison-header {
    text-align: center;
  }
  
  .hero__comparison-title,
  .hero__comparison-subtitle {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .hero__comparison-header {
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .hero__comparison-title {
    font-size: 1.25rem;
    text-align: center;
  }
  
  .hero__comparison-subtitle {
    font-size: 0.8rem;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .hero__comparison-title {
    font-size: 1.125rem;
  }
  
  .hero__comparison-subtitle {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 768px) {
  /* Center CTA buttons and stack vertically */
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  /* Center contact info title and form title */
  .contact__info-header,
  .form__header {
    text-align: center;
  }
  .contact__info-title,
  .form__title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  /* About section: center all text and stack stats vertically */
  .about__main,
  .about__description,
  .about__header-stats,
  .about__stats {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .about__stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
  }
  .about__stat {
    width: 100%;
    margin: 0 auto;
  }

  /* Hero image: center and fit nicely on mobile */
  .hero__background,
  .hero__img,
  .hero__image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    max-width: 100vw;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 0 0 20px 20px;
  }
  .hero__background {
    min-height: 180px;
    max-height: 220px;
    overflow: hidden;
  }
}

.footer__main, .footer__brand, .hero__title {
  margin-top: 2.5rem !important;
}

@media screen and (max-width: 768px) {
  .contact__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
  }
  .contact__form, .contact__info {
    margin: 1rem auto;
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
}