:root {
  --gold: #c9952f;
  --gold-light: #e8bd64;
  --gold-dark: #a87518;
  --navy: #071827;
  --navy-soft: #10283a;
  --ink: #16212a;
  --muted: #66717b;
  --cream: #faf7f0;
  --line: #e9e3d8;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 14px 38px rgba(7, 24, 39, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Alexandria", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.topbar {
  min-height: 34px;
  padding: 5px 0;
  color: rgba(255, 255, 255, .82);
  background: #030a10;
  font-size: 11px;
}

.topbar a {
  transition: color .25s ease;
}

.topbar a:hover,
.topbar i {
  color: var(--gold-light);
}

.topbar .whatsapp-link {
  display: grid;
  width: 23px;
  height: 23px;
  color: #fff;
  background: #20b865;
  border-radius: 50%;
  place-items: center;
}

.topbar .whatsapp-link i {
  color: inherit;
}

.navbar {
  --bs-navbar-padding-y: .55rem;
}

.navbar .container {
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  line-height: 1.15;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--gold);
  border: 1px solid rgba(201, 149, 47, .4);
  border-radius: 50%;
  place-items: center;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.brand-mark::before {
  top: -4px;
}

.brand-mark::after {
  bottom: -4px;
}

.brand-mark i {
  font-size: 25px;
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
}

.brand small {
  color: #454d53;
  font-size: 9px;
}

.brand strong {
  color: var(--navy);
  font-family: "Reem Kufi", sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.brand em {
  color: var(--muted);
  font-size: 8px;
  font-style: normal;
  letter-spacing: .05em;
}

.navbar-nav {
  gap: 6px;
}

.navbar .nav-link {
  position: relative;
  padding: 26px 9px !important;
  color: #222c33;
  font-size: 12px;
  font-weight: 500;
}

.navbar .nav-link::after {
  transition: transform .25s ease;
}

.navbar .nav-link:not(.dropdown-toggle)::before {
  position: absolute;
  right: 10px;
  bottom: 17px;
  left: 10px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold-dark);
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
  transform: scaleX(1);
}

.dropdown-menu {
  border: 0;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  font-size: 12px;
}

.dropdown-item {
  padding: 9px 16px;
}

.dropdown-item:active,
.dropdown-item:hover {
  color: var(--gold-dark);
  background: var(--cream);
}

.btn {
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #fff;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 8px 20px rgba(169, 117, 24, .2);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #fff;
  border-color: var(--gold-light);
  box-shadow: 0 12px 26px rgba(169, 117, 24, .32);
}

.btn-navy {
  padding-inline: 24px;
  color: #fff;
  background: var(--navy);
}

.btn-navy:hover {
  color: #fff;
  background: var(--navy-soft);
}

.nav-cta {
  min-width: 132px;
  padding: 11px 16px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 500px;
  align-items: center;
  color: #fff;
  background:
    url("assets/majlis.jpg")
    center 56% / cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 12, 18, .05) 20%, rgba(4, 12, 18, .72) 72%, rgba(4, 12, 18, .92) 100%);
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 10, 16, .48), transparent 55%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -80px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(232, 189, 100, .22);
  border-radius: 50%;
}

.hero-glow::before,
.hero-glow::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(232, 189, 100, .13);
  border-radius: inherit;
  inset: 50px;
}

.hero-glow::after {
  inset: 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-bottom: 55px;
}

.eyebrow {
  display: flex;
  margin-bottom: 13px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  animation: reveal .7s ease both;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--gold-light);
}

.hero h1 {
  margin: 0;
  font-family: "Reem Kufi", sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  animation: reveal .8s .08s ease both;
}

.hero h1 strong {
  color: var(--gold-light);
  font-weight: 700;
}

.hero h2 {
  margin: 8px 0 15px;
  font-size: clamp(18px, 2.5vw, 27px);
  font-weight: 600;
  animation: reveal .8s .15s ease both;
}

.hero p {
  max-width: 530px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  animation: reveal .8s .22s ease both;
}

.hero .d-flex {
  animation: reveal .8s .3s ease both;
}

.hero .btn-lg {
  min-width: 155px;
  padding: 12px 20px;
  font-size: 13px;
}

.hero .btn-outline-light {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, .06);
}

.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  display: grid;
  width: 32px;
  height: 32px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  place-items: center;
  transform: translateX(-50%);
  animation: bob 2s infinite;
}

.section {
  padding: 70px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "Reem Kufi", sans-serif;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 700;
}

.section-heading h2::after {
  position: absolute;
  right: calc(50% - 18px);
  bottom: -6px;
  width: 36px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.section-heading p {
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 12px;
}

.section-heading.compact {
  margin-bottom: 23px;
}

.services-section {
  position: relative;
  background:
    radial-gradient(circle at 0 50%, rgba(201, 149, 47, .08), transparent 25%),
    #fff;
}

.service-card {
  position: relative;
  height: 100%;
  padding: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(7, 24, 39, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover {
  border-color: rgba(201, 149, 47, .55);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card img {
  width: 100%;
  height: 145px;
  border-radius: 8px;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  z-index: 1;
  top: -19px;
  right: 50%;
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--gold);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(7, 24, 39, .1);
  place-items: center;
  transform: translateX(50%);
}

.service-body {
  padding: 13px 7px 8px;
  text-align: center;
}

.service-body h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.service-body p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

.features-section {
  padding: 16px 0 60px;
}

.features-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(7, 24, 39, .05);
  overflow: hidden;
}

.feature-item {
  height: 100%;
  min-height: 140px;
  padding: 25px 12px;
  text-align: center;
  border-left: 1px solid var(--line);
  transition: background .25s ease;
}

.feature-item:hover {
  background: var(--cream);
}

.feature-item i {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 25px;
}

.feature-item h3 {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.steps-section {
  padding-bottom: 65px;
}

.steps-panel {
  position: relative;
  padding: 35px 35px 42px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 149, 47, .14), transparent 20%),
    linear-gradient(135deg, #061522, #0b2132);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(7, 24, 39, .22);
  overflow: hidden;
}

.steps-panel::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(201, 149, 47, .18);
  border-radius: 50%;
}

.section-heading-light span {
  color: var(--gold-light);
}

.section-heading-light h2 {
  color: #fff;
}

.steps-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.step {
  position: relative;
  width: 115px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 0;
  left: 6px;
  display: grid;
  width: 25px;
  height: 25px;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  place-items: center;
}

.step-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin: 0 auto 10px;
  color: var(--gold-light);
  border: 1px solid rgba(232, 189, 100, .35);
  border-radius: 50%;
  font-size: 22px;
  place-items: center;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.step:hover .step-icon {
  color: var(--navy);
  background: var(--gold-light);
  transform: rotate(-8deg) scale(1.07);
}

.step h3 {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 8px;
}

.step-line {
  height: 1px;
  margin-top: 28px;
  flex: 1;
  border-top: 1px dashed rgba(232, 189, 100, .46);
}

.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr) 1.35fr;
  gap: 8px;
}

.gallery-item {
  position: relative;
  height: 180px;
  border-radius: 9px;
  box-shadow: 0 7px 18px rgba(7, 24, 39, .1);
  overflow: hidden;
}

.gallery-item::after {
  position: absolute;
  content: "";
  background: linear-gradient(0deg, rgba(4, 15, 24, .75), transparent 55%);
  inset: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  right: 15px;
  bottom: 10px;
  color: #fff;
  font-size: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item:hover img {
  filter: saturate(1.12);
  transform: scale(1.08);
}

.gallery-item:hover span {
  opacity: 1;
  transform: none;
}

.about-section {
  position: relative;
  padding: 78px 0;
  background:
    radial-gradient(circle at 100% 20%, rgba(201, 149, 47, .08), transparent 24%),
    #fff;
  overflow: hidden;
}

.about-showcase::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(201, 149, 47, .45), transparent);
}

.about-showcase .section-heading h2::after {
  right: 0;
}

.about-image {
  position: relative;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(7, 24, 39, .14);
}

.about-image::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 120px;
  height: 120px;
  content: "";
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 16px 0 0;
}

.about-image img {
  width: 100%;
  height: 390px;
  border-radius: 10px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: 28px;
  bottom: -22px;
  display: flex;
  min-width: 170px;
  padding: 13px 18px;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: var(--navy);
  border-right: 4px solid var(--gold);
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(7, 24, 39, .25);
}

.about-badge strong {
  color: var(--gold-light);
  font-family: "Reem Kufi", sans-serif;
  font-size: 26px;
  line-height: 1;
}

.about-badge span {
  font-size: 10px;
}

.about-lead {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.about-description {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
}

.about-highlights {
  display: grid;
  margin-bottom: 25px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.about-highlights > div {
  display: flex;
  min-height: 100px;
  padding: 16px 10px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  border-left: 1px solid var(--line);
}

.about-highlights > div:last-child {
  border-left: 0;
}

.about-highlights i {
  color: var(--gold);
  font-size: 21px;
}

.about-highlights span {
  display: flex;
  color: var(--muted);
  flex-direction: column;
  font-size: 8px;
  line-height: 1.7;
}

.about-highlights strong {
  color: var(--navy);
  font-size: 10px;
}

.about-cta {
  padding: 11px 23px;
}

.about-card,
.license-card,
.numbers-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 9px 30px rgba(7, 24, 39, .06);
}

.about-card .section-heading h2::after {
  right: 0;
}

.about-card p {
  color: var(--muted);
  font-size: 11px;
}

.about-stats {
  display: grid;
  margin-top: 25px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.about-stats div {
  padding: 17px 5px 0;
  text-align: center;
  border-left: 1px solid var(--line);
}

.about-stats div:last-child {
  border: 0;
}

.about-stats strong {
  display: block;
  color: var(--gold-dark);
  font-family: "Reem Kufi", sans-serif;
  font-size: 22px;
}

.about-stats span {
  color: var(--muted);
  font-size: 8px;
}

.license-card {
  position: relative;
  text-align: center;
}

.license-label {
  color: var(--navy);
  font-family: "Reem Kufi", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.document {
  display: flex;
  min-height: 132px;
  margin: 14px 0;
  padding: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fcfcfa;
  border: 1px solid #b9b9ae;
  outline: 3px double #deddd5;
  outline-offset: -7px;
}

.document i {
  color: #1f7255;
  font-size: 18px;
}

.document span {
  margin-top: 4px;
  font-size: 7px;
}

.document strong {
  font-size: 9px;
}

.document-lines {
  width: 70%;
  height: 25px;
  margin-top: 9px;
  background: repeating-linear-gradient(#c8cbc7 0 1px, transparent 1px 6px);
}

.license-card p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.license-number {
  font-size: 12px;
  letter-spacing: .1em;
}

.verified {
  margin-right: 6px;
  color: #33b873;
}

.numbers-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201, 149, 47, .12), transparent 45%),
    var(--navy);
  border-color: var(--navy);
  text-align: center;
}

.numbers-card > span {
  font-family: "Reem Kufi", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.numbers-grid {
  display: grid;
  margin: 35px 0 25px;
  grid-template-columns: repeat(3, 1fr);
}

.numbers-grid div {
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.numbers-grid div:last-child {
  border: 0;
}

.numbers-grid strong {
  display: block;
  color: var(--gold-light);
  font-family: "Reem Kufi", sans-serif;
  font-size: 24px;
}

.numbers-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 8px;
}

.experience {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.experience strong {
  color: var(--gold-light);
  font-size: 26px;
}

.experience span {
  font-size: 10px;
}

.faq-section {
  background:
    radial-gradient(circle at 100% 100%, rgba(201, 149, 47, .1), transparent 25%),
    #fbfaf7;
}

.accordion {
  max-width: 820px;
}

.accordion-item {
  margin-bottom: 10px;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  color: var(--navy);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--gold-dark);
  background: #fffaf0;
}

.accordion-body {
  color: var(--muted);
  font-size: 11px;
}

.footer {
  position: relative;
  padding-top: 60px;
  color: rgba(255, 255, 255, .67);
  background:
    radial-gradient(circle at 15% 10%, rgba(201, 149, 47, .12), transparent 25%),
    #06131e;
}

.brand-light .brand-mark {
  color: var(--gold-light);
}

.brand-light small,
.brand-light em {
  color: rgba(255, 255, 255, .54);
}

.brand-light strong {
  color: #fff;
}

.footer-intro {
  max-width: 250px;
  margin: 20px 0;
  font-size: 12px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 4px;
  place-items: center;
  transition: color .25s ease, background .25s ease;
}

.socials a:hover {
  color: var(--navy);
  background: var(--gold-light);
}

.footer h3 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.footer-links,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li,
.contact-list li {
  margin-bottom: 11px;
  font-size: 12px;
  line-height: 1.7;
}

.footer-links a:hover,
.contact-list a:hover {
  color: var(--gold-light);
}

.contact-list i {
  width: 22px;
  color: var(--gold);
  font-size: 13px;
  text-align: center;
}

.phone-number {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
}

.quote-form {
  display: grid;
  gap: 8px;
}

.quote-form .form-control,
.quote-form .form-select {
  min-height: 36px;
  color: #fff;
  background-color: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 3px;
  font-size: 9px;
}

.quote-form .form-control::placeholder {
  color: rgba(255, 255, 255, .5);
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 149, 47, .12);
}

.quote-form option {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 45px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 10px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 1050;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 54px;
  height: 54px;
  color: #fff;
  background: #20b865;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(20, 109, 62, .35);
  font-size: 27px;
  place-items: center;
  transition: transform .25s ease;
  animation: whatsappAttention 2.2s ease-in-out infinite;
}

.floating-whatsapp::before {
  position: absolute;
  content: "";
  border: 2px solid rgba(32, 184, 101, .65);
  border-radius: 50%;
  pointer-events: none;
  inset: -3px;
  animation: whatsappRing 2.2s ease-out infinite;
}

.floating-whatsapp:hover {
  color: #fff;
  animation-play-state: paused;
  transform: scale(1.08);
}

.floating-whatsapp:hover::before {
  animation-play-state: paused;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

@keyframes whatsappAttention {
  0%,
  45%,
  100% {
    transform: translateY(0) rotate(0);
  }
  52% {
    transform: translateY(-5px) rotate(-7deg);
  }
  59% {
    transform: translateY(0) rotate(7deg);
  }
  66% {
    transform: translateY(-3px) rotate(-4deg);
  }
  73% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes whatsappRing {
  0%,
  42% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: .8;
  }
  78%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@media (max-width: 1199.98px) {
  .navbar .nav-link {
    padding-inline: 6px !important;
    font-size: 10px;
  }

  .nav-cta {
    min-width: auto;
  }

  .service-card img {
    height: 170px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .navbar .container {
    min-height: 62px;
  }

  .navbar-collapse {
    padding: 10px 0 20px;
  }

  .navbar .nav-link {
    padding: 9px !important;
  }

  .navbar .nav-link:not(.dropdown-toggle)::before {
    display: none;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 520px;
    background-position: 40% center;
  }

  .hero::before {
    background: rgba(3, 10, 16, .7);
  }

  .about-image {
    max-width: 620px;
    margin: 0 auto 28px;
  }

  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-highlights > div:nth-child(2) {
    border-left: 0;
  }

  .about-highlights > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-item {
    border-bottom: 1px solid var(--line);
  }

  .steps-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 12px;
  }

  .step {
    width: auto;
  }

  .step-line {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 13px;
  }

  .topbar {
    font-size: 9px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand em {
    display: none;
  }

  .hero {
    min-height: 530px;
    text-align: center;
  }

  .eyebrow,
  .hero .d-flex {
    justify-content: center;
  }

  .hero .btn {
    width: 100%;
  }

  .about-section {
    padding: 58px 0 70px;
  }

  .about-image img {
    height: 290px;
  }

  .about-lead {
    font-size: 13px;
  }

  .about-highlights > div {
    min-height: 92px;
    justify-content: flex-start;
  }

  .about-cta {
    width: 100%;
  }

  .section {
    padding: 55px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .service-grid {
    --bs-gutter-x: .7rem;
    --bs-gutter-y: 1.8rem;
  }

  .service-card {
    padding: 5px;
  }

  .service-card img {
    height: 115px;
  }

  .service-body {
    padding-inline: 2px;
  }

  .service-body h3 {
    font-size: 11px;
  }

  .service-body p {
    font-size: 8px;
  }

  .features-shell {
    border-bottom: 0;
  }

  .feature-item {
    min-height: 130px;
  }

  .steps-panel {
    margin-inline: -3px;
    padding: 30px 12px;
  }

  .steps-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item {
    height: 140px;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    height: 180px;
  }

  .about-card,
  .license-card,
  .numbers-card {
    padding: 22px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 49px;
    height: 49px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
