:root {
  color-scheme: light;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--slate-50);
  color: var(--slate-900);
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.nav-toggle {
  border: 1px solid var(--slate-200);
  background: var(--white);
}

.mobile-nav.is-open {
  display: block;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-slider-track {
  display: flex;
  width: 300%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide {
  position: relative;
  width: 33.3333%;
  flex-shrink: 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slide-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-banner-1 {
  background-image:
    linear-gradient(100deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.82) 40%, rgba(37, 99, 235, 0.48) 100%),
    url("https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1600&q=80");
}

.hero-banner-2 {
  background-image:
    linear-gradient(100deg, rgba(2, 6, 23, 0.92) 0%, rgba(6, 30, 40, 0.84) 40%, rgba(13, 148, 136, 0.5) 100%),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80");
}

.hero-banner-3 {
  background-image:
    linear-gradient(100deg, rgba(2, 6, 23, 0.92) 0%, rgba(40, 26, 6, 0.82) 40%, rgba(217, 119, 6, 0.5) 100%),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80");
}

.hero-copy {
  max-width: 44rem;
  padding-top: 0.5rem;
}

.hero-copy h1 {
  letter-spacing: -0.06em;
  line-height: 1.15;
  font-size: 2rem;
}

.hero-copy p {
  max-width: 40rem;
}

@media (min-width: 768px) {
  .hero-copy h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-copy h1 {
    font-size: 3rem;
  }
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.35);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-slider-arrow:hover {
  background: rgba(37, 99, 235, 0.45);
  border-color: rgba(147, 197, 253, 0.6);
}

.hero-slider-prev {
  left: 1rem;
}

.hero-slider-next {
  right: 1rem;
}

.hero-slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.hero-slider-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.hero-slider-dot.is-active {
  width: 1.5rem;
  background: #fff;
}

@media (max-width: 767px) {
  .hero-slide {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-slider-arrow {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.9rem;
  }
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.subpage-hero > .w-full {
  position: relative;
  z-index: 1;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(8, 15, 35, 0.88) 0%, rgba(15, 23, 42, 0.85) 42%, rgba(67, 56, 202, 0.52) 100%),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(147, 197, 253, 0.25), transparent 18%),
    linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0));
  pointer-events: none;
}

.about-hero::after {
  content: "✦";
  position: absolute;
  right: 12%;
  bottom: 18%;
  font-size: clamp(4rem, 7vw, 7rem);
  color: rgba(255, 255, 255, 0.12);
  transform: rotate(18deg);
  pointer-events: none;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(7, 24, 43, 0.8) 38%, rgba(13, 148, 136, 0.46) 100%),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.18) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 48px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 48px
    );
  pointer-events: none;
}

.services-hero::after {
  content: "◈";
  position: absolute;
  right: 10%;
  bottom: 15%;
  font-size: clamp(3rem, 5vw, 6rem);
  color: rgba(20, 184, 166, 0.18);
  pointer-events: none;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(59, 130, 246, 0.35) 100%),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 28%, rgba(125, 211, 252, 0.22), transparent 20%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.12), rgba(59, 130, 246, 0.18));
  pointer-events: none;
}

.contact-hero::after {
  content: "◎";
  position: absolute;
  right: 14%;
  bottom: 18%;
  font-size: clamp(3rem, 5vw, 6rem);
  color: rgba(191, 219, 254, 0.18);
  pointer-events: none;
}

.hero-stat-card {
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.18);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(147, 197, 253, 0.8);
  color: #7dd3fc;
  transform: translateY(-2px);
}

.social-link i {
  font-size: 0.95rem;
}

.map-shell {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 1rem;
  background: #f8fafc;
}

.map-shell iframe {
  display: block;
  width: 100%;
  min-height: 18rem;
  border: 0;
}

.faq-item {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.active {
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-toggle-icon {
  transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .mobile-nav {
    display: none;
  }
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.success-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-modal-card {
  width: min(100%, 28rem);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.success-modal.is-visible .success-modal-card {
  transform: translateY(0) scale(1);
}

.success-badge {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
}
