:root {
  --bg: #f6f8fc;
  --panel: rgba(255, 255, 255, 0.86);
  --text: #12161f;
  --muted: #4d5667;
  --brand: #f4c21b;
  --brand-strong: #e2ad00;
  --line: rgba(16, 22, 36, 0.12);
  --glow: rgba(226, 173, 0, 0.25);
  --radius: 18px;
  --shadow: 0 20px 50px rgba(15, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Maven Pro", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(70, 140, 255, 0.12), transparent 30%),
    radial-gradient(circle at 20% 62%, rgba(244, 194, 27, 0.14), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 38%, #eef2fa 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.ambient-left {
  background: rgba(244, 194, 27, 0.2);
  top: 160px;
  left: -140px;
}

.ambient-right {
  background: rgba(78, 150, 255, 0.3);
  right: -90px;
  top: 35%;
}

.topbar,
.footer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: 0;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 90px;
  padding: 1rem clamp(1rem, 5vw, 4rem);
  margin-top: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  backdrop-filter: blur(10px);
  z-index: 50;
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.topbar.is-solid {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(15, 24, 40, 0.1);
}

.brand img {
  width: 120px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(244, 194, 27, 0.14));
  animation: logoFloat 4.8s ease-in-out infinite;
}

.menu {
  display: flex;
  gap: 1.2rem;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--brand-strong);
}

.lang-toggle {
  border: 1px solid rgba(16, 22, 36, 0.18);
  color: #161a22;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  width: 58px;
  height: 58px;
  padding: 0;
  font: 600 0.88rem/1 "Maven Pro", sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.topbar.is-solid .lang-toggle {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.icon-btn {
  width: 58px;
  height: 58px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.icon-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

main {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: 0;
  padding-top: 7.1rem;
  padding-bottom: 2.8rem;
  padding-inline: clamp(0.75rem, 2.2vw, 1.25rem);
}

.section {
  margin-bottom: 1.1rem;
  padding-inline: 0;
}

.hero {
  padding: 4.3rem 0;
  padding-inline: clamp(1rem, 2.6vw, 1.8rem);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.eyebrow {
  font: 600 0.85rem/1.3 "Maven Pro", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-strong);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  max-width: 780px;
  margin: 0.6rem 0 1rem;
  font-size: clamp(1.5rem, 3.35vw, 2.6rem);
}

.hero-copy {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-cta {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.boxed-cta {
  width: fit-content;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(15, 24, 40, 0.08);
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #101317;
  background: linear-gradient(120deg, var(--brand), var(--brand-strong));
  box-shadow: 0 12px 40px var(--glow);
}

.btn-ghost {
  color: #101317;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.55rem;
}

.boxed-block {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  padding: 1.55rem;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service p {
  color: #000;
}

.services h2,
#contact h2 {
  margin-bottom: 0.95rem;
}

#services,
.hero {
  margin-inline: clamp(2rem, 9vw, 9rem);
}

#contact {
  margin-inline: clamp(1.2rem, 7vw, 7rem);
}

#contact {
  margin-top: 2.2rem;
}

.service-grid,
.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-banner {
  width: 100vw;
  margin-top: 2.6rem;
  margin-bottom: 2.6rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: 0;
}

.showcase-banner-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 42vw, 480px);
  width: 100%;
  background: linear-gradient(90deg, #ffe47a 0%, #f8d25b 45%, #e0ab37 100%);
}

.showcase-banner-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 231, 125, 0.34) 0%, rgba(252, 220, 108, 0.18) 28%, rgba(244, 196, 77, 0.08) 58%, rgba(223, 168, 63, 0.12) 100%),
    radial-gradient(circle at 50% 42%, rgba(255, 235, 150, 0.06) 0%, rgba(255, 235, 150, 0) 38%);
  pointer-events: none;
}

.showcase-banner-image img {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 480px);
  object-fit: cover;
  object-position: center 32%;
}

.service h3,
.address h3 {
  color: var(--brand-strong);
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
}

.reach-block {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.reach-separator {
  height: 1px;
  width: min(620px, 100%);
  margin: 1rem auto 2rem;
  background: rgba(16, 22, 36, 0.18);
}

.reach-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 0;
  margin-bottom: 5.6rem;
}

.reach-item h3 {
  color: var(--brand-strong);
  margin-bottom: 0.35rem;
}

.reach-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.header-actions .btn-primary.icon-btn {
  color: #ffffff;
}

.contact-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-link {
  text-decoration: none;
  color: #171d27;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-link:hover {
  border-color: var(--brand-strong);
  color: var(--brand-strong);
}

.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.2rem 0 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  z-index: 45;
}

.footer-inner {
  width: min(1120px, 92vw);
  margin-inline: auto;
  text-align: center;
}

.hero,
.card {
  animation: riseIn 0.7s ease both;
}

.services .service:nth-child(2),
#contact .address:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .topbar {
    border-radius: 0;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 78px;
    padding: 0.85rem clamp(1rem, 5vw, 2rem);
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    gap: 0.7rem;
  }

  .service-grid,
  .address-grid,
  .reach-addresses {
    grid-template-columns: 1fr;
  }

  .service p {
    font-size: 0.92rem;
  }

  .reach-item p {
    font-size: 0.84rem;
  }

  #services,
  .hero,
  #contact {
    margin-inline: clamp(0.2rem, 1.5vw, 0.8rem);
  }

  .hero {
    padding: 2.7rem 0;
  }

  .showcase-banner {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .showcase-banner-image {
    min-height: clamp(220px, 62vw, 360px);
  }

  .showcase-banner-image img {
    height: clamp(220px, 62vw, 360px);
    object-position: 54% 22%;
  }

  main {
    padding-top: 6.5rem;
    padding-bottom: 2.6rem;
  }
}

@media (max-width: 500px) {
  .brand img {
    width: 100px;
  }

  .header-actions .btn {
    width: 58px;
    height: 58px;
    min-width: 58px;
    flex: 0 0 58px;
  }

  .service p {
    font-size: 0.88rem;
  }

  .reach-item p {
    font-size: 0.8rem;
  }
}
