@charset "UTF-8";
:root {
  /* Original light theme values (commented for reversion):
  --theme-nav-background: rgba(255, 255, 255, 0.95);
  --theme-nav-text: var(--secondary-color);
  --theme-nav-text-hover: var(--primary-color);
  --theme-nav-text-focus: var(--secondary-color);
  --theme-nav-text-active: var(--secondary-color);
  --theme-nav-border: rgba(0, 0, 0, 0.1); */

  /* Matching dark theme values (with less transparency): */
  --theme-nav-background: rgba(0, 37, 157, 1);
  --theme-nav-text: #ffffff;
  --theme-nav-text-hover: var(--tertiary-color);
  --theme-nav-text-focus: var(--tertiary-color);
  --theme-nav-text-active: var(--tertiary-color);
  --theme-nav-border: rgba(255, 255, 255, 0.1);
  --theme-services-background: #ffffff;
  --theme-services-tile-background: #f8fafc;
  --theme-services-text: #374151;
  --theme-services-title: var(--primary-color);
  --theme-contact-background: #ffffff;
  --theme-contact-tile-background: #f8fafc;
  --theme-contact-text: #374151;
  --theme-contact-title: var(--primary-color);
}

:root[data-theme=dark] {
  --background-color: #333333;
  --theme-nav-background: rgba(0, 37, 157, 1);
  --theme-nav-text: #ffffff;
  --theme-nav-text-hover: var(--tertiary-color);
  --theme-nav-text-focus: var(--tertiary-color);
  --theme-nav-text-active: var(--tertiary-color);
  --theme-nav-hover-brightness: 1.4;
  --theme-nav-border: rgba(255, 255, 255, 0.1);
  --theme-services-background: #f8fafc;
  --theme-services-tile-background: rgba(255, 255, 255, 0.1);
  --theme-services-tile-border: rgba(255, 255, 255, 0.15);
  --theme-services-text: #ffffff;
  --theme-services-title: var(--tertiary-color);
  --theme-contact-background: #f8fafc;
  --theme-contact-tile-background: rgba(255, 255, 255, 0.1);
  --theme-contact-tile-border: rgba(255, 255, 255, 0.15);
  --theme-contact-text: #ffffff;
  --theme-contact-title: var(--tertiary-color);
}

:root {
  --primary-color: #1C8241;
  --secondary-color: #00259D;
  --tertiary-color: #f59e0b;
  --font-family: Poppins;
  --font-size-base: 16px;
  --border-radius: 8px;
  --text-color: #1f2937;
  --text-color-muted: #6b7280;
  --text-color-inverse: #ffffff;
  --background-color: #f8f9fa;
  --background-color-alt: #f9fafb;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
}

h1 {
  font-size: 2.25rem;
  line-height: 1.1;
}

h2 {
  font-size: 1.875rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.4;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.4;
}

h6 {
  font-size: 1rem;
  line-height: 1.4;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 200ms;
}
a:hover {
  color: var(--primary-color);
}

ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.btn:active {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.btn-primary:active {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-primary {
  background-color: var(--primary-color);
  color: white;
}
.btn-primary:hover:not(:disabled) {
  filter: brightness(0.9);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

input, textarea, select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  transition: border-color 200ms;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
input::placeholder, textarea::placeholder, select::placeholder {
  color: #9ca3af;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 320px) {
  .container {
    padding: 0 1rem;
  }
}

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

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

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

.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;
}

@media (min-width: 320px) {
  .mobile\\:hidden {
    display: none;
  }
}
@media (min-width: 768px) {
  .tablet\\:block {
    display: block;
  }
  .tablet\\:hidden {
    display: none;
  }
}
@media (min-width: 1024px) {
  .desktop\\:block {
    display: block;
  }
  .desktop\\:hidden {
    display: none;
  }
}
:root {
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
}

:root {
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
}

.component-hero,
.component-services,
.component-contact {
  box-sizing: border-box;
}
.component-hero *,
.component-hero *::before,
.component-hero *::after,
.component-services *,
.component-services *::before,
.component-services *::after,
.component-contact *,
.component-contact *::before,
.component-contact *::after {
  box-sizing: inherit;
}
.component-hero,
.component-services,
.component-contact {
  color: inherit;
  font-family: var(--font-family);
}

.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;
}

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

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

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

.loading {
  opacity: 0.6;
  pointer-events: none;
}
.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error-state {
  border: 1px solid #dc2626;
  background-color: #fef2f2;
}

.success-state {
  border: 1px solid #16a34a;
  background-color: #f0fdf4;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--secondary-color-rgb, 100, 116, 139), 0.6);
  border-radius: 4px;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {
  outline: none;
  border-color: rgba(var(--secondary-color-rgb, 100, 116, 139), 0.6);
  box-shadow: 0 0 0 3px rgba(var(--secondary-color-rgb, 100, 116, 139), 0.1);
}

.focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--secondary-color-rgb, 100, 116, 139), 0.6);
  border-radius: 4px;
}

:root {
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
}

.component-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background: linear-gradient(to bottom,
    rgb(0, 37, 157) 0%,
    rgb(0, 37, 157) 66%,
    rgb(0, 30, 126) 100%);
  border-bottom: 1px solid var(--theme-nav-border, rgba(0, 0, 0, 0.1));
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  min-height: 120px;
  position: relative;
}
@media (max-width: 768px) {
  .nav-container {
    overflow: visible;
  }
}

.nav-logo {
  flex-shrink: 0;
}
.nav-logo .nav-logo-link {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  padding: 0.25rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-logo .nav-logo-link:focus {
  outline: none;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.12);
}
.nav-logo .nav-logo-img {
  height: auto;
  max-height: 90px;
  width: auto;
  max-width: 280px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
@media (max-width: 340px) {
  .nav-logo .nav-logo-img {
    max-height: 54px;
    max-width: 168px;
  }
}
@media (min-width: 341px) and (max-width: 640px) {
  .nav-logo .nav-logo-img {
    max-height: 68px;
    max-width: 210px;
  }
}
@media (min-width: 641px) and (max-width: 768px) {
  .nav-logo .nav-logo-img {
    max-height: 78px;
    max-width: 242px;
  }
}
@media (min-width: 769px) and (max-width: 904px) {
  .nav-logo .nav-logo-img {
    max-height: 75px;
    max-width: 232px;
  }
}

:root[data-theme=dark] .nav-logo-img {
  background: transparent;
  padding: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
@media (min-width: 769px) and (max-width: 964px) {
  .nav-links {
    gap: 0.18rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 102px;
    left: 0;
    right: 0;
    width: 100vw;
    height: auto;
    background: var(--secondary-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-direction: column;
    padding: 0;
    margin: 0;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
  }
  .nav-links.nav-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .nav-item {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }
}

.nav-link {
  display: block;
  text-decoration: none;
  color: var(--theme-nav-text, var(--primary-color));
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  margin: 0 0.25rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 8px;
  border: 2px solid transparent;
}
.nav-link:hover {
  color: var(--theme-nav-text-hover);
}
.nav-link:focus {
  outline: none;
  color: var(--theme-nav-text-focus);
  border-color: var(--tertiary-color);
  box-shadow: 0 0 0 2px rgba(var(--tertiary-color-rgb, 245, 158, 11), 0.2);
}
.nav-link:active {
  color: var(--theme-nav-text-active);
  border-color: var(--tertiary-color);
}
.nav-link[href^="#"] {
  cursor: pointer;
}
@media (min-width: 769px) and (max-width: 964px) {
  .nav-link {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .nav-link {
    display: block;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    margin: 0;
    border-radius: 0;
    border: none;
    border-bottom: none;
    position: relative;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  }
  .nav-link {
    text-align: center;
    width: 100%;
    min-height: auto;
    line-height: 1.4;
    vertical-align: top;
    color: #ffffff;
  }
  .nav-link:hover {
    color: #ffffff;
  }
  .nav-link:focus {
    outline: none;
    color: #ffffff;
  }
  .nav-link:active {
    color: #ffffff;
  }
  .nav-item:first-child .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  }
}

@media (max-width: 768px) {
  :root:not([data-theme=dark]) .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
  }
  :root:not([data-theme=dark]) .nav-link:focus {
    background: rgba(255, 255, 255, 0.1);
  }
  :root:not([data-theme=dark]) .nav-link:active {
    background: rgba(255, 255, 255, 0.2);
  }
}

:root[data-theme=dark] .nav-link:hover, :root[data-theme=dark] .nav-link:focus, :root[data-theme=dark] .nav-link:active {
  filter: brightness(var(--theme-nav-hover-brightness, 1));
}
@media (max-width: 768px) {
  :root[data-theme=dark] .nav-link:hover, :root[data-theme=dark] .nav-link:focus, :root[data-theme=dark] .nav-link:active {
    filter: brightness(var(--theme-nav-hover-brightness, 1));
  }
}
:root[data-theme=dark] .nav-toggle:hover .nav-toggle-text,
:root[data-theme=dark] .nav-toggle:hover .nav-icon, :root[data-theme=dark] .nav-toggle:focus .nav-toggle-text,
:root[data-theme=dark] .nav-toggle:focus .nav-icon, :root[data-theme=dark] .nav-toggle:active .nav-toggle-text,
:root[data-theme=dark] .nav-toggle:active .nav-icon {
  filter: brightness(var(--theme-nav-hover-brightness, 1));
}

.nav-toggle {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 3rem;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  z-index: 1000;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
  gap: 0.5rem;
}
.nav-toggle:hover .nav-toggle-text,
.nav-toggle:hover .nav-icon {
  color: var(--theme-nav-text-hover);
}
.nav-toggle:focus {
  outline: none;
  border-color: var(--tertiary-color);
  box-shadow: 0 0 0 2px rgba(var(--tertiary-color-rgb, 245, 158, 11), 0.2);
}
.nav-toggle:focus .nav-toggle-text,
.nav-toggle:focus .nav-icon {
  color: var(--theme-nav-text-focus);
}
.nav-toggle:active {
  border-color: var(--tertiary-color);
}
.nav-toggle:active .nav-toggle-text,
.nav-toggle:active .nav-icon {
  color: var(--theme-nav-text-active);
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
}

.nav-toggle-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--theme-nav-text, white);
  font-family: var(--font-family);
  line-height: 1;
  display: flex;
  align-items: center;
  height: 1.5rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .nav-toggle-text {
    display: flex;
  }
}

.nav-icon-container {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--theme-nav-text, white);
}

.nav-icon-menu {
  opacity: 1;
}

.nav-icon-close {
  opacity: 0;
}

.nav-toggle[aria-expanded=true] .nav-icon-menu {
  opacity: 0;
}
.nav-toggle[aria-expanded=true] .nav-icon-close {
  opacity: 1;
}

.nav-overlay {
  display: block;
  position: fixed;
  top: 120px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 120px);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
@media (max-width: 768px) {
  .nav-overlay {
    top: 102px;
    height: calc(100vh - 102px);
  }
  .nav-overlay.nav-overlay-active {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 769px) {
  .nav-overlay {
    display: none !important;
  }
}

body {
  padding-top: 120px;
}
@media (max-width: 768px) {
  body {
    padding-top: 110px;
  }
}

@media (prefers-contrast: high) {
  .component-navigation {
    background: white;
    border-bottom: 2px solid black;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-link:hover, .nav-link:focus {
    background: black;
    color: white;
  }
}
@media (prefers-reduced-motion: reduce) {
  .component-navigation,
  .nav-links,
  .nav-link,
  .nav-toggle-line,
  .nav-overlay {
    transition: none;
  }
}
.component-hero {
  --hero-padding: 4rem 0;
  --hero-min-height: 70vh;
  --hero-overlay-opacity: 0.3;
  position: relative;
  padding: var(--hero-padding);
  min-height: var(--hero-min-height);
  background-color: #007bff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  padding-top: 16vh;
}
.component-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, var(--hero-overlay-opacity));
  z-index: 1;
}
.component-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: white;
}
.component-hero .hero-content.hero-align-left {
  text-align: left;
}
.component-hero .hero-content.hero-align-center {
  text-align: center;
}
.component-hero .hero-content.hero-align-right {
  text-align: right;
}
.component-hero .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.component-hero .hero-logo {
  margin-bottom: 2rem;
}
.component-hero .hero-logo .hero-logo-img {
  max-height: 80px;
  max-width: 300px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .component-hero .hero-logo .hero-logo-img {
    max-height: 60px;
    max-width: 250px;
  }
}
.component-hero .hero-title {
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  background: transparent;
  padding: 0.75rem 1rem;
  display: table;
  margin: 0 auto 0.5rem auto;
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .component-hero .hero-title {
    font-size: 3.5rem;
    padding: 0.5rem 0.75rem;
  }
}
.component-hero .hero-subtitle {
  font-size: 2rem;
  font-weight: 400;
  color: white;
  background: transparent;
  padding: 0.75rem 1rem;
  display: table;
  margin: 0 auto 2rem auto;
  text-align: center;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .component-hero .hero-subtitle {
    font-size: 1.5rem;
    padding: 0.5rem 0.75rem;
  }
}
.component-hero .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.component-hero .hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.component-hero .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 17rem;
  max-width: 20rem;
  padding: 2rem 2.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  transform: none;
}
@media (max-width: 480px) {
  .component-hero .btn {
    max-width: 17rem;
    padding: 1.75rem 2rem;
  }
}
.component-hero .btn.btn-primary {
  position: relative;
  background-color: var(--primary-color, #1C8241);
  color: white;
  font-weight: 600;
  z-index: 0;
}
.component-hero .btn.btn-primary:hover,
.component-hero .btn.btn-primary:active {
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}
/* AUBREY: Shared gradient border — applied to both CTA buttons */
.component-hero .btn.btn-primary::before,
.component-hero .btn.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.35) 25%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.04) 70%,
    rgba(255, 255, 255, 0.25) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
/* Secondary CTA button — dark transparent */
.component-hero .btn.btn-outline {
  position: relative;
  background-color: rgba(0, 0, 0, 0.55);
  color: white;
  z-index: 0;
  transition:
    background-color 350ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 350ms cubic-bezier(0.4, 0, 0.2, 1),
    color 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.component-hero .btn.btn-outline:hover {
  background-color: rgba(var(--secondary-color-rgb), 0.66);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}
/* Shared focus state for both CTA buttons */
.component-hero .btn:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: none;
}
@media (max-width: 768px) {
  .component-hero {
    --hero-padding: 2rem 0;
    --hero-min-height: 55vh;
    padding-top: 14vh;
  }
}

.component-services {
  --services-padding: 4rem 0;
  --services-gap: 1.25rem;
  --service-item-padding: 1.25rem;
  padding: var(--services-padding);
  background-color: var(--theme-services-background, #f8fafc);
}
.component-services .services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.component-services .services-header {
  text-align: center;
  margin-bottom: 3rem;
}
.component-services .services-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--theme-services-text, var(--text-color, #1f2937));
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .component-services .services-title {
    font-size: var(--font-size-2xl);
  }
}
.component-services .services-grid {
  display: grid;
  gap: var(--services-gap);
}
.component-services .services-grid.services-layout-grid.services-columns-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media (min-width: 768px) {
  .component-services .services-grid.services-layout-grid.services-columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.component-services .services-grid.services-layout-grid.services-columns-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media (min-width: 768px) {
  .component-services .services-grid.services-layout-grid.services-columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .component-services .services-grid.services-layout-grid.services-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.component-services .services-grid.services-layout-grid.services-columns-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (min-width: 768px) {
  .component-services .services-grid.services-layout-grid.services-columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .component-services .services-grid.services-layout-grid.services-columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .component-services .services-grid.services-layout-grid.services-columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.component-services .services-grid.services-layout-list {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}
.component-services .service-item {
  background: var(--theme-services-tile-background, transparent);
  border: 1px solid var(--theme-services-tile-border, var(--border-color, #d1d5db));
  border-radius: var(--border-radius, 8px);
  padding: var(--service-item-padding);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  position: relative;
}
.component-services .service-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.services-layout-list .component-services .service-item {
  text-align: left;
}
@media (max-width: 768px) {
  .services-layout-list .component-services .service-item {
    text-align: center;
  }
}
.component-services .service-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(31, 41, 55, 0.05) 15%,
    rgba(31, 41, 55, 0.05) 85%,
    transparent 100%
  );
  margin: 0.5rem 0;
}
.services-layout-list .component-services .service-divider {
  margin: 0.75rem 0;
}
.component-services .service-content {
  text-align: left;
}
.services-layout-list .component-services .service-content {
  text-align: left;
}
@media (max-width: 768px) {
  .services-layout-list .component-services .service-content {
    text-align: center;
  }
}
.component-services .service-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--theme-services-title, var(--primary-color));
  margin-bottom: 0.5rem;
}
.component-services .service-description {
  color: var(--theme-services-text, white);
  line-height: 1.5;
  font-size: 0.875rem;
  text-align: left;
}
@media (max-width: 768px) {
  .component-services {
    --services-padding: 3rem 0;
    --services-gap: 1rem;
    --service-item-padding: 1rem;
  }
}

:root[data-theme=dark] .component-services .service-divider {
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 15%,
    rgba(255, 255, 255, 0.07) 85%,
    transparent 100%
  );
}

:root {
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
}

:root {
  --theme-aboutus-background: #f8fafc;
  --theme-aboutus-text: #374151;
  --theme-aboutus-title: var(--primary-color);
  --theme-aboutus-signature: #6b7280;
  --theme-aboutus-highlight-background: #f8fafc;
  --theme-aboutus-highlight-border: rgba(0, 37, 157, 0.2);
}

:root[data-theme=dark] {
  --theme-aboutus-background: var(--theme-services-background, #f8fafc);
  --theme-aboutus-text: #ffffff;
  --theme-aboutus-title: var(--tertiary-color);
  --theme-aboutus-signature: #d1d5db;
  --theme-aboutus-highlight-background: rgba(255, 255, 255, 0.05);
  --theme-aboutus-highlight-border: rgba(245, 158, 11, 0.3);
}

.component-aboutus {
  position: relative;
  width: 100%;
  padding: 4rem 0;
  background: var(--theme-aboutus-background);
}
.component-aboutus .aboutus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .component-aboutus .aboutus-container {
    padding: 0 1rem;
  }
}
.component-aboutus .aboutus-header {
  text-align: center;
  margin-bottom: 4rem;
}
.component-aboutus .aboutus-header .aboutus-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--theme-aboutus-text);
  margin: 0;
}
@media (max-width: 768px) {
  .component-aboutus .aboutus-header .aboutus-title {
    font-size: 1.875rem;
  }
}
.component-aboutus .aboutus-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.component-aboutus .aboutus-image-container {
  width: 100%;
}
.component-aboutus .aboutus-image-container .aboutus-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.component-aboutus .aboutus-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .component-aboutus .aboutus-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.component-aboutus .aboutus-text {
  color: var(--theme-aboutus-text);
  line-height: 1.7;
}
.component-aboutus .aboutus-text p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.component-aboutus .aboutus-text p.aboutus-intro {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.component-aboutus .aboutus-text p.aboutus-conclusion {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.component-aboutus .aboutus-text .text-link,
.component-aboutus .aboutus-text .text-link strong {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
  transition: opacity 200ms ease;
}
.component-aboutus .aboutus-text .text-link:hover,
.component-aboutus .aboutus-text .text-link:hover strong {
  opacity: 0.75;
}
.component-aboutus .aboutus-text p.aboutus-signature {
  font-style: italic;
  color: var(--theme-aboutus-signature);
  text-align: right;
  margin-bottom: 0;
  font-size: 1rem;
}
.component-aboutus .aboutus-text strong {
  color: var(--theme-aboutus-title);
  font-weight: 600;
}
.component-aboutus .aboutus-highlights {
  background: #ffffff;
  padding: 2rem;
  border-left: 4px solid var(--theme-aboutus-title);
  border-radius: 0 8px 8px 0;
}
.component-aboutus .aboutus-highlights h3 {
  color: var(--theme-aboutus-title);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.component-aboutus .aboutus-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.component-aboutus .aboutus-highlights ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  color: var(--theme-aboutus-text);
}
.component-aboutus .aboutus-highlights ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--theme-aboutus-title);
  font-weight: bold;
  font-size: 1.125rem;
}
@media (max-width: 320px) {
  .component-aboutus {
    padding: 4rem 0;
  }
  .component-aboutus .aboutus-container {
    padding: 0 1rem;
  }
  .component-aboutus .aboutus-header .aboutus-title {
    font-size: 1.5rem;
  }
  .component-aboutus .aboutus-text p {
    font-size: 1rem;
  }
  .component-aboutus .aboutus-text p.aboutus-intro {
    font-size: 1.125rem;
  }
  .component-aboutus .aboutus-text .aboutus-highlights {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  .component-aboutus .aboutus-highlights {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
}

.component-contact {
  --contact-padding: 2rem 0 4rem 0;
  padding: var(--contact-padding);
  background: var(--theme-contact-background, #f8fafc);
  position: relative;
}
.component-contact .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.component-contact .contact-info {
  text-align: center;
}
.component-contact .contact-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--theme-contact-text, var(--text-color, #1f2937));
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .component-contact .contact-title {
    font-size: var(--font-size-2xl);
    margin-bottom: 2rem;
  }
}
.component-contact .contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: space-between;
  align-items: stretch;
}
@media (min-width: 768px) {
  .component-contact .contact-cards .contact-card {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}
@media (max-width: 767px) {
  .component-contact .contact-cards {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .component-contact .contact-cards .contact-card {
    flex: 1 1 100%;
  }
}
.component-contact .contact-card {
  background: var(--theme-contact-tile-background, transparent);
  border: 1px solid var(--theme-contact-tile-border, var(--border-color, #d1d5db));
  border-radius: var(--border-radius, 8px);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  position: relative;
}
.component-contact .contact-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
@media (max-width: 767px) {
  .component-contact .contact-card {
    padding: 1.5rem;
  }
}
.component-contact .contact-card-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--theme-contact-title, var(--primary-color));
  margin-bottom: 0.75rem;
  text-align: center;
}
.component-contact .contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.component-contact .contact-method {
  text-align: center;
}
.component-contact .contact-method:not(:last-child) {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0.75rem;
}
.component-contact .contact-label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--theme-contact-text, white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.component-contact .contact-link {
  color: var(--secondary-color);
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: var(--font-size-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  min-height: 44px;
}
.component-contact .contact-link i, .component-contact .contact-link .whatsapp-icon {
  width: var(--font-size-base);
  height: var(--font-size-base);
  flex-shrink: 0;
  text-decoration: none;
}
.component-contact .contact-link .whatsapp-icon {
  fill: currentColor;
  width: 1.25rem !important;
  height: 1.25rem !important;
}
.component-contact .contact-link:hover {
  color: var(--secondary-color);
  background-color: rgba(var(--secondary-color-rgb, 245, 158, 11), 0.05);
  transform: translateY(-2px);
  text-decoration: none;
}
.component-contact .contact-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--secondary-color-rgb, 245, 158, 11), 0.4);
}
.component-contact .contact-link:active {
  transform: translateY(0);
}
.component-contact .contact-link.contact-link-primary, .component-contact .contact-link.contact-link-secondary, .component-contact .contact-link.contact-link-maps {
  color: var(--secondary-color);
}
.component-contact .contact-link.contact-link-primary:hover, .component-contact .contact-link.contact-link-secondary:hover, .component-contact .contact-link.contact-link-maps:hover {
  color: var(--secondary-color);
  background-color: rgba(var(--secondary-color-rgb, 245, 158, 11), 0.05);
  text-decoration: none;
}
.component-contact .contact-link.contact-link-primary:focus, .component-contact .contact-link.contact-link-secondary:focus, .component-contact .contact-link.contact-link-maps:focus {
  box-shadow: 0 0 0 3px rgba(var(--secondary-color-rgb, 245, 158, 11), 0.4);
}
.component-contact .contact-link.contact-link-primary i, .component-contact .contact-link.contact-link-primary .whatsapp-icon, .component-contact .contact-link.contact-link-secondary i, .component-contact .contact-link.contact-link-secondary .whatsapp-icon, .component-contact .contact-link.contact-link-maps i, .component-contact .contact-link.contact-link-maps .whatsapp-icon {
  color: var(--secondary-color);
}
.component-contact .contact-link.contact-link-whatsapp {
  color: #1fad55;
}
.component-contact .contact-link.contact-link-whatsapp:hover {
  color: #1fad55;
  background-color: rgba(31, 173, 85, 0.05);
  text-decoration: none;
}
.component-contact .contact-link.contact-link-whatsapp:focus {
  box-shadow: 0 0 0 3px rgba(31, 173, 85, 0.4);
}
.component-contact .contact-link.contact-link-whatsapp i, .component-contact .contact-link.contact-link-whatsapp .whatsapp-icon {
  color: #1fad55;
}
.component-contact .contact-info-text {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--theme-contact-text, white);
  margin: 0;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}
.component-contact .contact-info-text i {
  width: var(--font-size-base);
  height: var(--font-size-base);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .component-contact {
    --contact-padding: 3rem 0;
  }
}

:root[data-theme=dark] .component-contact .contact-link {
  color: #ffffff;
}
:root[data-theme=dark] .component-contact .contact-link:hover {
  color: #ffffff;
}
:root[data-theme=dark] .component-contact .contact-link i, :root[data-theme=dark] .component-contact .contact-link .whatsapp-icon {
  color: #ffffff;
}
:root[data-theme=dark] .component-contact .contact-link:hover i, :root[data-theme=dark] .component-contact .contact-link:hover .whatsapp-icon {
  color: #ffffff;
}
:root[data-theme=dark] .component-contact .contact-link.contact-link-whatsapp {
  color: #1fad55;
}
:root[data-theme=dark] .component-contact .contact-link.contact-link-whatsapp:hover {
  color: #1fad55;
}
:root[data-theme=dark] .component-contact .contact-link.contact-link-whatsapp i, :root[data-theme=dark] .component-contact .contact-link.contact-link-whatsapp .whatsapp-icon {
  color: #1fad55;
}
:root[data-theme=dark] .component-contact .contact-link.contact-link-whatsapp:hover i, :root[data-theme=dark] .component-contact .contact-link.contact-link-whatsapp:hover .whatsapp-icon {
  color: #1fad55;
}
:root[data-theme=dark] .component-contact .contact-label {
  opacity: 0.7;
}

:root {
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
}

.component-footer {
  background: #e8e9ed;
  color: #4a5568;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem 2rem 1rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-company .footer-company-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #4a5568;
}
.footer-company .footer-company-description {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: #4a5568;
  opacity: 0.8;
}

.footer-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: #4a5568;
}

.footer-contact-social {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-contact-social {
    flex-direction: row;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .footer-contact-social {
    flex-direction: column;
    gap: 2rem;
    padding-left: 0.75rem;
  }
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 480px) {
  .footer-contact-item {
    flex-direction: row;
    align-items: flex-start;
  }
}

.footer-contact-label {
  font-weight: 500;
  color: #4a5568;
  min-width: 80px;
}
@media (max-width: 479px) {
  .footer-contact-label {
    font-size: 0.9rem;
  }
}

.footer-contact-value {
  flex: 1;
  line-height: 1.4;
  color: #4a5568;
}
.footer-contact-value div {
  margin: 0;
  color: #4a5568;
}

.footer-contact-link {
  color: #4a5568;
  text-decoration: underline;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-contact-link:hover, .footer-contact-link:focus {
  color: #2d3748;
  text-decoration: underline;
}
.footer-contact-link:focus {
  outline: none;
  border-color: rgba(var(--secondary-color-rgb, 100, 116, 139), 0.6);
  box-shadow: 0 0 0 3px rgba(var(--secondary-color-rgb, 100, 116, 139), 0.1);
  border-radius: 4px;
}

.footer-social .footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-social .footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4a5568;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social .footer-social-link:hover, .footer-social .footer-social-link:focus {
  background: rgba(0, 0, 0, 0.05);
  color: #2d3748;
}
.footer-social .footer-social-link:focus {
  outline: 2px solid #4a5568;
  outline-offset: 2px;
}
.footer-social .footer-social-icon {
  font-size: 1.2rem;
  color: #4a5568;
}
.footer-social .footer-social-name {
  font-size: 0.9rem;
  color: #4a5568;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.9rem;
  color: #4a5568;
  opacity: 0.8;
  font-weight: 400;
  letter-spacing: 0.025em;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-legal-links {
    justify-content: flex-end;
  }
}

.footer-legal-link {
  color: #4a5568;
  text-decoration: underline;
  font-size: 0.9rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.25rem 0;
}
.footer-legal-link:hover, .footer-legal-link:focus {
  color: #2d3748;
  text-decoration: underline;
}
.footer-legal-link:focus {
  outline: none;
  border-color: rgba(var(--secondary-color-rgb, 100, 116, 139), 0.6);
  box-shadow: 0 0 0 3px rgba(var(--secondary-color-rgb, 100, 116, 139), 0.1);
  border-radius: 4px;
}

@media (prefers-color-scheme: light) {
  .component-footer {
    background: #e8e9ed;
    color: #4a5568;
    border-top: none;
  }
  .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.1);
  }
}
@media (prefers-contrast: high) {
  .component-footer {
    background: #e8e9ed;
    color: #000000;
    border-top: 2px solid black;
  }
  .footer-bottom {
    border-top: 2px solid black;
  }
  .footer-contact-link:focus,
  .footer-social-link:focus,
  .footer-legal-link:focus {
    outline: 3px solid black;
    background: yellow;
    color: black;
  }
}
@media print {
  .component-footer {
    background: white !important;
    color: black !important;
    border-top: 2px solid black;
  }
  .footer-social,
  .footer-legal-links {
    display: none;
  }
  .footer-contact-link {
    color: black !important;
    text-decoration: underline;
  }
  .footer-contact-link::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    opacity: 0.7;
  }
}
:root {
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
}

.component-impressum {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .component-impressum {
    padding: 2.25rem 0;
  }
}
.component-impressum {
  background: var(--impressum-background, #f8fafc);
  border-top: 1px solid rgba(209, 213, 219, 0.4);
}

.impressum-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.impressum-header {
  text-align: center;
  margin-bottom: 3rem;
}
.impressum-header .impressum-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #374151;
  margin: 0 0 0.5rem 0;
}
@media (max-width: 768px) {
  .impressum-header .impressum-title {
    font-size: 2rem;
  }
}
.impressum-header .impressum-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted, #6b7280);
  margin: 0;
  font-weight: 400;
}

.impressum-content {
  width: 100%;
}

.impressum-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .impressum-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.company-info-section {
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .company-info-section {
    justify-content: stretch;
    width: 100%;
  }
}

.info-table {
  border: 1px solid rgba(209, 213, 219, 0.3);
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius, 8px);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}
@media (max-width: 1024px) {
  .info-table {
    max-width: none;
    width: 100%;
  }
}
.info-table td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(209, 213, 219, 0.25);
  vertical-align: top;
  background: #ffffff;
}
.info-table td:not(:last-child) {
  border-right: none;
}
@media (max-width: 640px) {
  .info-table td {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}
.info-table tr:not(:last-child) td {
  border-bottom: none;
}
.info-table tr:first-child .info-label {
  border-top-left-radius: var(--border-radius, 8px);
}
.info-table tr:first-child .info-value {
  border-top-right-radius: var(--border-radius, 8px);
}
.info-table tr:last-child .info-label {
  border-bottom-left-radius: var(--border-radius, 8px);
}
.info-table tr:last-child .info-value {
  border-bottom-right-radius: var(--border-radius, 8px);
}
.info-table .info-label {
  font-weight: 600;
  font-style: normal;
  color: var(--primary-color, #1C8241);
  width: 140px;
  min-width: 140px;
  background: #ffffff;
}
@media (max-width: 640px) {
  .info-table .info-label {
    width: 120px;
    min-width: 120px;
    font-size: 0.85rem;
  }
}
.info-table .info-value {
  background: #ffffff;
  color: #374151;
  font-weight: 400;
}
.info-table .info-value a {
  color: var(--secondary-color, #00259D);
  text-decoration: underline;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.info-table .info-value a:hover {
  color: #374151;
  text-decoration: underline;
}

.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-section {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--border-radius, 8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .legal-section {
    padding: 1rem;
  }
}

.legal-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color, #1C8241);
  margin: 0 0 1rem 0;
  font-style: normal;
}

.legal-section h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 1.5rem 0 0.75rem 0;
}
@media (max-width: 480px) {
  .legal-section-title {
    font-size: 0.95rem;
  }
}

.legal-section p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
  color: #374151;
  font-size: 0.9rem;
  text-align: justify;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .legal-section p {
    font-size: 0.85rem;
    text-align: left;
  }
}

.legal-disclaimer {
  font-size: 0.8rem !important;
  color: var(--text-muted, #6b7280) !important;
  text-align: right !important;
  margin-top: 1.5rem !important;
  font-style: normal !important;
}
.legal-disclaimer a {
  color: var(--text-muted, #6b7280);
  text-decoration: underline;
}
.legal-disclaimer a:hover {
  color: var(--primary-color, #1C8241);
  text-decoration: underline;
}
@media (max-width: 480px) {
  .legal-disclaimer {
    text-align: left !important;
  }
}

:root[data-theme=dark] .component-impressum {
  background: linear-gradient(to bottom, #000000 0%, #f8fafc 33%, #f8fafc 100%);
  --impressum-background: #f8fafc;
  --heading-color: #f9fafb;
  --text-color: #d1d5db;
  --text-muted: #9ca3af;
  --border-color: #374151;
}
:root[data-theme=dark] .info-table,
:root[data-theme=dark] .legal-section {
  background: #ffffff !important;
}
:root[data-theme=dark] .info-table .info-value {
  background: #ffffff !important;
}
:root[data-theme=dark] .info-table td {
  background: #ffffff !important;
}
:root[data-theme=dark] .info-table .info-label {
  background: #ffffff !important;
}

@media (prefers-color-scheme: dark) {
  .component-impressum {
    --impressum-background: #f8fafc;
    --heading-color: #f9fafb;
    --text-color: #d1d5db;
    --text-muted: #9ca3af;
    --border-color: #374151;
  }
  .info-table,
  .legal-section {
    background: #ffffff !important;
  }
  .info-table .info-value {
    background: #ffffff !important;
  }
  .info-table td {
    background: #ffffff !important;
  }
  .info-table .info-label {
    background: #ffffff !important;
  }
}
@media print {
  .component-impressum {
    background: white !important;
    border-top: 2px solid black;
    padding: 2rem 0 !important;
  }
  .impressum-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .info-table,
  .legal-section {
    background: white !important;
    border: 1px solid black;
    box-shadow: none;
    margin-bottom: 1rem;
    break-inside: avoid;
  }
  .legal-section {
    border-left: 4px solid black;
  }
  .legal-section-title,
  .info-label {
    color: black !important;
  }
}
:root {
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
}

.component-floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .component-floating-actions {
    bottom: 1.5rem;
    right: 1.5rem;
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  .component-floating-actions {
    bottom: 1rem;
    right: 1rem;
  }
}

.floating-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--floating-btn-background, var(--primary-color));
  color: var(--floating-btn-color, #ffffff);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media (max-width: 768px) {
  .floating-action-btn {
    width: 52px;
    height: 52px;
  }
}
.floating-action-btn i {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.floating-action-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.floating-action-btn:active {
  transform: translateY(0) scale(0.98);
}
.floating-action-btn:focus {
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: var(--tertiary-color);
}
.floating-action-btn:active {
  border-color: var(--tertiary-color);
}

.theme-toggle-btn {
  display: none !important;
}

.theme-toggle-btn .theme-icon {
  position: absolute;
  transition: opacity 200ms ease-in-out, transform 200ms ease-in-out;
}
.theme-toggle-btn .theme-icon-light {
  opacity: 1;
  transform: rotate(0deg);
}
.theme-toggle-btn .theme-icon-dark {
  opacity: 0;
  transform: rotate(180deg);
}

.scroll-top-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

:root[data-theme=dark] .component-floating-actions {
  --floating-btn-background: rgba(0, 0, 0, 0.5);
  --floating-btn-color: #f9fafb;
}
:root[data-theme=dark] .floating-action-btn {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(var(--secondary-color-rgb, 100, 116, 139), 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 8px rgba(var(--secondary-color-rgb, 100, 116, 139), 0.2);
}
:root[data-theme=dark] .floating-action-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 12px rgba(var(--secondary-color-rgb, 100, 116, 139), 0.3);
}
:root[data-theme=dark] .floating-action-btn:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 12px rgba(var(--secondary-color-rgb, 100, 116, 139), 0.4);
}
:root[data-theme=dark] .floating-action-btn:active {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 8px rgba(var(--secondary-color-rgb, 100, 116, 139), 0.2);
}
:root[data-theme=dark] .theme-toggle-btn .theme-icon-light {
  opacity: 0;
  transform: rotate(-180deg);
}
:root[data-theme=dark] .theme-toggle-btn .theme-icon-dark {
  opacity: 1;
  transform: rotate(0deg);
}

@media (prefers-contrast: high) {
  .floating-action-btn {
    border: 2px solid var(--floating-btn-color, #374151);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  .floating-action-btn:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
}
@media (prefers-reduced-motion: reduce) {
  .floating-action-btn,
  .theme-icon,
  .scroll-top-btn {
    transition: none;
  }
}

/* =============================================================
   AUBREY: Cinematic Scroll FX — AK Tiefbau
   Added: 2026-02-10
   ============================================================= */

/* AUBREY: No-JS fallback — all hidden elements visible without JavaScript */
/* Hide hero text and nav immediately when JS is active — only until GSAP takes over */
.js [data-text-fx]:not(.hero-text-ready),
.js .hero-cta,
.js .nav-container {
  opacity: 0;
}

.no-js [data-reveal],
.no-js [data-text-fx] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
}

/* AUBREY: Reduced-motion global kill switch — applies before JS evaluates */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-text-fx] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
    animation: none !important;
  }
  html.lenis {
    scroll-behavior: auto !important;
  }
}

/* AUBREY: Initial hidden states — set in CSS so elements are hidden before JS runs */
[data-reveal="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
}
[data-reveal="fade-right"] {
  opacity: 0;
  transform: translateX(-50px);
}
[data-reveal="fade-left"] {
  opacity: 0;
  transform: translateX(50px);
}
[data-reveal="scale-in"] {
  opacity: 0;
  transform: scale(0.88) translateY(20px);
}
[data-reveal="clip-up"] {
  clip-path: inset(100% 0 0 0);
  opacity: 0;
}
[data-reveal] {
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, clip-path 0.9s ease-out, filter 0.85s ease-out;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
  filter: none;
}


/* Hero: fixed bg on desktop, normal scroll on mobile (iOS momentum fix) */
.component-hero {
  background-image: none !important;
  background-color: transparent;
  min-height: 100vh;
  min-height: 100svh;
}
.hero__bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-image: url('../images/hero/tiefbauFirma.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}
.component-hero .hero-overlay { z-index: 1; }
.component-hero .hero-content  { z-index: 2; }

/* Sections stack above the fixed hero bg */
.component-services,
.component-aboutus,
.component-contact,
.component-impressum,
.component-footer {
  position: relative;
  z-index: 1;
}

/* Mobile: disable fixed bg to preserve scroll momentum on iOS Safari */
@media (max-width: 768px) {
  .component-hero {
    background-image: url('../images/hero/tiefbauFirma.jpg') !important;
    background-size: cover;
    background-position: top center;
  }
  .hero__bg-layer {
    display: none;
  }
}

/* AUBREY: SplitText inline-block for transform support */
.hero-title .char {
  display: inline-block;
}
@media (prefers-reduced-motion: reduce) {
  .hero-title .char,
  .hero-subtitle .word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* AUBREY: Contact section layout */
/* Inline (row) variant — phone numbers / email+whatsapp side by side */
.contact-card-content--inline {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}
.contact-card-content--inline .contact-link {
  flex: 1 1 auto;
  justify-content: center;
}
/* Full-width Büro card — same styling as other cards, no divider between methods */
.contact-card--wide {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}
.component-contact .contact-card--wide .contact-method:not(:last-child) {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

/* AUBREY: Section fall-reveal — services + contact animate as a group */
/* Override individual item hidden states — parent container drives visibility */
.component-services [data-reveal],
.component-contact [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
  filter: none !important;
}
/* Initial hidden state for containers — only when JS active and motion allowed */
@media (prefers-reduced-motion: no-preference) {
  html.js .component-services .services-container,
  html.js .component-contact .contact-container {
    opacity: 0;
    transform: scale(1.35) translateY(-40px);
    filter: blur(20px);
    transform-origin: center top;
  }
}
/* No-JS fallback: ensure containers are visible */
html.no-js .component-services .services-container,
html.no-js .component-contact .contact-container {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}
/* Clip overflow during scale animation and translate reveals */
.component-services,
.component-aboutus,
.component-contact {
  overflow: clip;
}

/* Smooth scroll behaviour — native, no library needed */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}