:root {
  --primary-color: #2C3797;
  --secondary-color: #F56622;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #fff;
  --bg-light: #f8f9fa;
  --border-color: #ddd;
  --shadow: 0 2px 15px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(44,55,151,0.2);
  --transition: 0.3s ease;
  --border-radius: 8px;
  --container-max: 1200px;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
       url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
       url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
       url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

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

body {
  font-family: 'Poppins', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

a:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
  border-radius: 2px;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.4;
}

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

.btn-primary:hover {
  background-color: #d4541a;
  border-color: #d4541a;
  color: #fff;
  box-shadow: 0 6px 20px rgba(245,102,34,0.4);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-white:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  transition: top 0.3s ease;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  border-radius: 6px;
  transition: all var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-color);
  background-color: rgba(44,55,151,0.08);
}

.nav-cta {
  margin-left: 12px;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color var(--transition);
}

.hamburger:hover {
  background-color: rgba(44,55,151,0.08);
}

.hamburger:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger-line + .hamburger-line {
  margin-top: 5px;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-footer {
  background-color: #1a1f5e;
  color: rgba(255,255,255,0.8);
}

.footer-main {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social-link:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.footer-social-link:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

.footer-nav-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav-list a:hover {
  color: var(--secondary-color);
}

.footer-contact-btn {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color var(--transition);
}

.footer-contact-btn:hover {
  color: var(--secondary-color);
}

.footer-contact-btn:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-nav-list a:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-address p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-contact-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}

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

.footer-hours {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom {
  padding: 20px 0;
}

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

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-legal-list {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-list a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-list a:hover {
  color: rgba(255,255,255,0.9);
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(44,55,151,0.4);
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 500;
}

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

.back-to-top:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 8px 24px rgba(245,102,34,0.4);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

.back-to-top.near-footer {
  bottom: 100px;
}

.hero-cta-icon {
  margin-left: 8px;
  vertical-align: middle;
}

.reveal-delay-1 {
  animation-delay: 0.15s;
}

.reveal-delay-2 {
  animation-delay: 0.3s;
}

.reveal-delay-3 {
  animation-delay: 0.45s;
}

.contact-altcha-widget {
  --altcha-color-base: var(--bg-light);
  --altcha-color-text: var(--text-color);
  --altcha-color-border: var(--border-color);
  --altcha-color-footer-bg: var(--bg-light);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-color);
  padding: 0;
}

.legal-content h2,
.legal-content h3 {
  color: var(--primary-color);
  line-height: 1.3;
  margin: 2rem 0 0.85rem;
}

.legal-content h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.legal-content h3 {
  font-size: 1.1rem;
}

.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 1.15rem;
  color: var(--text-light);
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1.2rem 1.25rem;
  padding: 0;
}

.legal-content li {
  margin: 0.35rem 0;
  padding-left: 0.25rem;
  color: var(--text-light);
}

.legal-content li::marker {
  color: var(--primary-color);
}

.legal-content ul ul,
.legal-content ol ol,
.legal-content ul ol,
.legal-content ol ul {
  margin-top: 0.45rem;
  margin-bottom: 0.2rem;
}

.legal-content strong {
  color: var(--text-color);
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  word-break: break-word;
}

.legal-content a:hover {
  color: var(--secondary-color);
}

.legal-subtitle {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin: 1.5rem 0 0.75rem;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 0;
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

altcha-widget {
  display: block;
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,55,151,0.92) 0%, rgba(20,28,100,0.85) 100%);
  z-index: 1;
}

.hero.bg-loaded::before {
  background: linear-gradient(135deg, rgba(44,55,151,0.88) 0%, rgba(20,28,100,0.80) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,102,34,0.15) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 0;
  padding-bottom: 0;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(245,102,34,0.2);
  border: 1px solid rgba(245,102,34,0.5);
  color: #ffa06b;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
}

.hero-compact {
  min-height: 200px;
}

.hero-compact .hero-content {
  max-width: 100%;
  text-align: center;
}

.hero-compact .hero-overlay {
  background: radial-gradient(ellipse at 50% 50%, rgba(245,102,34,0.15) 0%, transparent 60%);
}

.hero-compact .hero-title {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.hero-title-accent {
  color: var(--secondary-color);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-cta {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

.hero-parallax-layer {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
  transition: transform 0.05s linear;
}

.hero-water-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
}

.hero-tools {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-tool-icon {
  position: absolute;
  opacity: 0;
  color: rgba(255,255,255,0.12);
  animation: toolFloat 12s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-tool-icon:nth-child(1) {
  top: 12%;
  left: 6%;
  width: 64px;
  height: 64px;
  animation-delay: 0s;
  animation-duration: 14s;
}

.hero-tool-icon:nth-child(2) {
  top: 60%;
  left: 22%;
  width: 48px;
  height: 48px;
  animation-delay: 2s;
  animation-duration: 11s;
}

.hero-tool-icon:nth-child(3) {
  top: 20%;
  left: 45%;
  width: 56px;
  height: 56px;
  animation-delay: 4s;
  animation-duration: 13s;
}

.hero-tool-icon:nth-child(4) {
  top: 65%;
  left: 68%;
  width: 40px;
  height: 40px;
  animation-delay: 1s;
  animation-duration: 16s;
}

.hero-tool-icon:nth-child(5) {
  top: 15%;
  left: 82%;
  width: 44px;
  height: 44px;
  animation-delay: 3s;
  animation-duration: 10s;
}

.hero-tool-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-typing-wrap {
  display: inline;
}

.hero-typing-keyword {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.hero-typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background-color: var(--secondary-color);
  margin-left: 2px;
  vertical-align: middle;
  border-radius: 1px;
  animation: cursorBlink 1s step-end infinite;
}

.hero-service-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-service-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(16px);
  animation: serviceIconIn 0.6s ease forwards;
}

.hero-service-icon-item:nth-child(1) { animation-delay: 0.8s; }
.hero-service-icon-item:nth-child(2) { animation-delay: 1.0s; }
.hero-service-icon-item:nth-child(3) { animation-delay: 1.2s; }
.hero-service-icon-item:nth-child(4) { animation-delay: 1.4s; }

.hero-service-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-service-icon-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--secondary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.hero-service-icon-circle:hover::before,
.hero-service-icon-item:hover .hero-service-icon-circle::before {
  transform: scale(1);
}

.hero-service-icon-circle svg {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.hero-service-icon-item:hover .hero-service-icon-circle svg {
  transform: rotate(20deg) scale(1.15);
}

.hero-service-icon-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hero-cta.btn-primary {
  position: relative;
  overflow: hidden;
}

.hero-cta.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0s;
}

.hero-cta.btn-primary:hover::after {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

.hero-water-drops {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-drop {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50% 50% 50% 0;
  background: rgba(255,255,255,0.2);
  transform: rotate(60deg);
  animation: dropFall linear infinite;
  will-change: transform, opacity;
}

.hero-drop:nth-child(1)  { left:  8%; top: -10px; animation-duration: 4.2s; animation-delay: 0s;    width: 5px;  height: 5px; }
.hero-drop:nth-child(2)  { left: 22%; top: -10px; animation-duration: 5.8s; animation-delay: 1.1s;  width: 7px;  height: 7px; }
.hero-drop:nth-child(3)  { left: 37%; top: -10px; animation-duration: 3.9s; animation-delay: 2.3s;  width: 4px;  height: 4px; }
.hero-drop:nth-child(4)  { left: 51%; top: -10px; animation-duration: 6.1s; animation-delay: 0.7s;  width: 6px;  height: 6px; }
.hero-drop:nth-child(5)  { left: 63%; top: -10px; animation-duration: 4.7s; animation-delay: 3.2s;  width: 5px;  height: 5px; }
.hero-drop:nth-child(6)  { left: 75%; top: -10px; animation-duration: 5.3s; animation-delay: 1.8s;  width: 8px;  height: 8px; }
.hero-drop:nth-child(7)  { left: 85%; top: -10px; animation-duration: 3.6s; animation-delay: 0.4s;  width: 4px;  height: 4px; }
.hero-drop:nth-child(8)  { left: 93%; top: -10px; animation-duration: 7.0s; animation-delay: 2.9s;  width: 6px;  height: 6px; }

.hero-wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.hero-wave-svg svg {
  display: block;
  width: 100%;
}

.hero-wave-path-1 {
  animation: waveSway 8s ease-in-out infinite;
  transform-origin: center bottom;
}

.hero-wave-path-2 {
  animation: waveSway 6s ease-in-out infinite reverse;
  transform-origin: center bottom;
  opacity: 0.6;
}

.reveal-fade {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.reveal-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

.services-section {
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.service-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
}

.service-card:hover .service-card-icon {
  background-color: var(--secondary-color);
  color: #fff;
}

.service-card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.05);
}

.service-card-icon {
  position: absolute;
  bottom: 16px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(44,55,151,0.3);
  transition: all var(--transition);
  z-index: 1;
}

.service-card-body {
  padding: 32px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.service-card-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.service-card-features {
  list-style: none;
  margin-bottom: 20px;
}

.service-card-features li {
  font-size: 0.85rem;
  color: var(--text-color);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.service-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.service-card-cta {
  font-size: 0.9rem;
  padding: 10px 20px;
  align-self: stretch;
  width: 100%;
  text-align: center;
}

.services-cta-wrap {
  text-align: center;
  padding: 40px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.services-cta-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.gallery-section {
  background-color: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
}

.gallery-thumb-btn {
  display: block;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}

.gallery-thumb-btn:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-thumb-btn:hover .gallery-thumb {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,55,151,0.85) 0%, rgba(44,55,151,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-thumb-btn:hover .gallery-overlay,
.gallery-thumb-btn:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 0 12px;
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.92);
  cursor: pointer;
}

.lightbox-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px 80px;
}

.lightbox-image-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: opacity 0.3s ease;
}

.lightbox-img.loading {
  opacity: 0;
}

.lightbox-loader {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.lightbox-loader.active {
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.lightbox-close:hover {
  background-color: rgba(255,255,255,0.2);
}

.lightbox-close:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.lightbox-nav:hover {
  background-color: rgba(255,255,255,0.25);
}

.lightbox-nav:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.lightbox-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.about-section {
  background-color: var(--bg-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245,102,34,0.4);
}

.about-badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 4px;
  opacity: 0.9;
}

.about-eyebrow {
  display: inline-block;
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title.text-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.about-text {
  margin-bottom: 32px;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-wide-content {
  margin-top: 44px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: #fff;
  border: 1px solid rgba(44, 55, 151, 0.1);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(18, 31, 87, 0.06);
}

.about-value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: rgba(44,55,151,0.1);
  color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.about-value-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.about-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.locations-section {
  background-color: var(--bg-color);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.location-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.location-card-image-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.location-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover .location-card-image {
  transform: scale(1.05);
}

.location-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

.location-card-info {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.location-info-item svg {
  flex-shrink: 0;
  color: var(--secondary-color);
  margin-top: 2px;
}

.location-link {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}

.location-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.location-hours {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 14px;
}

.location-hours-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-hours-title svg {
  color: var(--primary-color);
}

.location-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 3px 0;
}

.location-hours-day {
  color: var(--text-color);
  font-weight: 500;
}

.location-hours-time {
  color: var(--text-light);
}

.location-hours-time.closed {
  color: #e53e3e;
}

.location-maps-btn {
  font-size: 0.9rem;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  align-self: stretch;
  width: 100%;
  margin-top: auto;
  text-align: center;
  position: relative;
}

.location-maps-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.location-external-icon {
  position: absolute;
  right: 16px;
  flex-shrink: 0;
  opacity: 0.75;
  transition: transform var(--transition), opacity var(--transition);
}

.location-maps-btn:hover .location-external-icon {
  opacity: 1;
  transform: translate(1px, -1px);
}

.contact-highlight-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1f2b86 100%);
  color: #fff;
  padding: 110px 0;
}

.contact-highlight-cta-secondary {
  background: var(--secondary-color);
}

.contact-highlight-cta-secondary .contact-highlight-btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-highlight-cta-secondary .contact-highlight-btn:hover {
  background-color: #1f2b86;
  border-color: #1f2b86;
}

.contact-highlight-content {
  text-align: center;
}

.contact-highlight-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.contact-highlight-text {
  max-width: 760px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.contact-highlight-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-highlight-btn {
  font-size: 1.1rem;
  padding: 16px 34px;
  box-shadow: 0 12px 30px rgba(245,102,34,0.35);
}

.contact-section {
  background-color: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-modal-cta-text {
  margin-bottom: 20px;
  color: var(--text-light);
}

.contact-info-title,
.contact-form-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bg-light);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(44,55,151,0.1);
  color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-color);
}

.contact-info-link {
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.contact-locations-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.contact-location-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-location-chip {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(44,55,151,0.08);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.contact-location-chip:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-required {
  color: var(--secondary-color);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-color);
  background-color: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44,55,151,0.12);
}

.form-input.invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
}

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

.form-hint {
  font-size: 0.8rem;
  color: var(--text-light);
}

.form-error {
  font-size: 0.8rem;
  color: #e53e3e;
  font-weight: 500;
  display: none;
}

.form-error:not(:empty) {
  display: block;
}

.form-consent {
  gap: 8px;
}

.form-checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.form-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  background-color: #fff;
  transition: all var(--transition);
  position: relative;
  margin-top: 1px;
}

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

.form-checkbox:checked + .form-checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-checkbox:focus-visible + .form-checkbox-custom {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

.form-checkbox-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-link {
  color: var(--primary-color);
  font-weight: 600;
}

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

.form-status {
  padding: 0;
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
}

.form-status.success {
  padding: 16px;
  background-color: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
}

.form-status.error {
  padding: 16px;
  background-color: #fff5f5;
  border: 1px solid #feb2b2;
  color: #c53030;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  position: relative;
}

.submit-loading {
  display: none;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.form-submit.loading .submit-text {
  display: none;
}

.form-submit.loading .submit-loading {
  display: flex;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  overflow-y: auto;
  padding: 24px 0;
}

.contact-modal.open {
  display: block;
}

.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 40, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.contact-modal-dialog {
  position: relative;
  width: min(620px, 92vw);
  margin: 4vh auto;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  z-index: 1;
}

.contact-modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.contact-modal-close:hover {
  color: var(--primary-color);
}

.contact-modal-close:focus-visible {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

.modal-open {
  overflow: hidden;
}

.spin-icon {
  animation: spin 1s linear infinite;
}

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

@keyframes fadeIn {
  to { opacity: 1; }
}

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

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

@keyframes toolFloat {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  10%  { opacity: 1; }
  50%  { transform: translateY(-24px) rotate(180deg); }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(0) rotate(360deg); }
}

@keyframes dropFall {
  0%   { transform: rotate(-45deg) translateY(0); opacity: 0.8; }
  80%  { opacity: 0.4; }
  100% { transform: rotate(-45deg) translateY(110vh); opacity: 0; }
}

@keyframes waveSway {
  0%, 100% { transform: scaleX(1) translateX(0); }
  50%       { transform: scaleX(1.04) translateX(-1%); }
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

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

@keyframes waterFlow {
  0%   { stroke-dashoffset: 400; opacity: 0.6; }
  50%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-tool-icon,
  .hero-drop,
  .hero-wave-path-1,
  .hero-wave-path-2,
  .hero-typing-cursor,
  .hero-service-icon-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-parallax-layer {
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

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

  .about-grid {
    gap: 50px;
  }

  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 768px) {
  body::before {
    content: '';
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 18, 40, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 950;
  }

  body.mobile-nav-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

  .nav-list a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 12px;
  }

  .nav-cta .btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .lightbox-container {
    padding: 60px 60px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-wide-content {
    margin-top: 32px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 350px;
  }

  .section-title.text-left {
    text-align: center;
  }

  .about-eyebrow {
    display: block;
    text-align: center;
  }

  .about-cta {
    justify-content: center;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal-list {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .lightbox-container {
    padding: 60px 16px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .about-cta {
    flex-direction: column;
  }

  .about-cta .btn {
    width: 100%;
    text-align: center;
  }

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

  .contact-highlight-cta {
    padding: 84px 0;
  }

  .contact-highlight-actions {
    justify-content: center;
  }

  .contact-highlight-actions .btn {
    width: auto;
  }
}

@media print {
  .site-header,
  .back-to-top,
  .hero-scroll-indicator {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .section {
    padding: 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .reveal-fade,
  .reveal-slide-up {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
