:root {
  --ink: #0b1118;
  --ink-2: #1a2733;
  --muted: #5e6a76;
  --brand: #4b0c62;
  --brand-2: #6a1b88;
  --accent: #4b0c62;
  --accent-dark: #3a094d;
  --bg: #f6f7f8;
  --panel: #ffffff;
  --line: rgba(11, 17, 24, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 60px rgba(11, 17, 24, 0.18);
  --shadow-md: 0 18px 40px rgba(11, 17, 24, 0.12);
  --shadow-sm: 0 10px 24px rgba(11, 17, 24, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  letter-spacing: 0.1px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-solid {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  gap: 14px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.brand-text {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--ink-2);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link:hover {
  color: var(--brand);
  background: transparent;
}

.navbar-nav .dropdown-menu {
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 17, 24, 0.08);
  padding: 12px;
}

.navbar-nav .dropdown-item {
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
}

.navbar-nav .dropdown-item:hover {
  background: rgba(75, 12, 98, 0.08);
  color: var(--brand);
}

.btn-brand {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(75, 12, 98, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(75, 12, 98, 0.36);
}

.btn-link {
  color: var(--brand);
  font-weight: 600;
}

.btn-link:hover {
  color: var(--accent);
  text-decoration: none;
}

.btn-outline-light {
  border-radius: 999px;
  border-width: 1px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 96px 0;
}

.section.bg-soft {
  background: var(--bg);
}

.section.section-accent {
  background: linear-gradient(130deg, rgba(75, 12, 98, 0.1), rgba(11, 17, 24, 0.08));
}

.hero {
  position: relative;
  min-height: 78vh;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1118;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 17, 24, 0.92), rgba(11, 17, 24, 0.5));
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -200px;
  top: -160px;
  background: radial-gradient(circle, rgba(75, 12, 98, 0.45), transparent 65%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(105%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: rise 0.9s ease forwards;
}

.hero h1 {
  font-size: clamp(2.6rem, 3.4vw + 1rem, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #ffffff;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 600;
}

.section-title {
  margin-bottom: 28px;
}

.section-title h2 {
  font-weight: 700;
  letter-spacing: -0.4px;
}

.section-title p {
  color: var(--muted);
  max-width: 720px;
}

.service-card,
.why-card,
.info-card,
.contact-panel {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 17, 24, 0.06);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card .icon,
.why-card .icon,
.info-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(75, 12, 98, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 24px;
}

.section-accent .why-card {
  background: #ffffff;
}

.about-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 17, 24, 0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #111;
}

.gallery-link {
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(11, 17, 24, 0.75);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.form-control,
.form-control-file,
select.form-control {
  border-radius: 14px;
  border: 1px solid rgba(11, 17, 24, 0.12);
  padding: 12px 14px;
  font-size: 0.98rem;
  box-shadow: none;
}

.form-control:focus {
  border-color: rgba(75, 12, 98, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(75, 12, 98, 0.15);
}

.contact-panel h4 {
  margin-bottom: 16px;
}

.form-alert {
  border-radius: 16px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.form-alert.success {
  background: rgba(16, 185, 129, 0.12);
  color: #0b7a52;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #ffffff;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.preloader.is-hidden {
  display: none !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(75, 12, 98, 0.2);
  border-top-color: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 575px) {

  .hero-badges,
  .hero-stats {
    display: none;
  }

  .gallery-item img {
    height: 200px;
  }
}
