:root {
  --bg: #fff;
  --text: #111;
  --muted: #4a4a4a;
  --line: #e9e9e9;
  --soft: #f7f7f7;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --btn: #111;
  --btnText: #fff;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Topbar */
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}
.topbar__tag {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.topbar__cta {
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand__logo {
  width: 140px;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 8px;
}
.nav a:hover {
  background: var(--soft);
  color: var(--text);
}
.call {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: underline;
}
.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

/* Hero */
.hero {
  padding: 26px 0 10px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}
.hero__text h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
}
.subtitle {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
}
.hero__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__media img {
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

/* Sections */
.section {
  padding: 34px 0;
}
.section--tight {
  padding-top: 18px;
}
.section h2 {
  margin: 0 0 10px;
  font-size: 26px;
}
.section p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.badge {
  display: inline-block;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--text);
  font-weight: 700;
  border-radius: 10px;
  margin-top: 4px;
}

.services__line {
  font-weight: 800;
  color: var(--text) !important;
  letter-spacing: 0.3px;
}

/* Grid */
.grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.twoCol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.list {
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 14px;
  padding: 14px;
}
.list h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--text);
}
.list ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

/* Accordion */
.accordion {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.acc__btn {
  width: 100%;
  text-align: left;
  border: 0;
  background: var(--bg);
  padding: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-top: 1px solid var(--line);
}
.acc__btn:first-child {
  border-top: 0;
}
.acc__btn:hover {
  background: var(--soft);
}
.acc__panel {
  display: none;
  padding: 0 14px 14px;
  background: var(--bg);
}
.acc__panel p {
  margin: 10px 0 0;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}
.smallTitle {
  font-weight: 800;
  color: var(--text) !important;
  margin-top: -2px;
}
.tinyCaps {
  margin: 0 0 10px !important;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--muted) !important;
  text-transform: uppercase;
  font-size: 12px;
}

/* CTA */
.cta {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cta h3 {
  margin: 0 0 6px;
}
.cta p {
  margin: 0;
}

.stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 6px;
}
.stat {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 700;
  color: var(--muted);
}

/* Contact */
.contactGrid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.contactCard {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: var(--bg);
}
.contactCard h3 {
  margin: 0 0 10px;
  font-size: 16px;
}
.contactCard a {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  text-decoration: underline;
}
.footerNote {
  margin-top: 14px !important;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--btn);
  font-weight: 800;
  letter-spacing: 0.2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}
.btn:active {
  transform: scale(0.98);
}
.btn--solid {
  background: var(--btn);
  color: var(--btnText);
}
.btn--solid:hover {
  opacity: 0.92;
}
.btn--outline {
  background: var(--bg);
  color: var(--btn);
}
.btn--outline:hover {
  background: var(--soft);
}
.center {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* Map */
.section--map {
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mapWrap {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.mapWrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__inner p {
  margin: 0;
  color: var(--muted);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .twoCol {
    grid-template-columns: 1fr;
  }
  .contactGrid {
    grid-template-columns: 1fr;
  }
  .hero__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .nav__toggle {
    display: inline-flex;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    flex-direction: column;
    gap: 6px;
  }
  .nav a {
    width: min(1100px, 92%);
    margin: 0 auto;
  }
}

/* Floating call button (same black/white style) */
.floatCall {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: var(--btn);
  color: var(--btnText);
  border: 1px solid var(--btn);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);

  font-weight: 900;
  letter-spacing: 0.6px;
  text-decoration: none;

  transform: translateY(0);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.floatCall:hover {
  opacity: 0.92;
}
.floatCall:active {
  transform: scale(0.98);
}

/* On desktop make it slightly smaller */
@media (min-width: 900px) {
  .floatCall {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 18px;
  }
}
/* Better reading width */
.section .container {
  max-width: 1100px;
}
.section p {
  max-width: 900px;
}

/* More premium spacing */
.section {
  padding: 54px 0;
}
.section--tight {
  padding-top: 34px;
}
.hero {
  padding: 42px 0 18px;
}

/* Cleaner headings */
.section h2 {
  font-size: 30px;
  letter-spacing: -0.02em;
}
.hero__text h1 {
  letter-spacing: -0.03em;
}
.hero__text {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.hero__highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 0;
}
.hero__highlights span {
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 700;
  color: var(--muted);
  font-size: 13px;
}
.cardBtn {
  padding: 0;
  cursor: pointer;
  width: 100%;
  background: transparent;
}
.cardBtn img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.modal.show {
  display: flex;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}
.modal__img {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.header__inner {
  padding: 16px 0;
}
.nav a {
  font-weight: 600;
}
.call {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--soft);
  text-decoration: none;
}
.call:hover {
  background: #fff;
}
.floatCall {
  width: auto;
  height: auto;
  padding: 12px 14px;
  gap: 10px;
  display: flex;
}
.floatCall__icon {
  font-size: 18px;
  line-height: 1;
}
.floatCall__text {
  font-weight: 900;
  letter-spacing: 0.3px;
}
