:root {
  --primary: #233154;
  --primary-deep: #17223e;
  --gold: #d7b15e;
  --cream: #f5f2eb;
  --white: #fff;
  --ink: #17223e;
  --muted: #6e7481;
  --line: rgba(35, 49, 84, 0.14);
  --title: 44px;
  --title-lh: 48px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
button {
  border: 0;
  background: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 80px));
  margin: auto;
}
.section-pad {
  padding: 60px 0;
}
.section-dark {
  background: var(--primary);
  color: #fff;
}
.section-light {
  background: #eeece5;
}
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: 0.6s ease;
}
.page-loader span {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Site Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.35s ease;
}
.site-header.scrolled {
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(23, 34, 62, 0.08);
}
.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: Manrope, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}
.brand b {
  font-weight: 500;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.desktop-nav a,
.mobile-menu a {
  position: relative;
}
.desktop-nav a:after,
.mobile-menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}
.desktop-nav a:hover:after,
.mobile-menu a:hover:after {
  width: 100%;
}
.nav-cta {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid #101a31;
  padding: 13px 17px;
  border-radius: 30px;
}
.nav-cta span {
  color: var(--gold);
  margin-left: 6px;
}

.nav-cta:hover {
  color: #d7b15e;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
}
.menu-toggle i {
  position: absolute;
  left: 12px;
  width: 17px;
  height: 1px;
  background: var(--ink);
  transition: 0.3s;
}
.menu-toggle i:first-child {
  top: 16px;
}
.menu-toggle i:last-child {
  top: 23px;
}
.mobile-menu {
  display: none;
}

/* Hero Sections */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: #fff;
}

.hero-shape-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.824);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #233154;
  background: #d7b15e83;
  padding: 10px 15px;
  border: #d7b15e;
  border-radius: 100px;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: #d7b15e;
  display: block;
  flex-shrink: 0;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: 70px;
  line-height: 72px;
  font-weight: 500;
  color: #233154;
  letter-spacing: -3px;
}

.hero h1 em {
  color: #d7b15e;
  font-style: normal;
}

.hero-sub {
  max-width: 680px;
  margin: 15px auto 0;
  font-size: 14px;
  line-height: 20px;
  color: #555b68;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 100px;
  background-color: #d7b15e;
  color: #fff;
  box-shadow: 2px 2px 2px 2px rgba(23, 34, 62, 0.08);
}

.btn-primary:hover {
  background-color: #fff;
  color: #17223e;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 100px;
  background-color: #fff;
  color: #17223e;
  box-shadow: 2px 2px 2px 2px rgba(23, 34, 62, 0.08);
}

.text-link:hover {
  background-color: #d7b15e;
  color: white;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 58px;
  border-top: 1px solid rgba(35, 49, 84, 0.938);
  border-bottom: 1px solid rgba(35, 49, 84, 0.938);
}

.hero-stats > div {
  min-width: 180px;
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-stats > div + div {
  border-left: 1px solid rgba(35, 49, 84, 0.938);
}

.hero-stats strong {
  font-size: 28px;
  line-height: 30px;
  font-weight: 600;
  color: #233154;
}

.hero-stats span {
  font-size: 14px;
  line-height: 18px;
  color: #707582;
  letter-spacing: 0.04em;
}

.scroll-note {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #233154;
}

.scroll-note span {
  font-size: 16px;
  line-height: 1;
  color: #d7b15e;
}

@media (max-width: 991px) {
  .hero {
    padding: 110px 24px 90px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-sub {
    max-width: 620px;
    font-size: 17px;
  }

  .hero-stats > div {
    min-width: 150px;
    padding: 18px 22px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    padding: 100px 20px 85px;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-copy {
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .eyebrow span {
    width: 20px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero-sub {
    max-width: 500px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
  }

  .hero-stats {
    width: 100%;
    margin-top: 42px;
  }

  .hero-stats > div {
    min-width: 0;
    flex: 1;
    padding: 16px 8px;
  }

  .hero-stats > div + div {
    border-left: 1px solid rgba(35, 49, 84, 0.15);
  }

  .hero-stats strong {
    font-size: 19px;
  }

  .hero-stats span {
    font-size: 9px;
    line-height: 1.3;
  }

  .scroll-note {
    bottom: 20px;
    font-size: 8px;
  }

  .scroll-note span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 90px 16px 80px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-sub {
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-stats {
    margin-top: 34px;
  }

  .hero-stats > div {
    padding: 14px 5px;
  }

  .hero-stats strong {
    font-size: 17px;
  }

  .hero-stats span {
    font-size: 8px;
  }

  .scroll-note {
    bottom: 18px;
  }
}

/* About */
.about {
  background: #F5F2EB;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 90px;
  align-items: start;
}

.about-copy {
  max-width: 620px;
  padding-top: 10px;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #233154;
  background-color: #d7b15e9d;
  padding: 14px 20px;
  border-radius: 100px;
  width: fit-content;
}

.about-eyebrow span {
  width: 28px;
  height: 1px;
  display: block;
  flex-shrink: 0;
  background: #d7b15e;
}

.about-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: 44px;
  line-height: 48px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #233154;
}

.about-copy h2 em {
  display: block;
  color: #d7b15e;
  font-style: normal;
}

.about-copy .lead {
  margin: 34px 0 24px;
  max-width: 600px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
  color: #233154;
}

.about-copy p:not(.lead):not(.about-eyebrow) {
  max-width: 590px;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #626875;
}

.about-copy .line-btn {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 100px;
  background-color: #d7b15e;
  color: #fff;
  box-shadow: 2px 2px 2px 2px rgba(23, 34, 62, 0.08);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.3s ease,
    gap 0.3s ease,
    border-color 0.3s ease;
}


.about-copy .line-btn:hover {
  gap: 18px;
  color: #d7b15e;
  background-color: #fff;
}

.about-copy .line-btn:hover span {
  transform: translate(3px, -3px);
}

.about-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
  background: #233154;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(35, 49, 84, 0) 50%,
    rgba(35, 49, 84, 0.2) 100%
  );
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-feature {
  min-height: 120px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(35, 49, 84, 0.1);
  border-radius: 20px;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 177, 94, 0.55);
  box-shadow: 0 16px 40px rgba(35, 49, 84, 0.08);
}

.about-feature-number {
  flex-shrink: 0;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #d7b15e;
}

.about-feature strong {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #233154;
}

.about-feature p {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  color: #737986;
}

@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: 55px;
  }

  .about-copy h2 {
    font-size: 45px;
  }

  .about-copy .lead {
    font-size: 18px;
  }

  .about-image {
    height: 350px;
  }
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-copy {
    max-width: 750px;
  }

  .about-copy h2 {
    font-size: 42px;
  }

  .about-copy p:not(.lead):not(.about-eyebrow) {
    max-width: 700px;
  }

  .about-right {
    max-width: 750px;
  }

  .about-image {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .about-grid {
    gap: 40px;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .about-eyebrow span {
    width: 20px;
  }

  .about-copy h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .about-copy .lead {
    margin-top: 25px;
    font-size: 18px;
    line-height: 1.55;
  }

  .about-copy p:not(.lead):not(.about-eyebrow) {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-image {
    height: 300px;
    border-radius: 18px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-feature {
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .about-copy h2 {
    font-size: 30px;
  }

  .about-copy .lead {
    font-size: 17px;
  }

  .about-image {
    height: 240px;
  }

  .about-feature {
    padding: 18px;
    gap: 14px;
  }

  .about-feature strong {
    font-size: 14px;
  }

  .about-feature p {
    font-size: 11px;
  }
}

/* Vision & Mission */
.vision {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 60vh;
  padding: 60px 0;
}

.vision .gradient-blinds {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: auto;
}

.vision .gradient-blinds canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: auto;
}

.vision-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(2, 6, 16, 0.61);
  pointer-events: none;
}

.vision-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
  padding: 0 20px;
}

.vision-card,
.mission-card {
  position: relative;
  min-height: 320px;
  padding: 58px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  background: transparent;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.vision-card::before,
.mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.015) 35%,
    rgba(255, 255, 255, 0.01) 65%,
    rgba(255, 255, 255, 0.06) 100%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.vision-card::after,
.mission-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -140px;
  right: -120px;
  border-radius: 50%;
  background: rgba(215, 177, 94, 0.08);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.vision-card > *,
.mission-card > * {
  position: relative;
  z-index: 2;
}

.vision-eyebrow,
.mission-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #d7b15e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
}

.vision-eyebrow span,
.mission-eyebrow span {
  width: 28px;
  height: 1px;
  flex-shrink: 0;
  background: #d7b15e;
}

.vision-card h2,
.mission-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.vision-card h2 em,
.mission-card h2 em {
  color: #d7b15e;
  font-style: normal;
}

.vision-description,
.mission-description {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.vision-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.vision-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.vision-points span:hover {
  background: rgba(215, 177, 94, 0.16);
  border-color: rgba(215, 177, 94, 0.55);
  transform: translateY(-2px);
}

.mission-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.mission-points > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.mission-points > div:hover {
  background: rgba(215, 177, 94, 0.12);
  border-color: rgba(215, 177, 94, 0.4);
  transform: translateY(-3px);
}

.mission-points > div > span {
  grid-row: span 2;
  color: #d7b15e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.mission-points strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.mission-points p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .vision {
    padding: 80px 0;
  }

  .vision-container {
    gap: 24px;
  }

  .vision-card,
  .mission-card {
    min-height: 420px;
    padding: 46px 38px;
  }

  .vision-card h2,
  .mission-card h2 {
    font-size: 44px;
  }
}

@media (max-width: 991px) {
  .vision {
    min-height: auto;
    padding: 80px 0;
  }

  .vision-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vision-card,
  .mission-card {
    min-height: 400px;
  }

  .vision-card h2,
  .mission-card h2 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .vision {
    padding: 70px 0;
  }

  .vision-container {
    gap: 18px;
    padding: 0 15px;
  }

  .vision-card,
  .mission-card {
    min-height: auto;
    padding: 38px 26px;
    border-radius: 24px;
  }

  .vision-card h2,
  .mission-card h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .vision-description,
  .mission-description {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .vision-points {
    margin-top: 24px;
  }

  .mission-points {
    margin-top: 24px;
  }

  .mission-points > div {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .vision {
    padding: 60px 0;
  }

  .vision-container {
    padding: 0 12px;
  }

  .vision-card,
  .mission-card {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .vision-eyebrow,
  .mission-eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .vision-eyebrow span,
  .mission-eyebrow span {
    width: 22px;
  }

  .vision-card h2,
  .mission-card h2 {
    font-size: 30px;
  }

  .vision-description,
  .mission-description {
    font-size: 13px;
    line-height: 1.7;
  }

  .vision-points {
    gap: 7px;
  }

  .vision-points span {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 10px;
  }

  .mission-points {
    gap: 10px;
  }

  .mission-points > div {
    grid-template-columns: 32px 1fr;
    column-gap: 10px;
    padding: 12px;
  }

  .mission-points strong {
    font-size: 13px;
  }

  .mission-points p {
    font-size: 11px;
  }
}

/* Services section */
.services {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 60px 20px;
}

.services .container {
  position: relative;
  width: 100%;
}

.service-head {
  display: flex;
  align-items: flex-end;
  align-content: center;
  justify-content: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.services-titles h2 {
  font-size: 44px;
  line-height: 48px;
}

.services-titles em {
  color: #d7b15e;
}

.service-head > div {
  flex: 1;
}

.service-head > p {
  max-width: 440px;
  margin: 0 0 5px;
  color: #5d6270;
  font-size: 14px;
  line-height: 20px;
}

.services-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 30px;
}

.services-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  margin: 0;
  padding: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.service-card {
  position: relative;
  flex: 0 0 360px;
  width: 360px;
  min-height: 410px;
  padding: 34px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(35, 49, 84, 0.12);
  border-radius: 24px;
  background: #f7f8fa;
  cursor: default;
  user-select: none;
  transition:
    transform 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(215, 177, 94, 0.14);
  filter: blur(50px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 32px;
  width: 36px;
  height: 1px;
  background: #d7b15e;
  transition:
    width 0.45s ease,
    background 0.45s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: #233154;
  border-color: #233154;
  box-shadow: 0 25px 60px rgba(35, 49, 84, 0.18);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  width: 70px;
  background: #d7b15e;
}

.service-no {
  position: absolute;
  top: 30px;
  right: 32px;
  z-index: 2;
  color: #233154;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: color 0.45s ease;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  color: #233154;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  transition: color 0.45s ease;
}

.service-card p {
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin: 0;
  color: #687080;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  transition: color 0.45s ease;
}

.service-arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid rgba(35, 49, 84, 0.15);
  border-radius: 50%;
  color: #233154;
  font-size: 18px;
  line-height: 1;
  transition:
    color 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease,
    transform 0.45s ease;
}

.service-card:hover .service-no,
.service-card:hover h3 {
  color: #fff;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card:hover .service-arrow {
  color: #233154;
  background: #d7b15e;
  border-color: #d7b15e;
  transform: rotate(45deg);
}

.services-carousel::before,
.services-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: 70px;
  pointer-events: none;
}

.services-carousel::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.services-carousel::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

@media (max-width: 1200px) {
  .service-head {
    gap: 40px;
  }

  .service-card {
    flex-basis: 330px;
    width: 330px;
    min-height: 400px;
  }
}

@media (max-width: 1100px) {
  .service-head {
    margin-bottom: 50px;
  }

  .service-head > p {
    max-width: 380px;
  }

  .service-card {
    flex-basis: 320px;
    width: 320px;
    min-height: 390px;
  }
}

@media (max-width: 991px) {
  .service-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 42px;
  }

  .service-head > p {
    max-width: 600px;
    margin: 0;
  }

  .services-carousel {
    padding-top: 8px;
    padding-bottom: 25px;
  }

  .service-card {
    flex-basis: 310px;
    width: 310px;
    min-height: 380px;
    padding: 32px 28px 30px;
  }

  .service-card::after {
    top: 30px;
    left: 28px;
  }

  .service-no {
    top: 28px;
    right: 28px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .service-card p {
    max-width: 270px;
  }

  .service-arrow {
    right: 28px;
    bottom: 28px;
  }
}

@media (max-width: 767px) {
  .service-head {
    gap: 16px;
    margin-bottom: 34px;
  }

  .service-head > p {
    font-size: 13px;
    line-height: 1.7;
  }

  .services-carousel {
    padding-top: 6px;
    padding-bottom: 20px;
  }

  .services-grid {
    gap: 14px;
  }

  .service-card {
    flex-basis: 78vw;
    width: 78vw;
    min-height: 370px;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .service-card::after {
    top: 28px;
    left: 24px;
  }

  .service-no {
    top: 26px;
    right: 24px;
    font-size: 11px;
  }

  .service-card h3 {
    margin-bottom: 14px;
    font-size: 25px;
    line-height: 1.1;
  }

  .service-card p {
    max-width: 250px;
    font-size: 12px;
    line-height: 1.7;
  }

  .service-arrow {
    right: 24px;
    bottom: 24px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .services-carousel::before,
  .services-carousel::after {
    width: 35px;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex-basis: 82vw;
    width: 82vw;
    min-height: 350px;
    padding: 26px 22px;
  }

  .service-card::after {
    top: 26px;
    left: 22px;
  }

  .service-no {
    top: 24px;
    right: 22px;
  }

  .service-card h3 {
    font-size: 23px;
  }

  .service-card p {
    max-width: 235px;
    font-size: 12px;
  }

  .service-arrow {
    right: 22px;
    bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: none;
  }

  .service-card::before,
  .service-card::after {
    transition: none;
  }

  .service-card h3,
  .service-card p,
  .service-no,
  .service-arrow {
    transition: none;
  }
}

/* What We do */
.what-we-do {
  position: relative;
  overflow: hidden;
  background: #f7f8fa;
  padding: 60px 10px;
}

.wwd-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 90px;
}

.wwd-image {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  border-radius: 28px;
  background: #e9ebef;
}

.wwd-image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.wwd-image:hover img {
  transform: scale(1.04);
}

.image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(35, 49, 84, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.image-caption span {
  color: #d7b15e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
}

.image-caption b {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.wwd-copy {
  width: 100%;
  max-width: 650px;
}

.wwd-copy .eyebrow {
  margin-bottom: 18px;
}

.wwd-copy h2 {
  margin: 0 0 24px;
  color: #233154;
  font-size: 44px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.04em;
}

.wwd-copy h2 em {
  color: #d7b15e;
}

.wwd-description {
  max-width: 610px;
  margin: 0 0 34px;
  color: #687080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
}

.process-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid rgba(35, 49, 84, 0.14);
}

.process-item {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(35, 49, 84, 0.14);
}

.process-number {
  position: absolute;
  left: 0;
  top: 24px;
  z-index: 2;
  color: #d7b15e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  pointer-events: none;
}

.process-question {
  position: relative;
  width: 100%;
  min-height: 72px;
  padding: 20px 60px 20px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 0;
  outline: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.process-question strong {
  display: block;
  color: #233154;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.process-question i {
  display: block;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: #687080;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    margin 0.35s ease,
    opacity 0.3s ease;
}

.process-question b {
  position: absolute;
  top: 20px;
  right: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #233154;
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.process-question:hover b {
  color: #d7b15e;
}

.process-question:focus-visible {
  outline: 1px solid #d7b15e;
  outline-offset: 4px;
}

.process-item.active .process-question strong {
  color: #233154;
}

.process-item.active .process-question i {
  max-height: 100px;
  margin-top: 8px;
  opacity: 1;
}

.process-item.active .process-question b {
  color: #d7b15e;
  transform: rotate(45deg);
}

@media (max-width: 1100px) {
  .wwd-grid {
    gap: 60px;
  }

  .wwd-image {
    min-height: 540px;
  }

  .wwd-image img {
    min-height: 540px;
  }

  .wwd-copy h2 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .wwd-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .wwd-image {
    min-height: 500px;
    max-height: 600px;
  }

  .wwd-image img {
    min-height: 500px;
    max-height: 600px;
  }

  .wwd-copy {
    max-width: 720px;
  }

  .wwd-copy h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .wwd-grid {
    gap: 38px;
  }

  .wwd-image {
    min-height: 420px;
    max-height: 480px;
    border-radius: 20px;
  }

  .wwd-image img {
    min-height: 420px;
    max-height: 480px;
  }

  .image-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 13px 15px;
    border-radius: 12px;
  }

  .image-caption b {
    font-size: 12px;
  }

  .wwd-copy h2 {
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1.1;
  }

  .wwd-description {
    margin-bottom: 28px;
    font-size: 13px;
    line-height: 1.8;
  }

  .process-number {
    top: 21px;
    font-size: 10px;
  }

  .process-question {
    min-height: 64px;
    padding: 18px 48px 18px 36px;
  }

  .process-question strong {
    font-size: 15px;
  }

  .process-question i {
    font-size: 12px;
    line-height: 1.7;
  }

  .process-question b {
    top: 16px;
    width: 30px;
    height: 30px;
    font-size: 21px;
  }

  .process-item.active .process-question i {
    margin-top: 7px;
  }
}

@media (max-width: 480px) {
  .wwd-image {
    min-height: 360px;
    max-height: 400px;
  }

  .wwd-image img {
    min-height: 360px;
    max-height: 400px;
  }

  .image-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .wwd-copy h2 {
    font-size: 30px;
  }

  .process-question {
    padding-left: 32px;
    padding-right: 42px;
  }
}

/* How we Process */
.values {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.values .section-head {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.value-eyebrow {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #233154;
  background-color: #d7b15e9d;
  padding: 14px 20px;
  border-radius: 100px;
  width: fit-content;
}

.value-eyebrow span {
  width: 28px;
  height: 1px;
  display: block;
  flex-shrink: 0;
  background: #d7b15e;
}

.values-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  width: 100%;
}

.values-row::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: #d7b15e;
  opacity: 0.7;
}

.value {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 0 22px;
  text-align: center;
  font-size: 44px;
}

.value-title {
  font-size: 44px;
  line-height: 48px;
}

.value-title em{
  color: #d7b15e;
}

.value:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 0;
  width: 50%;
  height: 1px;
  background: #d7b15e;
  opacity: 0;
}

.value:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 0;
  width: 50%;
  height: 1px;
  background: #d7b15e;
  opacity: 0;
}

.value > span {
  position: relative;
  z-index: 3;
  width: 54px;
  height: 54px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7b15e;
  border-radius: 50%;
  background: #fff;
  color: #233154;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 0 0 8px #fff;
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.value h3 {
  margin: 0 0 12px;
  color: #233154;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  transition: color 0.35s ease;
}

.value p {
  max-width: 190px;
  margin: 0 auto;
  color: #687080;
  font-size: 13px;
  line-height: 1.75;
  transition: color 0.35s ease;
}

.value:hover > span {
  color: #233154;
  background: #d7b15e;
  transform: scale(1.08);
  box-shadow: 0 0 0 8px #fff;
}

.value:hover h3 {
  color: #233154;
}

.value:hover p {
  color: #4e5668;
}

@media (max-width: 1100px) {
  .values .section-head {
    margin-bottom: 60px;
  }

  .values-row {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
  }

  .value {
    padding: 0 14px;
  }

  .value > span {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
  }

  .value h3 {
    font-size: 18px;
  }

  .value p {
    font-size: 12px;
  }

  .values-row::before {
    left: 7%;
    right: 7%;
  }
}

@media (max-width: 991px) {
  .values-row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 55px;
  }

  .values-row::before {
    display: none;
  }

  .value {
    padding: 0 20px;
  }

  .value > span {
    margin-bottom: 22px;
  }

  .value:nth-child(1)::after,
  .value:nth-child(2)::after,
  .value:nth-child(4)::after {
    content: "";
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 1px;
    background: #d7b15e;
    opacity: 0.7;
  }

  .value:nth-child(3)::after {
    display: none;
  }

  .value:nth-child(4)::before,
  .value:nth-child(5)::before {
    content: "";
    position: absolute;
    top: -55px;
    left: 50%;
    width: 1px;
    height: 55px;
    background: #d7b15e;
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  .values .section-head {
    margin-bottom: 45px;
  }

  .values-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .values-row::before {
    display: block;
    top: 27px;
    bottom: 27px;
    left: 27px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .value {
    position: relative;
    width: 100%;
    min-height: 125px;
    padding: 0 0 35px 75px;
    text-align: left;
  }

  .value:last-child {
    min-height: auto;
    padding-bottom: 0;
  }

  .value > span {
    position: absolute;
    top: 0;
    left: 0;
    width: 54px;
    height: 54px;
    margin: 0;
    box-shadow: 0 0 0 7px #fff;
  }

  .value h3 {
    margin: 2px 0 8px;
    font-size: 18px;
  }

  .value p {
    max-width: 360px;
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
  }

  .value:not(:first-child)::before,
  .value:not(:last-child)::after,
  .value:nth-child(1)::after,
  .value:nth-child(2)::after,
  .value:nth-child(4)::after,
  .value:nth-child(4)::before,
  .value:nth-child(5)::before {
    display: none;
  }

  .value::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 27px;
    width: 1px;
    height: 35px;
    background: #d7b15e;
    opacity: 0.7;
    display: block;
  }

  .value:first-child::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .value {
    min-height: 120px;
    padding-left: 68px;
    padding-bottom: 30px;
  }

  .value > span {
    width: 50px;
    height: 50px;
  }

  .values-row::before {
    top: 25px;
    left: 25px;
  }

  .value::before {
    left: 25px;
    top: -30px;
    height: 30px;
  }

  .value h3 {
    font-size: 17px;
  }

  .value p {
    font-size: 12px;
  }
}

/* Gallery Section */
.gallery {
  position: relative;
  overflow: hidden;
  background: #17223E;
}

.gallery-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(380px, 0.85fr);

  gap: 90px;

  align-items: center;
}

.gallery-visual {
  position: relative;
  height: 600px;
  min-width: 0;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.gallery-visual::before,
.gallery-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
  height: 90px;
  pointer-events: none;
}

.gallery-visual::before {
  top: 0;
  background: linear-gradient(to bottom, #233154, rgba(35, 49, 84, 0));
}

.gallery-visual::after {
  bottom: 0;
  background: linear-gradient(to top, #233154, rgba(35, 49, 84, 0));
}

.gallery-columns {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;

  width: 100%;
  height: 100%;
}

.gallery-column {
  position: relative;

  height: 100%;

  overflow: hidden;
}

.gallery-column-track {
  display: flex;
  flex-direction: column;

  width: 100%;

  gap: 18px;

  will-change: transform;
}

.gallery-image {
  position: relative;

  display: block;

  width: 100%;
  height: 205px;

  flex: 0 0 205px;

  padding: 0;

  border: 0;

  border-radius: 14px;

  overflow: hidden;

  background: #101a31;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transform: translateZ(0);

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  user-select: none;

  -webkit-user-drag: none;

  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;
}

.gallery-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(35, 49, 84, 0.05),
    rgba(0, 0, 0, 0.2)
  );

  opacity: 0;

  transition: opacity 0.35s ease;

  pointer-events: none;
}

.gallery-image:hover {
  z-index: 2;

  transform: scale(1.025);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
}

.gallery-image:hover img {
  transform: scale(1.06);
}

.gallery-image:hover::after {
  opacity: 1;
}

/* Right Content */

.gallery-content {
  position: relative;
  max-width: 520px;
  padding-right: 20px;
}

.gallery-content .about-eyebrow {
  margin-bottom: 22px;
}

.gallery-content h2 {
  margin: 0 0 25px;
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -0.035em;
}

.gallery-content h2 em {
  display: block;
  color: #d7b15e;
  font-style: normal;
}

.gallery-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 100px;
  background-color: #d7b15e;
  font-size: 14px;
  color: #fff;
  box-shadow: 2px 2px 2px 2px rgba(23, 34, 62, 0.08);
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.gallery-contact-btn span {
  font-size: 14px;
  font-weight: 400;
}

.gallery-contact-btn:hover {
  background: #fff;
  color: #d7b15e;
  transform: translateY(-2px);
}

/* Popup */

.gallery-modal {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 40px;

  background: rgba(8, 13, 26, 0.94);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.gallery-modal.active {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

.gallery-modal-inner {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}

.gallery-modal img {
  display: block;

  max-width: 90vw;
  max-height: 88vh;

  width: auto;
  height: auto;

  object-fit: contain;

  border-radius: 8px;

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);

  transform: scale(0.94);

  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-modal.active img {
  transform: scale(1);
}

.gallery-modal-close {
  position: absolute;

  top: 25px;
  right: 30px;

  z-index: 5;

  display: grid;

  width: 48px;
  height: 48px;

  place-items: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  font-size: 30px;

  font-weight: 300;

  line-height: 1;

  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.gallery-modal-close:hover {
  border-color: #d7b15e;

  background: rgba(215, 177, 94, 0.15);

  transform: rotate(90deg);
}

/* Tablet */

@media (max-width: 1100px) {
  .gallery-layout {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(330px, 0.8fr);

    gap: 55px;
  }

  .gallery-visual {
    height: 540px;
  }

  .gallery-image {
    height: 180px;

    flex-basis: 180px;
  }

  .gallery-columns {
    gap: 14px;
  }

  .gallery-column-track {
    gap: 14px;
  }

  .gallery-content h2 {
    font-size: 44px;
  }
}

/* Tablet */

@media (max-width: 991px) {
  .gallery-layout {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .gallery-visual {
    height: 520px;

    order: 2;
  }

  .gallery-content {
    max-width: 700px;

    padding-right: 0;

    order: 1;
  }

  .gallery-content h2 {
    font-size: 44px;
  }

  .gallery-content > p:not(.about-eyebrow) {
    max-width: 650px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .gallery-layout {
    gap: 35px;
  }

  .gallery-content h2 {
    font-size: 36px;

    line-height: 1.1;
  }

  .gallery-content > p:not(.about-eyebrow) {
    font-size: 14px;

    line-height: 1.75;
  }

  .gallery-contact-btn {
    margin-top: 26px;
  }

  .gallery-visual {
    height: 430px;
  }

  .gallery-columns {
    gap: 10px;
  }

  .gallery-column-track {
    gap: 10px;
  }

  .gallery-image {
    height: 150px;

    flex-basis: 150px;

    border-radius: 10px;
  }

  .gallery-visual::before,
  .gallery-visual::after {
    height: 65px;
  }

  .gallery-modal {
    padding: 20px;
  }

  .gallery-modal img {
    max-width: 94vw;
    max-height: 82vh;
  }

  .gallery-modal-close {
    top: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .gallery-content h2 {
    font-size: 31px;
  }

  .gallery-visual {
    height: 390px;
  }

  .gallery-image {
    height: 135px;

    flex-basis: 135px;
  }
}

/* Testimonials Section */
.testimonials {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.testimonials .container {
  position: relative;
  padding: 0px 40px;
  width: 100%;
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials .section-head {
  position: relative;
  z-index: 20;
  margin-bottom: 10px;
}

.testimonials .section-head h2 {
  font-size: 44px;
  line-height: 48px;
  color: #233154;
}

.testimonials .section-head h2 em {
  color: #d7b15e;
}

.testimonial-depth {
  position: relative;
  width: 100%;
  height: 450px;
  min-height: 450px;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  user-select: none;
  touch-action: pan-y;
  outline: none;
}

.testimonial-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.testimonial-depth-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 620px;
  height: 360px;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%) translateZ(0);
  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  pointer-events: none;
  opacity: 0;
}

.testimonial-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 55px 60px;
  overflow: hidden;

  border: 1px solid rgba(35, 49, 84, 0.12);

  border-radius: 28px;

  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 50%, #f5f6f9 100%);

  box-shadow:
    0 35px 80px rgba(18, 27, 50, 0.16),
    0 12px 30px rgba(18, 27, 50, 0.08);

  transform-style: preserve-3d;
}

.testimonial-card-inner::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -150px;
  right: -100px;

  border-radius: 50%;

  background: rgba(215, 177, 94, 0.13);

  filter: blur(60px);

  pointer-events: none;
}

.testimonial-card-inner::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0) 45%,
    rgba(35, 49, 84, 0.025) 100%
  );

  pointer-events: none;
}

.testimonial-depth-card .quote-mark {
  position: absolute;
  top: 22px;
  right: 40px;
  z-index: 2;

  color: #d7b15e;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 90px;
  line-height: 1;

  opacity: 0.45;

  pointer-events: none;
}

.testimonial-depth-card p {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 500px;

  margin: 25px 0 52px;

  color: #233154;

  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;

  letter-spacing: -0.01em;
}

.testimonial-depth-card .person {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;

  gap: 18px;
}

.testimonial-depth-card .person > span {
  display: grid;

  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  place-items: center;

  border: 1px solid rgba(215, 177, 94, 0.7);

  border-radius: 50%;

  color: #d7b15e;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.testimonial-depth-card .person strong {
  display: block;

  margin: 0 0 5px;

  color: #233154;

  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.testimonial-depth-card .person small {
  display: block;

  color: #7c8494;

  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.testimonial-depth-controls {
  position: absolute;
  inset: 0;

  z-index: 5000;

  width: 100%;
  height: 100%;

  pointer-events: none;
}

.testimonial-nav {
  position: absolute;

  top: 50%;

  display: grid;

  width: 52px;
  height: 52px;

  padding: 0;

  place-items: center;

  border: 1px solid rgba(35, 49, 84, 0.18);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.94);

  color: #233154;

  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;

  cursor: pointer;

  pointer-events: auto;

  transform: translateY(-50%);

  box-shadow: 0 12px 30px rgba(35, 49, 84, 0.12);

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.testimonial-nav span {
  display: block;
  line-height: 1;
  transition: transform 0.25s ease;
}

.testimonial-nav:hover {
  border-color: #233154;
  background: #233154;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(35, 49, 84, 0.2);
}

.testimonial-prev:hover span {
  transform: translateX(-3px);
}

.testimonial-next:hover span {
  transform: translateX(3px);
}

.testimonial-nav:active {
  transform: translateY(-50%) scale(0.9);
}

.testimonial-nav:focus-visible {
  outline: 2px solid #d7b15e;
  outline-offset: 4px;
}

@media (max-width: 1200px) {
  .testimonial-depth {
    height: 550px;
    min-height: 550px;
  }

  .testimonial-depth-card {
    width: 580px;
    height: 350px;
  }

  .testimonial-card-inner {
    padding: 50px 55px;
  }
}

@media (max-width: 991px) {
  .testimonial-depth {
    height: 530px;
    min-height: 530px;

    perspective: 1200px;
  }

  .testimonial-depth-card {
    width: 540px;
    height: 340px;
  }

  .testimonial-card-inner {
    padding: 45px 48px;
    border-radius: 25px;
  }

  .testimonial-depth-card p {
    max-width: 450px;

    margin-top: 22px;
    margin-bottom: 45px;

    font-size: 17px;
    line-height: 1.7;
  }

  .testimonial-depth-card .quote-mark {
    right: 32px;
    font-size: 75px;
  }

  .testimonial-nav {
    width: 48px;
    height: 48px;
  }

  .testimonial-prev {
    left: 4px;
  }

  .testimonial-next {
    right: 4px;
  }
}

@media (max-width: 767px) {
  .testimonials .section-head {
    margin-bottom: 10px;
  }

  .testimonial-depth {
    height: 500px;
    min-height: 500px;

    perspective: 1000px;
  }

  .testimonial-depth-card {
    width: min(82vw, 470px);
    height: 330px;
  }

  .testimonial-card-inner {
    padding: 40px 32px;

    border-radius: 22px;
  }

  .testimonial-depth-card p {
    max-width: 100%;

    margin-top: 20px;
    margin-bottom: 38px;

    font-size: 15px;
    line-height: 1.7;
  }

  .testimonial-depth-card .quote-mark {
    top: 18px;
    right: 24px;

    font-size: 65px;
  }

  .testimonial-depth-card .person {
    gap: 14px;
  }

  .testimonial-depth-card .person > span {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .testimonial-depth-card .person strong {
    font-size: 14px;
  }

  .testimonial-depth-card .person small {
    font-size: 11px;
  }

  .testimonial-nav {
    width: 44px;
    height: 44px;

    font-size: 17px;
  }

  .testimonial-prev {
    left: 2px;
  }

  .testimonial-next {
    right: 2px;
  }
}

@media (max-width: 480px) {
  .testimonial-depth {
    height: 470px;
    min-height: 470px;

    perspective: 900px;
  }

  .testimonial-depth-card {
    width: 82vw;
    height: 310px;
  }

  .testimonial-card-inner {
    padding: 30px 24px;

    border-radius: 20px;
  }

  .testimonial-depth-card p {
    margin-top: 18px;
    margin-bottom: 32px;

    font-size: 14px;
    line-height: 1.65;
  }

  .testimonial-depth-card .quote-mark {
    top: 15px;
    right: 20px;

    font-size: 58px;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;

    font-size: 15px;
  }

  .testimonial-prev {
    left: 0;
  }

  .testimonial-next {
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-depth-card {
    transition: none !important;
  }
}

/* Contact Section */
.contact {
  position: relative;
  overflow: hidden;
  background: #17223e;
}

.contact::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  right: -180px;
  border-radius: 50%;
  background: rgba(215, 177, 94, 0.08);
  filter: blur(100px);
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  bottom: -250px;
  left: -180px;
  border-radius: 50%;
  background: rgba(35, 49, 84, 0.5);
  filter: blur(90px);
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(420px, 1.1fr);
  gap: 100px;
  align-items: center;
}

.contact-intro {
  max-width: 560px;
}

.contact-intro .eyebrow {
  margin-bottom: 24px;
  color: #fff;
  width: fit-content;
}

.contact-intro h2 {
  max-width: 560px;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -0.035em;
}

.contact-intro em {
  color: #d7b15e;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.8;
}

.contact-links {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-links a {
  position: relative;
  display: grid;
  grid-template-columns: 65px 1fr 25px;
  align-items: center;
  gap: 15px;
  min-height: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  transition:
    color 0.3s ease,
    padding 0.3s ease;
}

.contact-links a span {
  color: #d7b15e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links a b {
  color: #d7b15e;
  font-size: 17px;
  font-weight: 400;
  text-align: right;
  transition: transform 0.3s ease;
}

.contact-links a:hover {
  padding-left: 8px;
  color: #ffffff;
}

.contact-links a:hover b {
  transform: translate(3px, -3px);
}

.contact-form {
  position: relative;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 46px;
  right: 46px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(215, 177, 94, 0.7),
    transparent
  );
}

.contact-form label {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 9px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  outline: none;
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition:
    border-color 0.3s ease,
    padding 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.contact-form input:focus,
.contact-form textarea:focus {
  padding-left: 5px;
  border-bottom-color: #d7b15e;
}

.contact-form textarea {
  min-height: 105px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form textarea::-webkit-scrollbar {
  width: 4px;
}

.contact-form textarea::-webkit-scrollbar-thumb {
  background: rgba(215, 177, 94, 0.5);
  border-radius: 10px;
}

.contact-form .btn {
  margin-top: 8px;
}

.contact-form .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 27px;
  border: 1px solid #d7b15e;
  border-radius: 100px;
  background: #d7b15e;
  color: #17223e;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form .btn-gold span {
  font-size: 17px;
  font-weight: 400;
}

.contact-form .btn-gold:hover {
  background: transparent;
  color: #d7b15e;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(215, 177, 94, 0.12);
}

.contact-form .form-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns:
      minmax(0, 0.85fr)
      minmax(380px, 1.15fr);
    gap: 60px;
  }

  .contact-form {
    padding: 38px;
  }

  .contact-form::before {
    left: 38px;
    right: 38px;
  }
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-intro {
    max-width: 700px;
  }

  .contact-intro h2 {
    max-width: 650px;
    font-size: 44px;
  }

  .contact-intro > p:not(.eyebrow) {
    max-width: 620px;
  }

  .contact-links {
    max-width: 650px;
  }

  .contact-form {
    max-width: 720px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-grid {
    gap: 42px;
  }

  .contact-intro h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .contact-intro > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-links {
    margin-top: 34px;
  }

  .contact-links a {
    grid-template-columns: 50px 1fr 20px;
    gap: 10px;
    min-height: 57px;
    font-size: 13px;
  }

  .contact-form {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .contact-form::before {
    left: 24px;
    right: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-form .btn-gold {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-intro h2 {
    font-size: 31px;
  }

  .contact-links a {
    grid-template-columns: 45px 1fr 18px;
    font-size: 12px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .contact-form::before {
    left: 20px;
    right: 20px;
  }
}

/* Footer Section */
footer {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #101a31;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(215, 177, 94, 0.55),
    transparent
  );
}

.footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    1.4fr
    0.7fr
    1.25fr
    1fr;
  gap: 60px;
  padding-top: 75px;
  padding-bottom: 65px;
}

.footer-brand {
  max-width: 330px;
}

.footer-brand img {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
  margin-bottom: 25px;
}

.footer-brand p {
  margin: 0;
  color: #101a31;
  font-size: 14px;
  line-height: 20px;
}

.footer-top h4 {
  margin: 4px 0 22px;
  color: #d7b15e;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  display: inline-block;
  margin-bottom: 12px;
  color: #101a31;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover {
  color: #d7b15e;
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact > a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;

  color: #101a31;

  font-size: 14px;
  line-height: 20px;

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-contact > a:hover {
  color: #101a31;
  transform: translateX(3px);
}

.footer-contact-icon {
  display: grid;

  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border: 1px solid rgba(215, 177, 94, 0.28);
  border-radius: 50%;
  color: #d7b15e;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.footer-contact a:hover .footer-contact-icon {
  border-color: #d7b15e;
  background: rgba(215, 177, 94, 0.1);
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 2px;
}

.footer-address .footer-contact-icon {
  flex: 0 0 31px;
}

.footer-address p {
  margin: 5px 0 0;

  color: #101a31;

  font-size: 14px;
  line-height: 20px;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    1fr
    auto
    1fr;
  align-items: center;
  min-height: 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #101a31;
  font-size: 14px;
}

.footer-copyright {
  justify-self: start;
}

.footer-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  color: #101a31;

  font-size: 12px;
  letter-spacing: 0.04em;

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-top-link span {
  color: #d7b15e;
  font-size: 15px;

  transition: transform 0.25s ease;
}

.footer-top-link:hover {
  color: #101a31;
}

.footer-top-link:hover span {
  transform: translateY(-3px);
}

.footer-developer {
  justify-self: end;
  color: #101a31;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
}

.footer-developer a {
  margin-left: 4px;
  color: #d7b15e;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-developer a:hover {
  color: #101a31;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns:
      1.2fr
      0.7fr
      1fr;

    gap: 45px;
  }

  .footer-brand {
    grid-row: span 2;
  }

  .footer-contact {
    grid-column: 3;
  }
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns:
      1fr
      1fr;

    gap: 45px 55px;

    padding-top: 60px;
    padding-bottom: 55px;
  }

  .footer-brand {
    grid-row: auto;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: 1fr;

    gap: 38px;

    padding-top: 50px;
    padding-bottom: 45px;
  }

  .footer-brand {
    max-width: 420px;
  }

  .footer-brand img {
    width: 135px;
    margin-bottom: 20px;
  }

  .footer-top h4 {
    margin-bottom: 17px;
  }

  .footer-links a {
    margin-bottom: 10px;
  }

  .footer-contact > a {
    margin-bottom: 13px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;

    justify-items: center;

    gap: 14px;

    padding-top: 22px;
    padding-bottom: 25px;

    text-align: center;
  }

  .footer-copyright,
  .footer-developer {
    justify-self: center;
  }

  .footer-top-link {
    order: -1;
  }
}

@media (max-width: 480px) {
  .footer-brand p {
    font-size: 12px;
  }

  .footer-links a,
  .footer-contact > a {
    font-size: 12px;
  }

  .footer-address p {
    font-size: 11px;
  }

  .footer-bottom {
    font-size: 10px;
  }

  .footer-developer {
    font-size: 9px;
  }
}


/* WhatsApp Chat-btn*/
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  z-index: 9999;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.08);
  text-decoration: none;
}

.whatsapp-left {
  right: 25px;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 30px;
    bottom: 18px;
  }

  .whatsapp-left {
    right: 18px;
  }
}

.ultra-services-item,
.ultra-who-item,
.ultra-counter-item,
.ultra-testimonial-item,
.interior-about__image,
.interior-about__content,
.ultra-contact-glass-box,
.ultra-footer-widget {
  will-change: transform, opacity;
}

.ultra-who-image,
.ultra-image-reveal {
  overflow: hidden;
  will-change: transform, opacity;
}

.ultra-form-error {
  display: block;
  margin-top: 0px;
  color: #ffb4b4;
  font-size: 12px;
  line-height: 16px;
}

.ultra-field-error {
  border-color: #ff8d8d !important;
}

@media (prefers-reduced-motion: reduce) {
  .ultra-services-item,
  .ultra-who-item,
  .ultra-counter-item,
  .ultra-testimonial-item,
  .interior-about__image,
  .interior-about__content,
  .ultra-contact-glass-box,
  .ultra-footer-widget,
  .ultra-who-image,
  .ultra-image-reveal {
    will-change: auto;
  }
}
