@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/poppins-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/poppins-medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/poppins-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/poppins-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
:root {
  --font-heading: Poppins, sans-serif;
  --font-body: Poppins, sans-serif;
  --color-primary: #b79164;
  --color-primary-dark: #92704c;
  --color-primary-light: #d1b18b;
  --color-secondary: #1b252a;
  --color-secondary-dark: #0f181c;
  --color-secondary-light: #303b40;
  --color-accent: #c19a6b;
  --color-white: #ffffff;
  --color-black: #0a0f12;
  --color-ivory: #f7f4ef;
  --color-cream: #eee8df;
  --color-warm-grey: #d8d0c6;
  --color-text: #23282a;
  --color-text-muted: #707574;
  --color-text-light: #f5f2ec;
  --color-text-light-muted: rgba(255, 255, 255, 0.66);
  --color-border: #d8d1c8;
  --color-border-soft: #e8e2da;
  --color-border-dark: rgba(255, 255, 255, 0.14);
  --background-body: #f7f4ef;
  --background-light: #faf8f4;
  --background-soft: #eee9e2;
  --background-dark: #111b20;
  --background-dark-alt: #1a252a;
  --background-card: #ffffff;
  --background-card-dark: #202c31;
  --container-max-width: 1320px;
  --section-spacing: clamp(5rem, 8vw, 8.5rem);
  --section-spacing-small: clamp(3.5rem, 6vw, 6rem);
  --border-radius-sm: 3px;
  --border-radius-md: 6px;
  --border-radius-lg: 12px;
  --border-radius-pill: 999px;
  --transition-speed: 300ms;
  --transition-easing: ease;
  --shadow-sm: 0 8px 24px rgba(15, 24, 28, 0.07);
  --shadow-md: 0 18px 44px rgba(15, 24, 28, 0.12);
  --shadow-lg: 0 28px 70px rgba(8, 14, 17, 0.18);
  --bs-primary: #b79164;
  --bs-primary-rgb: 183, 145, 100;
  --bs-secondary: #1b252a;
  --bs-secondary-rgb: 27, 37, 42;
  --bs-dark: #111b20;
  --bs-dark-rgb: 17, 27, 32;
  --bs-light: #faf8f4;
  --bs-light-rgb: 250, 248, 244;
  --bs-body-bg: #f7f4ef;
  --bs-body-color: #23282a;
  --bs-border-color: #d8d1c8;
  --bs-link-color: #92704c;
  --bs-link-hover-color: #b79164;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  background-color: var(--background-body);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  flex-grow: 1;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

h4 {
  font-size: 1.35rem;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: 1rem;
}

p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-easing), opacity var(--transition-speed) var(--transition-easing);
}

a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 3px;
}

.section {
  padding: var(--section-spacing) 0;
}

.section-sm {
  padding: var(--section-spacing-small) 0;
}

.section-light {
  background-color: var(--background-light);
  color: var(--color-text);
}

.section-ivory {
  background-color: var(--color-ivory);
  color: var(--color-text);
}

.section-soft {
  background-color: var(--background-soft);
  color: var(--color-text);
}

.section-dark {
  background-color: var(--background-dark);
  color: var(--color-text-light);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-text-light) !important;
}
.section-dark p,
.section-dark .text-muted,
.section-dark .text-muted-custom {
  color: var(--color-text-light-muted) !important;
}

.section-dark-alt {
  background-color: var(--background-dark-alt);
  color: var(--color-text-light);
}
.section-dark-alt h1,
.section-dark-alt h2,
.section-dark-alt h3,
.section-dark-alt h4,
.section-dark-alt h5,
.section-dark-alt h6 {
  color: var(--color-text-light) !important;
}
.section-dark-alt p,
.section-dark-alt .text-muted,
.section-dark-alt .text-muted-custom {
  color: var(--color-text-light-muted) !important;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.page-hero {
  padding: 10rem 0 6rem 0;
  background-color: var(--background-dark);
  background-image: radial-gradient(circle at 10% 20%, rgba(183, 145, 100, 0.08) 0%, rgba(15, 24, 28, 0.98) 90%);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-dark);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(183, 145, 100, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}
.page-hero .hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.page-hero .lead {
  font-size: 1.2rem;
  color: var(--color-text-light-muted);
  margin-bottom: 0;
}

.page-header {
  position: relative;
  min-height: 600px;
  background-image: url("../images/pages/page-header-background.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 12rem 0 8rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-dark);
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(10, 15, 18, 0.95) 0%, rgba(10, 15, 18, 0.8) 45%, rgba(10, 15, 18, 0.3) 75%, rgba(10, 15, 18, 0.1) 100%);
  z-index: 1;
}
@media (max-width: 991.98px) {
  .page-header {
    min-height: auto;
    padding: 10rem 0 6rem 0;
  }
  .page-header::before {
    background: rgba(10, 15, 18, 0.85);
  }
}
.page-header .container-custom {
  position: relative;
  z-index: 2;
  padding-left: 5%;
  padding-right: 5%;
}
.page-header .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-primary);
}
.page-header .header-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}
.page-header .header-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-light-muted);
  max-width: 520px;
}
.page-header .header-cta-btn {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
  transition: all var(--transition-speed) var(--transition-easing);
}
.page-header .header-cta-btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.home-hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  z-index: 1;
}
.home-hero > * {
  position: relative;
  z-index: 3;
}
.home-hero::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/home/hero/hero-background.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
.home-hero::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(15, 24, 28, 0.85) 0%, rgba(15, 24, 28, 0.7) 35%, rgba(15, 24, 28, 0) 60%, rgba(15, 24, 28, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.home-hero .hero-spacer {
  height: 120px;
}
.home-hero .eyebrow {
  color: var(--color-primary) !important;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}
.home-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.home-hero .lead {
  max-width: 550px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.home-hero .hero-content-left {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.home-hero .btn-rect {
  border-radius: 0px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  padding: 0.9rem 2.2rem !important;
  min-height: 52px !important;
}
.home-hero .hero-inset-frame {
  position: relative;
  width: 100%;
  max-width: 250px;
  margin-left: auto;
  margin-right: 80px;
  margin-top: 250px;
  z-index: 2;
}
.home-hero .hero-inset-frame img {
  border: 8px solid #ffffff;
  box-shadow: var(--shadow-lg);
  border-radius: 0;
  transition: transform var(--transition-speed) var(--transition-easing);
  width: 100%;
  height: auto;
}
.home-hero .hero-inset-frame img:hover {
  transform: scale(1.03);
}
.home-hero .hero-inset-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  z-index: -1;
  pointer-events: none;
}
.home-hero .hero-features-bar {
  position: relative;
  z-index: 3;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: none;
  padding: 4rem 0 0;
}
.home-hero .hero-features-bar .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  margin-top: 3px;
}
.home-hero .hero-features-bar .feature-icon svg {
  color: var(--color-primary) !important;
}
.home-hero .hero-features-bar h3 {
  font-size: 0.85rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 600;
  color: var(--color-text-light) !important;
}
.home-hero .hero-features-bar p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-text-light-muted) !important;
  margin-bottom: 0;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero::before {
    animation: none;
    transform: none;
  }
}
@media (max-width: 991.98px) {
  .home-hero {
    height: auto;
    min-height: auto;
    padding-top: 6rem;
    background-image: none;
  }
  .home-hero::after {
    background-image: linear-gradient(to bottom, rgba(15, 24, 28, 0.96) 0%, rgba(15, 24, 28, 0.85) 60%, rgba(15, 24, 28, 0.65) 100%);
  }
  .home-hero .hero-content-left {
    padding-top: 3rem;
    padding-bottom: 4rem;
    text-align: center;
  }
  .home-hero .hero-content-left .d-flex {
    justify-content: center;
  }
  .home-hero .hero-features-bar {
    padding: 1.5rem 0;
    text-align: center;
  }
  .home-hero .hero-features-bar .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .home-hero .hero-features-bar .d-flex .feature-icon {
    margin-bottom: 0.75rem;
    margin-right: 0 !important;
  }
}
.btn,
.btn-custom {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  min-height: 48px;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  transition: all var(--transition-speed) var(--transition-easing);
}
.btn:hover,
.btn-custom:hover {
  transform: translateY(-2px);
}
.btn:focus,
.btn-custom:focus {
  box-shadow: 0 0 0 3px rgba(183, 145, 100, 0.2);
}

.btn-primary,
.btn-custom-primary {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-white) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
  color: var(--color-white) !important;
  box-shadow: var(--shadow-sm) !important;
}

.btn-dark {
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
}
.btn-dark:hover, .btn-dark:focus, .btn-dark:active {
  background-color: var(--color-secondary-dark) !important;
  border-color: var(--color-secondary-dark) !important;
  color: var(--color-white) !important;
  box-shadow: var(--shadow-sm) !important;
}

.btn-outline-dark,
.btn-custom-secondary {
  background-color: transparent !important;
  border-color: var(--color-secondary) !important;
  color: var(--color-secondary) !important;
}
.btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:active,
.btn-custom-secondary:hover,
.btn-custom-secondary:focus,
.btn-custom-secondary:active {
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
  box-shadow: var(--shadow-sm) !important;
}

.btn-outline-light {
  background-color: transparent !important;
  border-color: var(--color-text-light) !important;
  color: var(--color-text-light) !important;
}
.btn-outline-light:hover, .btn-outline-light:focus, .btn-outline-light:active {
  background-color: var(--color-text-light) !important;
  border-color: var(--color-text-light) !important;
  color: var(--color-secondary) !important;
  box-shadow: var(--shadow-sm) !important;
}

.btn-custom-accent {
  background-color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: var(--color-white) !important;
}
.btn-custom-accent:hover, .btn-custom-accent:focus, .btn-custom-accent:active {
  background-color: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
  color: var(--color-white) !important;
}

.card,
.card-custom {
  background-color: var(--background-card);
  border: 1px solid var(--color-border-soft);
  padding: 2.25rem;
  transition: all var(--transition-speed) var(--transition-easing);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}
.card .member-icon,
.card-custom .member-icon {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  margin: 0 auto;
}
.card .card-icon,
.card-custom .card-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.card h3,
.card-custom h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}
.card p,
.card-custom p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.card .card-link,
.card-custom .card-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.card .card-link i,
.card-custom .card-link i {
  transition: transform 0.2s ease;
}
.card .card-link:hover i,
.card-custom .card-link:hover i {
  transform: translateX(3px);
}

.card-hover:hover,
.card-custom:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-border);
}

.card-dark {
  background-color: var(--background-card-dark);
  border-color: var(--color-border-dark);
  color: var(--color-text-light);
}
.card-dark h1,
.card-dark h2,
.card-dark h3,
.card-dark h4,
.card-dark h5,
.card-dark h6 {
  color: var(--color-text-light) !important;
}
.card-dark p {
  color: var(--color-text-light-muted) !important;
}
.card-dark .card-link {
  color: var(--color-accent) !important;
}

.form-label,
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-text);
  transition: all var(--transition-speed) var(--transition-easing);
}
.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(183, 145, 100, 0.15);
}

textarea.form-control {
  min-height: 140px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  will-change: transform, padding, background-color;
  transition: transform 0.75s ease-in-out, background-color 0.75s ease-in-out, padding 0.75s ease-in-out, border-color 0.75s ease-in-out, box-shadow 0.75s ease-in-out;
  padding: 1.5rem 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.header-hidden {
  transform: translateY(-110%);
  box-shadow: none;
}
.site-header.scrolled, .site-header.menu-open {
  padding: 1rem 0;
  background-color: rgba(15, 24, 28, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.site-header .navbar {
  padding: 0;
}
.site-header .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-light) !important;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-header .navbar-brand .brand-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: inline-block;
}
.site-header .header-btn {
  min-height: auto !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.05em;
  border-radius: 0px !important;
}
.site-header .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-light-muted) !important;
  padding: 0.5rem 1.25rem !important;
  position: relative;
  border-radius: 0.25rem;
  transition: all var(--transition-speed) var(--transition-easing);
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background-color: var(--color-primary-light);
  transform: scaleX(0);
  transition: all var(--transition-speed) var(--transition-easing);
}
.site-header .nav-link:hover {
  color: var(--color-primary-light) !important;
}
.site-header .nav-link:hover::after {
  transform: scaleX(1);
}
.site-header .nav-link.active {
  color: var(--color-primary-light) !important;
  font-weight: 600;
}
.site-header .nav-link.active::after {
  transform: scaleX(1);
}
.site-header .navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: var(--color-text-light);
}
.site-header .navbar-toggler:focus {
  box-shadow: none;
}

.site-footer {
  background-color: var(--background-dark);
  color: var(--color-text-light-muted);
  padding: 5rem 0 3rem 0;
  font-size: 0.95rem;
  border-top: 1px solid var(--color-border-dark);
}
.site-footer h5 {
  color: var(--color-text-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}
.site-footer .footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer .footer-brand .brand-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: 0.75rem;
}
.site-footer .footer-links li a {
  color: var(--color-text-light-muted);
  transition: all var(--transition-speed) var(--transition-easing);
}
.site-footer .footer-links li a:hover {
  color: var(--color-primary-light);
  padding-left: 4px;
}
.site-footer .social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--color-text-light-muted);
  transition: all var(--transition-speed) var(--transition-easing);
}
.site-footer .social-links a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}
.site-footer .footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-dark);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.text-accent {
  color: var(--color-accent) !important;
}

.bg-accent {
  background-color: var(--color-accent) !important;
}

.border-accent {
  border-color: var(--color-accent) !important;
}

.eyebrow,
.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  display: inline-block;
  margin-bottom: 0.75rem;
}

[data-animate=fade-up],
[data-animate=slide-left],
[data-animate=slide-right],
[data-animate=stagger-cards] > * {
  opacity: 0;
}

.what-we-do-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
}
.what-we-do-section .what-we-do-divider {
  width: 1px;
  height: 90px;
  background-color: rgba(183, 145, 100, 0.4);
}
.what-we-do-section p.text-muted-custom {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted) !important;
}
.what-we-do-section .wwd-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: all var(--transition-speed) var(--transition-easing);
}
.what-we-do-section .wwd-card .text-accent {
  color: var(--color-primary) !important;
}
.what-we-do-section .wwd-card p.small {
  line-height: 1.6;
  font-size: 0.85rem;
}
.what-we-do-section .wwd-card .wwd-image {
  overflow: hidden;
  position: relative;
}
.what-we-do-section .wwd-card .wwd-image img {
  transition: transform 0.6s var(--transition-easing);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.what-we-do-section .wwd-card .wwd-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.what-we-do-section .wwd-card .wwd-content .wwd-icon-bar svg {
  height: 50px;
  width: auto;
}
.what-we-do-section .wwd-card .wwd-num {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.what-we-do-section .wwd-card .wwd-arrow-line {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: auto;
}
.what-we-do-section .wwd-card .wwd-arrow-line span {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(183, 145, 100, 0.35);
  transition: background-color var(--transition-speed) var(--transition-easing);
}
.what-we-do-section .wwd-card .wwd-arrow-line i {
  color: var(--color-primary);
  font-size: 0.75rem;
  margin-left: -2px;
  transition: transform var(--transition-speed) var(--transition-easing);
}
.what-we-do-section .wwd-card:hover .wwd-image img {
  transform: scale(1.06);
}
.what-we-do-section .wwd-card:hover .wwd-arrow-line span {
  background-color: var(--color-primary);
}
.what-we-do-section .wwd-card:hover .wwd-arrow-line i {
  transform: translateX(4px);
}

.about-philosophies-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
}
.about-philosophies-section p.text-muted-custom {
  font-size: 1.025rem;
  line-height: 1.65;
  max-width: 580px;
  color: var(--color-text-muted) !important;
}
.about-philosophies-section .row.g-4.mb-5 {
  max-width: 600px;
}
.about-philosophies-section .value-icon svg {
  color: var(--color-primary) !important;
}
.about-philosophies-section h4 {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.about-philosophies-section .d-flex p.small {
  line-height: 1.5;
  font-size: 0.825rem;
}
.about-philosophies-section .btn-outline-dark {
  border-color: var(--color-border) !important;
  color: var(--color-primary) !important;
  font-size: 0.85rem;
}
.about-philosophies-section .container-custom-left {
  padding-left: 8%;
  padding-right: 3rem;
}
@media (max-width: 1199.98px) {
  .about-philosophies-section .container-custom-left {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.about-philosophies-section .photo-wrapper {
  position: relative;
  min-height: 500px;
}
.about-philosophies-section .photo-wrapper .img-full-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-philosophies-section .sketch-wrapper {
  position: absolute;
  left: -140px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 280px;
}
.about-philosophies-section .sketch-wrapper .sketch-frame {
  background-color: #ffffff;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border-radius: 0;
}
.about-philosophies-section .sketch-wrapper .sketch-frame .sketch-tape {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background-color: rgba(183, 145, 100, 0.45);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.about-philosophies-section .sketch-wrapper .sketch-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.about-philosophies-section .metrics-sidebar {
  background-color: #111b20;
}
@media (min-width: 992px) {
  .about-philosophies-section .metrics-sidebar {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 180px;
    flex-shrink: 0;
    z-index: 2;
    background-color: rgba(17, 27, 32, 0.4) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }
}
.about-philosophies-section .metrics-sidebar .metric-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.about-philosophies-section .metrics-sidebar .metric-item:last-child {
  border-bottom: none;
}
.about-philosophies-section .metrics-sidebar .metric-num {
  font-size: 2.25rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
}
.about-philosophies-section .metrics-sidebar .metric-label {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

@media (max-width: 991.98px) {
  .about-philosophies-section .row {
    flex-direction: column;
  }
  .about-philosophies-section .col-lg-6.d-flex.align-items-stretch {
    flex-direction: column;
  }
  .about-philosophies-section .col-lg-6.d-flex.align-items-stretch .photo-wrapper {
    min-height: 350px !important;
  }
  .about-philosophies-section .col-lg-6.d-flex.align-items-stretch .metrics-sidebar {
    width: 100% !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: space-around !important;
    padding: 2rem 1rem !important;
  }
  .about-philosophies-section .col-lg-6.d-flex.align-items-stretch .metrics-sidebar .metric-item {
    border-bottom: none;
    width: 50%;
  }
}
@media (max-width: 991.98px) and (min-width: 576px) {
  .about-philosophies-section .col-lg-6.d-flex.align-items-stretch .metrics-sidebar .metric-item {
    width: 25%;
  }
}
.home-services {
  background-color: #0b1114;
  color: var(--color-white);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-dark);
}
.home-services .services-nav-col {
  background-color: #070b0d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
}
.home-services .services-nav-col .border-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.05) !important;
}
.home-services .services-list-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.home-services .service-nav-item {
  display: flex;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-easing);
  position: relative;
}
.home-services .service-nav-item .service-item-num {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
  margin-right: 1.5rem;
  font-family: var(--font-heading);
  transition: color var(--transition-speed) var(--transition-easing);
}
.home-services .service-nav-item .service-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-heading);
  transition: color var(--transition-speed) var(--transition-easing);
}
.home-services .service-nav-item:hover {
  background-color: rgba(255, 255, 255, 0.02);
}
.home-services .service-nav-item:hover .service-item-title {
  color: var(--color-white);
}
.home-services .service-nav-item.active {
  background-color: rgba(183, 145, 100, 0.05);
  border-left: 3px solid var(--color-primary);
  padding-left: calc(2rem - 3px);
}
.home-services .service-nav-item.active .service-item-num {
  color: var(--color-primary);
  font-weight: 500;
}
.home-services .service-nav-item.active .service-item-title {
  color: var(--color-primary-light);
  font-weight: 600;
}
.home-services .service-nav-item.active::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 2px solid #070b0d;
  z-index: 10;
}
.home-services .services-image-panel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-color: #0b1114;
}
.home-services .services-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}
.home-services .services-image-panel img.active {
  opacity: 1;
  z-index: 2;
}
.home-services .services-details-panel {
  background-color: #0b1114;
  background-image: linear-gradient(rgba(11, 17, 20, 0.9), rgba(11, 17, 20, 0.9)), url("../images/home/services/text-background.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem;
  height: 100%;
  min-height: 600px;
}
.home-services .services-details-panel .details-content-wrapper {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
.home-services .services-details-panel .details-content-wrapper.fade-out {
  opacity: 0;
}
.home-services .services-details-panel .details-num {
  font-size: 5rem;
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}
.home-services .services-details-panel .details-line {
  height: 1px;
  background-color: var(--color-primary);
  width: 100%;
  margin-bottom: 2.5rem;
  opacity: 0.6;
}
.home-services .services-details-panel .details-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}
.home-services .services-details-panel .details-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}
.home-services .services-details-panel .details-btn {
  border: 1px solid var(--color-primary);
  color: var(--color-primary-light);
  background-color: transparent;
  padding: 0.8rem 2.2rem;
  border-radius: 0;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all var(--transition-speed) var(--transition-easing);
  width: fit-content;
}
.home-services .services-details-panel .details-btn i {
  transition: transform 0.2s ease;
}
.home-services .services-details-panel .details-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  transform: translateY(-2px);
}
.home-services .services-details-panel .details-btn:hover i {
  transform: translateX(4px);
}
.home-services .services-details-panel .details-deco-plus {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
  width: 150px;
}
.home-services .services-details-panel .details-deco-plus::before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: rgba(183, 145, 100, 0.2);
  margin-right: 15px;
}
.home-services .services-details-panel .details-deco-plus::after {
  content: "+";
  color: rgba(183, 145, 100, 0.4);
  font-family: var(--font-heading);
  font-size: 1.3rem;
}
.home-services .services-footer-label {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.home-services .services-footer-label svg {
  color: var(--color-primary);
}

@media (max-width: 991.98px) {
  .home-services .services-nav-col {
    min-height: auto;
  }
  .home-services .services-list-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .home-services .service-nav-item {
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1rem 1.5rem;
  }
  .home-services .service-nav-item.active {
    border-left: none;
    border-bottom: 2px solid var(--color-primary);
    padding-left: 1.5rem;
  }
  .home-services .service-nav-item.active::after {
    display: none;
  }
  .home-services .services-image-panel {
    min-height: 350px;
  }
  .home-services .services-details-panel {
    min-height: auto;
    padding: 3.5rem 2rem;
  }
  .home-services .services-footer-label {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .home-services .service-nav-item {
    width: 100%;
    border-right: none;
  }
}
.home-projects {
  background-color: #0a0f12;
  color: var(--color-white);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-dark);
}
.home-projects .project-text-col {
  background-color: #0a0f12;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-projects .project-text-col .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.home-projects .project-text-col h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.home-projects .project-text-col p.text-muted {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55) !important;
}
.home-projects .project-img-col {
  position: relative;
  overflow: hidden;
  min-height: 450px;
}
.home-projects .project-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s var(--transition-easing);
}
.home-projects .project-img-col:hover img {
  transform: scale(1.04);
}
.home-projects .project-info-card {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.home-projects .project-info-card .card-num {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.home-projects .project-info-card .card-line {
  height: 1px;
  background-color: var(--color-primary);
  width: 50px;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.home-projects .project-info-card .card-title {
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.home-projects .project-info-card .card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}
.home-projects .project-info-card .card-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-primary-light);
  text-transform: uppercase;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}
.home-projects .project-info-card .card-link i {
  transition: transform 0.2s ease;
}
.home-projects .project-info-card .card-link:hover {
  color: var(--color-white) !important;
}
.home-projects .project-info-card .card-link:hover i {
  transform: translateX(4px);
}
.home-projects .row-2-col {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.home-projects .row-2-col:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.home-projects .split-block {
  display: flex;
  height: 100%;
  min-height: 380px;
}
.home-projects .split-block .split-text {
  width: 50%;
  background-color: #070b0d;
  padding: 3.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.home-projects .split-block .split-text .project-info-card .card-title {
  font-size: 1.5rem;
}
.home-projects .split-block .split-text .project-info-card .card-desc {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.home-projects .split-block .split-text:hover {
  background-color: #0c1214;
}
.home-projects .split-block .split-img {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.home-projects .split-block .split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s var(--transition-easing);
}
.home-projects .split-block .split-img:hover img {
  transform: scale(1.05);
}
.home-projects .headline-btn {
  border: 1px solid var(--color-primary);
  color: var(--color-primary-light);
  background-color: transparent;
  padding: 0.8rem 2.2rem;
  border-radius: 0;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all var(--transition-speed) var(--transition-easing);
  width: fit-content;
  margin-top: 2rem;
}
.home-projects .headline-btn i {
  transition: transform 0.2s ease;
}
.home-projects .headline-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  transform: translateY(-2px);
}
.home-projects .headline-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .home-projects .project-text-col {
    padding: 4rem 2.5rem;
  }
  .home-projects .project-img-col {
    min-height: 300px;
  }
  .home-projects .project-info-card {
    padding: 3rem 2.5rem;
  }
  .home-projects .row-2-col {
    border-right: none !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .home-projects .split-block {
    min-height: 300px;
  }
}
@media (max-width: 767.98px) {
  .home-projects .split-block {
    flex-direction: column;
    min-height: auto;
  }
  .home-projects .split-block .split-text {
    width: 100%;
    order: 2 !important;
    padding: 3rem 2rem;
  }
  .home-projects .split-block .split-img {
    width: 100%;
    height: 250px;
    order: 1 !important;
  }
}
.home-steps {
  background-color: #0b1114;
  background-image: linear-gradient(to right, rgba(11, 17, 20, 0.95) 0%, rgba(11, 17, 20, 0.2) 40%, rgba(11, 17, 20, 0.3) 100%), url("../images/home/steps/steps-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-dark);
}
@media (max-width: 991.98px) {
  .home-steps {
    background-image: linear-gradient(rgba(11, 17, 20, 0.92), rgba(11, 17, 20, 0.92)), url("../images/home/steps/steps-background.webp");
  }
}
.home-steps .steps-header-banner {
  position: relative;
  padding: 6rem 4rem 1.5rem 4rem;
  background: transparent;
  border-bottom: none;
  min-height: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .home-steps .steps-header-banner .container-fluid {
    padding-left: 0;
  }
}
.home-steps .steps-header-banner .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  display: inline-block;
}
.home-steps .steps-header-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.home-steps .steps-header-banner p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
}
@media (max-width: 991.98px) {
  .home-steps .steps-header-banner {
    padding: 4rem 2rem 1rem 2rem;
    min-height: auto;
    background: transparent;
  }
}
.home-steps .steps-cards-container {
  padding: 1.5rem 4rem 1rem 4rem;
  background: transparent;
}
@media (max-width: 991.98px) {
  .home-steps .steps-cards-container .steps-cards-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.home-steps .steps-cards-container .col-lg-3 {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .home-steps .steps-cards-container {
    padding: 1rem 2rem 4rem 2rem;
    background: transparent;
  }
}
.home-steps .step-timeline-node {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.home-steps .step-timeline-node .node-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background-color: #0b1114;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 2;
  transition: all 0.3s var(--transition-easing);
}
.home-steps .step-timeline-node::after {
  content: "";
  position: absolute;
  left: 50%;
  right: -50%;
  top: 50%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}
.home-steps .step-card {
  background-color: #070b0d;
  border: 1px solid rgba(255, 255, 255, 0.4);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--transition-easing);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.home-steps .step-card .step-card-img {
  width: 100%;
  height: 170px;
  overflow: hidden;
  position: relative;
}
.home-steps .step-card .step-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition-easing);
}
.home-steps .step-card .step-card-body {
  padding: 1.5rem 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.home-steps .step-card .step-card-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  line-height: 1.4;
  min-height: 48px;
  position: relative;
  padding-bottom: 12px;
}
.home-steps .step-card .step-card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
}
.home-steps .step-card .step-card-desc {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}
.home-steps .step-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}
.home-steps .step-card:hover .step-card-img img {
  transform: scale(1.06);
}
.home-steps .col-lg-3:hover .node-circle {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  box-shadow: 0 0 10px rgba(183, 145, 100, 0.25);
}
.home-steps .col-lg-3:last-child .step-timeline-node::after {
  display: none !important;
}
.home-steps .steps-bottom-trustbar {
  background: transparent;
  border-top: none;
  padding: 0 4rem 6rem 4rem;
}
@media (max-width: 991.98px) {
  .home-steps .steps-bottom-trustbar {
    padding: 0 2rem 4rem 2rem;
  }
}
.home-steps .steps-bottom-trustbar .trustbar-wrapper {
  background-color: #070b0d;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 2.25rem 0.75rem;
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
@media (max-width: 991.98px) {
  .home-steps .steps-bottom-trustbar .trustbar-wrapper {
    padding: 2rem 1.5rem;
  }
}
.home-steps .steps-bottom-trustbar .trust-col {
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 992px) {
  .home-steps .steps-bottom-trustbar .trust-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
  }
}
@media (max-width: 991.98px) {
  .home-steps .steps-bottom-trustbar .trust-col {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 991.98px) {
  .home-steps .steps-bottom-trustbar .trust-col:nth-child(4) {
    border-bottom: none;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
  }
}
.home-steps .steps-bottom-trustbar .trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.home-steps .steps-bottom-trustbar .trust-item .trust-icon {
  color: var(--color-primary);
  font-size: 1.8rem;
  flex-shrink: 0;
}
.home-steps .steps-bottom-trustbar .trust-item .trust-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}
.home-steps .steps-bottom-trustbar .trust-item .trust-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0;
}
.home-steps .steps-bottom-trustbar .journey-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  background-color: transparent;
  padding: 0.85rem 1.8rem;
  border-radius: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all var(--transition-speed) var(--transition-easing);
  width: 100%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.home-steps .steps-bottom-trustbar .journey-btn i {
  transition: transform 0.2s ease;
}
.home-steps .steps-bottom-trustbar .journey-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-light) !important;
  transform: translateY(-2px);
}
.home-steps .steps-bottom-trustbar .journey-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .home-steps .step-timeline-node::after {
    display: none !important;
  }
  .home-steps .col-lg-3 {
    margin-bottom: 2rem;
  }
}
.our-advantages {
  position: relative;
}
.our-advantages .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  display: inline-block;
}
.our-advantages h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.our-advantages .advantage-row {
  margin: 0;
}
.our-advantages .advantage-left-panel {
  background-color: #0a0f12;
  background-image: linear-gradient(to right, #0a0f12 0%, #0a0f12 40%, rgba(10, 15, 18, 0.5) 75%, rgba(10, 15, 18, 0.15) 100%), url("../images/home/advantage/advantage-1.webp");
  background-size: cover;
  background-position: center right;
  color: var(--color-white);
  padding: 8rem 4rem 8rem 8%;
  position: relative;
}
.our-advantages .advantage-left-panel p.text-white-50 {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.55) !important;
}
.our-advantages .advantage-right-panel {
  background-color: #f4eee3;
  background-image: linear-gradient(to right, #f4eee3 0%, #f4eee3 45%, rgba(244, 238, 227, 0.3) 75%, rgba(244, 238, 227, 0) 100%), url("../images/home/advantage/advantage-2.webp");
  background-size: cover;
  background-position: center right;
  color: #1a1a1a;
  padding: 8rem 8% 8rem 4rem;
  position: relative;
}
.our-advantages .advantage-right-panel .eyebrow {
  color: var(--color-primary) !important;
}
.our-advantages .advantage-right-panel p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 480px;
  color: rgba(26, 26, 26, 0.65);
}
.our-advantages .advantage-header-wrapper {
  position: absolute;
  top: 3.5rem;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.our-advantages .advantage-header-wrapper .header-line {
  height: 1px;
  background-color: rgba(183, 145, 100, 0.4);
  width: 80px;
}
.our-advantages .advantage-header-wrapper .header-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-heading);
  margin: 0 1.5rem;
}
.our-advantages .advantage-divider-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0a0f12;
  border: 1px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  z-index: 15;
  cursor: default;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991.98px) {
  .our-advantages .advantage-divider-btn {
    display: none;
  }
}
.our-advantages .adv-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.our-advantages .adv-item:last-child {
  margin-bottom: 0;
}
.our-advantages .adv-item .adv-icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.our-advantages .adv-item .adv-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}
.our-advantages .adv-item .adv-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.our-advantages .advantage-right-panel .adv-item .adv-icon-box {
  border-color: rgba(26, 26, 26, 0.1);
}
.our-advantages .advantage-right-panel .adv-item .adv-title {
  color: #1a1a1a;
}
.our-advantages .advantage-right-panel .adv-item .adv-desc {
  color: rgba(26, 26, 26, 0.65);
}
.our-advantages .advantage-left-panel .adv-item .adv-title {
  color: var(--color-white);
}
.our-advantages .advantage-left-panel .adv-item .adv-desc {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 991.98px) {
  .our-advantages .advantage-header-wrapper {
    position: relative;
    top: auto;
    padding: 3rem 0 1rem 0;
    background-color: #0a0f12;
  }
  .our-advantages .advantage-left-panel {
    padding: 4rem 2rem 5rem 2rem;
    background-image: linear-gradient(rgba(10, 15, 18, 0.85), rgba(10, 15, 18, 0.85)), url("../images/home/advantage/advantage-1.webp");
  }
  .our-advantages .advantage-right-panel {
    padding: 5rem 2rem 5rem 2rem;
    background-image: linear-gradient(rgba(244, 238, 227, 0.9), rgba(244, 238, 227, 0.9)), url("../images/home/advantage/advantage-2.webp");
  }
}
.why-us {
  background-color: #f7f3f0;
  background-image: url("../images/home/why-us/why-us-2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #1a1a1a;
  padding: 8rem 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}
.why-us .container-custom-left {
  padding-left: 4%;
  padding-right: 4%;
}
.why-us .why-us-title-section {
  max-width: 550px;
  margin-bottom: 3rem;
}
.why-us .why-us-title-section span.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  display: inline-block;
}
.why-us .why-us-title-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.why-us .why-us-title-section p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.65) !important;
}
.why-us .why-us-list {
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  max-width: 650px;
}
.why-us .why-us-row {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  transition: background-color 0.3s ease;
}
.why-us .why-us-row:hover {
  background-color: rgba(0, 0, 0, 0.01);
}
.why-us .why-us-row .why-us-icon-col {
  width: 60px;
  color: var(--color-primary);
  font-size: 1.6rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.why-us .why-us-row .why-us-title-col {
  width: 220px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  font-family: var(--font-heading);
  line-height: 1.4;
  padding-right: 1.5rem;
  flex-shrink: 0;
}
.why-us .why-us-row .why-us-desc-col {
  flex-grow: 1;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.65);
  margin-bottom: 0;
}
.why-us .why-us-image-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;
}
.why-us .why-us-image-container img {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .why-us {
    padding: 6rem 0;
  }
  .why-us .why-us-image-container {
    padding-left: 0;
    margin-top: 4rem;
  }
  .why-us .why-us-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 0;
  }
  .why-us .why-us-row .why-us-icon-col {
    margin-bottom: 0.75rem;
  }
  .why-us .why-us-row .why-us-title-col {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0.5rem;
  }
  .why-us .why-us-row .why-us-desc-col {
    width: 100%;
  }
}
.home-testimonials {
  background-color: #080c0e;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-border-dark);
}
.home-testimonials .testimonials-stats-bar {
  background-color: #faf7f2;
  background-image: url("../images/home/testimonials/testimonial-stats.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 4rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.home-testimonials .testimonials-stats-bar .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.home-testimonials .testimonials-stats-bar .stat-col {
  position: relative;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (min-width: 992px) {
  .home-testimonials .testimonials-stats-bar .stat-col:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.08);
  }
}
@media (max-width: 991.98px) {
  .home-testimonials .testimonials-stats-bar .stat-col {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .home-testimonials .testimonials-stats-bar .stat-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.home-testimonials .testimonials-stats-bar .stat-item {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.home-testimonials .testimonials-stats-bar .stat-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.home-testimonials .testimonials-stats-bar .stat-icon-box {
  width: 54px;
  height: 54px;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.home-testimonials .testimonials-stats-bar .stat-value {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  color: #0c1215;
  font-family: Georgia, serif;
  letter-spacing: -0.01em;
}
.home-testimonials .testimonials-stats-bar .stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}
.home-testimonials .testimonials-stats-bar .stat-desc {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}
.home-testimonials .testimonial-split-row {
  margin: 0;
}
.home-testimonials .testimonial-content-col {
  background-color: #0c1215;
  padding: 7rem 4rem 7rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.home-testimonials .testimonial-content-col .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  display: inline-block;
}
.home-testimonials .testimonial-quote-box {
  position: relative;
  max-width: 580px;
}
.home-testimonials .testimonial-quote-box .quote-mark {
  color: var(--color-primary);
  font-size: 4rem;
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  left: -2.5rem;
  top: -1.5rem;
  opacity: 0.8;
}
.home-testimonials .testimonial-quote-box .quote-text {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-white);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.home-testimonials .author-divider {
  width: 40px;
  height: 1px;
  background-color: var(--color-primary);
  margin-bottom: 2rem;
}
.home-testimonials .author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.home-testimonials .author-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.home-testimonials .author-profile .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(183, 145, 100, 0.3);
}
.home-testimonials .author-profile .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-testimonials .author-profile .author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}
.home-testimonials .author-profile .author-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0;
}
.home-testimonials .slider-controls {
  display: flex;
  gap: 0.75rem;
}
.home-testimonials .slider-controls .control-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: transparent;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-easing);
}
.home-testimonials .slider-controls .control-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  background-color: rgba(183, 145, 100, 0.05);
}
.home-testimonials .testimonial-image-col {
  background-image: url("../images/home/testimonials/testimonials.webp");
  background-size: cover;
  background-position: center;
  min-height: 520px;
}

@media (max-width: 991.98px) {
  .home-testimonials .testimonials-stats-bar {
    padding: 4rem 2rem;
  }
  .home-testimonials .testimonial-content-col {
    padding: 5rem 2rem;
  }
  .home-testimonials .testimonial-quote-box .quote-mark {
    left: 0;
    position: relative;
    display: block;
    margin-bottom: 1rem;
  }
  .home-testimonials .testimonial-image-col {
    min-height: 380px;
  }
}
.home-contact {
  background-color: #faf7f2;
  color: #1a1a1a;
  padding: 0 0;
}
.home-contact .container-fluid {
  padding-left: 4rem;
  padding-right: 0;
}
@media (max-width: 991.98px) {
  .home-contact .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.home-contact .contact-left-content {
  padding-right: 4rem;
}
@media (max-width: 991.98px) {
  .home-contact .contact-left-content {
    padding-right: 0;
    margin-bottom: 4rem;
  }
}
.home-contact .contact-left-content .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  display: inline-block;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
}
.home-contact .contact-left-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0c1215;
  font-weight: 700;
  margin-top: 0.5rem;
}
.home-contact .contact-left-content p.text-muted {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.65) !important;
}
.home-contact .contact-highlights {
  margin-top: 3.5rem;
}
.home-contact .contact-highlights .highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.home-contact .contact-highlights .highlight-item .highlight-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f5efe6;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.home-contact .contact-highlights .highlight-item .highlight-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}
.home-contact .contact-highlights .highlight-item .highlight-desc {
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.6);
  line-height: 1.5;
  margin-bottom: 0;
}
.home-contact .contact-card-wrapper {
  position: relative;
  width: 100%;
  min-height: 650px;
  background-image: url("../images/home/contact/home-contact.webp");
  background-size: cover;
  background-position: center;
  -webkit-border-top-left-radius: 100px;
  -moz-border-radius-topleft: 100px;
  border-top-left-radius: 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 3rem 4rem 3rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}
@media (max-width: 991.98px) {
  .home-contact .contact-card-wrapper {
    background-image: none;
    min-height: auto;
    padding: 0;
    flex-direction: column;
    box-shadow: none;
    border-radius: 0;
  }
}
.home-contact .mobile-contact-img {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.home-contact .mobile-contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-contact .contact-form-card {
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 480px;
  padding: 3rem 2.5rem;
  color: #1a1a1a;
  z-index: 5;
}
@media (max-width: 991.98px) {
  .home-contact .contact-form-card {
    max-width: 100%;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
  }
}
.home-contact .contact-form-card .form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0c1215;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}
.home-contact .contact-form-card .form-subtitle {
  font-size: 0.82rem;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 2rem;
}
.home-contact .contact-form-card .form-control,
.home-contact .contact-form-card .form-select {
  background-color: #fcfbfa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.home-contact .contact-form-card .form-control::placeholder,
.home-contact .contact-form-card .form-select::placeholder {
  color: rgba(26, 26, 26, 0.45);
}
.home-contact .contact-form-card .form-control:focus,
.home-contact .contact-form-card .form-select:focus {
  background-color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: none;
}
.home-contact .contact-form-card .form-brief-group {
  background-color: #fcfbfa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.home-contact .contact-form-card .form-brief-group:focus-within {
  background-color: var(--color-white);
  border-color: var(--color-primary);
}
.home-contact .contact-form-card .form-brief-group .brief-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}
.home-contact .contact-form-card .form-brief-group textarea {
  background: transparent;
  border: none;
  padding: 0;
  width: 100%;
  font-size: 0.82rem;
  color: #1a1a1a;
  resize: none;
}
.home-contact .contact-form-card .form-brief-group textarea::placeholder {
  color: rgba(26, 26, 26, 0.45);
}
.home-contact .contact-form-card .form-brief-group textarea:focus {
  outline: none;
  box-shadow: none;
}
.home-contact .contact-form-card .submit-enquiry-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  padding: 1rem;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-speed) var(--transition-easing);
  margin-bottom: 1.25rem;
}
.home-contact .contact-form-card .submit-enquiry-btn i {
  transition: transform 0.2s ease;
}
.home-contact .contact-form-card .submit-enquiry-btn:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}
.home-contact .contact-form-card .submit-enquiry-btn:hover i {
  transform: translateX(4px);
}
.home-contact .contact-form-card .form-confidential-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 0;
}

.site-footer {
  background-color: #0b0e10;
  color: rgba(255, 255, 255, 0.6);
  padding: 5rem 4rem 2rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
}
@media (max-width: 991.98px) {
  .site-footer {
    padding: 4rem 2rem 2rem 2rem;
  }
}
.site-footer .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.site-footer .footer-brand-col {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 3rem;
}
@media (max-width: 991.98px) {
  .site-footer .footer-brand-col {
    border-right: none;
    padding-right: 12px;
    margin-bottom: 2.5rem;
  }
}
.site-footer .footer-brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.site-footer .footer-brand-col .footer-logo img {
  width: 90%;
  height: auto;
}
.site-footer .footer-brand-col .footer-logo .logo-text-wrapper {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-brand-col .footer-logo .logo-text-wrapper .logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: 0;
  font-family: var(--font-heading);
}
.site-footer .footer-brand-col .footer-logo .logo-text-wrapper .logo-subtitle {
  font-size: 0.65rem;
  color: var(--color-primary-light);
  letter-spacing: 0.02em;
}
.site-footer .footer-brand-col .footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer .footer-brand-col .footer-social-links {
  display: flex;
  gap: 0.75rem;
}
.site-footer .footer-brand-col .footer-social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all var(--transition-speed) var(--transition-easing);
}
.site-footer .footer-brand-col .footer-social-links a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  background-color: rgba(183, 145, 100, 0.08);
  transform: translateY(-2px);
}
.site-footer .footer-widget-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-light);
  margin-bottom: 1.8rem;
  font-family: var(--font-heading);
}
.site-footer .footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links-list li {
  margin-bottom: 0.8rem;
}
.site-footer .footer-links-list li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-easing);
}
.site-footer .footer-links-list li a:hover {
  color: var(--color-primary);
}
.site-footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .footer-contact-list li i {
  color: var(--color-primary);
  font-size: 1.05rem;
  margin-top: 2px;
}
.site-footer .footer-contact-list li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-easing);
}
.site-footer .footer-contact-list li a:hover {
  color: var(--color-primary);
}
.site-footer .footer-bottom-bar {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.site-footer .footer-bottom-bar .copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.site-footer .footer-bottom-bar .footer-policy-links {
  display: flex;
  gap: 1.5rem;
}
.site-footer .footer-bottom-bar .footer-policy-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-easing);
}
.site-footer .footer-bottom-bar .footer-policy-links a:hover {
  color: var(--color-primary);
}

@media (max-width: 991.98px) {
  .site-header {
    background-color: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header.scrolled, .site-header.menu-open {
    background-color: var(--background-dark);
    border-bottom: 1px solid var(--color-border-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .site-header .navbar-collapse {
    background-color: var(--background-dark);
    padding: 1rem 0;
    border-top: 1px solid var(--color-border-dark);
    margin-top: 0.75rem;
  }
  .site-header .nav-link {
    padding: 0.75rem 0 !important;
  }
  .site-header .nav-link::after {
    left: 0;
    right: auto;
    width: 15px;
  }
  .page-hero {
    padding: 8rem 0 4rem 0;
  }
}
.header_logo {
  height: 70px;
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.site-header.logo-shrunk .header_logo {
  height: 40px;
}

.contact-page-section {
  color: var(--color-primary-light);
  background-color: #ffffff;
}
.contact-page-section .container-custom {
  padding-left: 5%;
  padding-right: 5%;
}
.contact-page-section .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
}
.contact-page-section .contact-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-secondary);
  font-family: var(--font-heading);
}
.contact-page-section .form-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
  font-family: var(--font-heading);
}
.contact-page-section .contact-info-col {
  position: relative;
  padding-right: 3rem;
}
@media (min-width: 992px) {
  .contact-page-section .contact-info-col::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(183, 145, 100, 0.18);
  }
}
@media (max-width: 991.98px) {
  .contact-page-section .contact-info-col {
    padding-right: var(--bs-gutter-x, 1.5rem);
    margin-bottom: 3rem;
  }
}
.contact-page-section .contact-detail-item .detail-icon-box {
  width: 54px;
  height: 54px;
  background-color: var(--color-secondary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition-speed) var(--transition-easing);
}
.contact-page-section .contact-detail-item .detail-icon-box i {
  color: var(--color-primary);
  font-size: 1.4rem;
}
.contact-page-section .contact-detail-item:hover .detail-icon-box {
  background-color: var(--color-primary-dark);
}
.contact-page-section .contact-detail-item:hover .detail-icon-box i {
  color: var(--color-white);
}
.contact-page-section .contact-detail-item .detail-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}
.contact-page-section .contact-detail-item .detail-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-secondary);
  line-height: 1.5;
}
.contact-page-section .form-control-custom {
  display: block;
  width: 100%;
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-secondary);
  background-color: rgba(183, 145, 100, 0.05);
  background-clip: padding-box;
  border: 1px solid rgba(183, 145, 100, 0.18);
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
  font-family: var(--font-body);
}
.contact-page-section .form-control-custom::placeholder {
  color: #8c857b;
  opacity: 0.7;
}
.contact-page-section .form-control-custom:focus {
  color: var(--color-secondary);
  background-color: var(--color-white);
  border-color: var(--color-primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(183, 145, 100, 0.1);
}
.contact-page-section .select-wrapper {
  position: relative;
}
.contact-page-section .select-wrapper::after {
  content: "\f2e2";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  pointer-events: none;
  font-size: 0.85rem;
}
.contact-page-section .select-custom {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.contact-page-section .select-custom option:first-child {
  color: #8c857b;
}
.contact-page-section .textarea-custom {
  resize: none;
  min-height: 140px;
}
.contact-page-section .btn-submit-message {
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.88rem;
  border: 1px solid var(--color-secondary);
  transition: all var(--transition-speed) var(--transition-easing);
  color: var(--color-primary);
}
.contact-page-section .btn-submit-message:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.contact-map-section {
  overflow: hidden;
  height: 550px;
}
@media (max-width: 991.98px) {
  .contact-map-section {
    height: auto;
    display: flex;
    flex-direction: column;
  }
}
.contact-map-section .map-container {
  height: 100%;
}
@media (max-width: 991.98px) {
  .contact-map-section .map-container {
    height: 350px;
  }
}
.contact-map-section .map-container .map-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-map-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) sepia(0.15) brightness(0.95) contrast(1.1);
}
.contact-map-section .map-overlay-card {
  position: absolute;
  bottom: 3.5rem;
  right: 5%;
  width: 100%;
  max-width: 440px;
  background-color: #111b20;
  padding: 2.8rem;
  box-shadow: var(--shadow-dark-md);
  z-index: 10;
  transition: transform var(--transition-speed) var(--transition-easing);
}
@media (max-width: 991.98px) {
  .contact-map-section .map-overlay-card {
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 100%;
    padding: 3rem 1.5rem;
  }
}
.contact-map-section .map-overlay-card .card-icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-map-section .map-overlay-card .card-icon-box i {
  color: var(--color-primary);
  font-size: 1.25rem;
}
.contact-map-section .map-overlay-card .card-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
}
.contact-map-section .map-overlay-card .card-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-heading);
}
.contact-map-section .map-overlay-card .card-divider {
  border-color: rgba(255, 255, 255, 0.12);
  opacity: 1;
}
.contact-map-section .map-overlay-card .card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-light-muted);
}
.contact-map-section .map-overlay-card .card-btn-directions {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  transition: all var(--transition-speed) var(--transition-easing);
}
.contact-map-section .map-overlay-card .card-btn-directions:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.about-vision {
  position: relative;
  background-image: url("../images/pages/about-vision.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 8rem 0;
  overflow: hidden;
  background-color: #ffffff;
}
.about-vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .about-vision {
    padding: 5rem 0;
    background-position: center;
  }
  .about-vision::before {
    background: rgba(255, 255, 255, 0.96);
  }
}
.about-vision .container-custom {
  position: relative;
  z-index: 2;
  padding-left: 5%;
  padding-right: 5%;
}
.about-vision .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
}
.about-vision .vision-heading {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}
.about-vision .vision-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 540px;
}
.about-vision .vision-signature-block {
  margin-top: 2.5rem;
}
.about-vision .vision-signature-block .vision-signatureimg {
  max-height: 70px;
  width: auto;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.about-vision .vision-signature-block .vision-signature-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-secondary);
  font-family: var(--font-body);
}

.about-approach {
  position: relative;
  background-color: #fcfbf9;
  background-image: url("../images/pages/about-approach-background.webp");
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 8rem 0;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .about-approach {
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
  }
}
.about-approach .image-stack {
  position: relative;
  width: 100%;
  height: 480px;
}
@media (max-width: 575.98px) {
  .about-approach .image-stack {
    height: 380px;
  }
}
.about-approach .image-stack .image-stack-item {
  position: absolute;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.about-approach .image-stack .image-stack-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-approach .image-stack .image-stack-item-back {
  top: 0;
  left: 0;
  width: 78%;
  height: 80%;
  z-index: 1;
  border: none;
}
.about-approach .image-stack .image-stack-item-front {
  bottom: 0;
  right: 5%;
  width: 58%;
  height: 58%;
  z-index: 2;
  border: 8px solid #ffffff;
}
.about-approach .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
}
.about-approach .approach-heading {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}
.about-approach .approach-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 480px;
}
.about-approach .approach-checklist li {
  margin-bottom: 1.2rem;
}
.about-approach .approach-checklist li .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.about-approach .approach-checklist li .check-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-secondary);
}

.about-counter {
  background-color: #111518;
  padding: 6rem 0;
  position: relative;
}
.about-counter .counter-item {
  position: relative;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .about-counter .counter-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.08);
  }
}
@media (max-width: 767.98px) {
  .about-counter .counter-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
.about-counter .counter-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.about-counter .counter-icon-wrap .counter-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.about-counter .counter-number {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.about-counter .counter-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #e2e8f0;
  letter-spacing: 0.03em;
  text-transform: capitalize;
}

.about-why-choose-us {
  background-color: #fcfbf9;
  padding: 7rem 0;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.about-why-choose-us .why-heading {
  font-size: clamp(2.2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}
.about-why-choose-us .why-item {
  position: relative;
  padding: 2rem 1.5rem;
}
@media (min-width: 992px) {
  .about-why-choose-us .why-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.05);
  }
}
.about-why-choose-us .why-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about-why-choose-us .why-icon-wrap .why-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.about-why-choose-us .why-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  letter-spacing: -0.015em;
}
.about-why-choose-us .why-desc {
  font-size: 0.95rem;
  line-height: 1.68;
  color: var(--color-text);
  max-width: 250px;
  margin: 0 auto;
}

.about-cta {
  position: relative;
  background-image: url("../images/pages/about-cta.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 10rem 0;
  overflow: hidden;
}
.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #111518 0%, #111518 35%, rgba(17, 21, 24, 0.9) 55%, rgba(17, 21, 24, 0.2) 85%, rgba(17, 21, 24, 0) 100%);
  z-index: 1;
}
@media (max-width: 991.98px) {
  .about-cta {
    padding: 6rem 0;
    background-position: center;
  }
  .about-cta::before {
    background: rgba(17, 21, 24, 0.85);
  }
}
.about-cta .container-fluid {
  position: relative;
  z-index: 2;
}
.about-cta .text-content {
  max-width: 500px;
}
.about-cta .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-primary);
}
.about-cta .cta-heading {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}
.about-cta .cta-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 440px;
}
.about-cta .cta-btn {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
  background-color: transparent !important;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: 0;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.about-cta .cta-btn .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}
.about-cta .cta-btn:hover {
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
}
.about-cta .cta-btn:hover .arrow {
  transform: translateX(5px);
}

.nn-our-services {
  background-color: #fcfbf9;
  padding: 8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.nn-our-services .service-card {
  background-color: #ffffff;
  border: 1px solid #eae8e4;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nn-our-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
}
.nn-our-services .service-card:hover .service-arrow {
  transform: translateX(5px);
}
.nn-our-services .service-image-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
}
.nn-our-services .service-image-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.nn-our-services .service-icon-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #111518;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  z-index: 2;
}
.nn-our-services .service-icon-badge .service-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.nn-our-services .service-card-body {
  padding: 2.5rem 1.8rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.nn-our-services .service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  line-height: 1.35;
  margin-bottom: 0.8rem;
  letter-spacing: -0.015em;
}
.nn-our-services .service-desc {
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.nn-our-services .service-arrow {
  color: var(--color-primary);
  font-size: 1.25rem;
  display: inline-block;
  transition: transform 0.3s ease;
  line-height: 1;
  width: max-content;
}

.projects-section {
  background-color: var(--background-body);
  padding: 6rem 0;
}
.projects-section .projects-filter-bar .btn-filter-dropdown {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
  border-radius: 0;
  min-width: 220px;
  transition: all var(--transition-speed) var(--transition-easing);
}
.projects-section .projects-filter-bar .btn-filter-dropdown i {
  font-size: 1.1rem;
}
.projects-section .projects-filter-bar .btn-filter-dropdown:hover, .projects-section .projects-filter-bar .btn-filter-dropdown:focus {
  border-color: var(--color-primary);
  background-color: #ffffff;
  color: var(--color-primary-dark);
}
.projects-section .projects-filter-bar .dropdown-menu-filter {
  border-radius: 0;
  margin-top: 5px;
  border: 1px solid var(--color-border-soft) !important;
  padding: 0.5rem 0;
  min-width: 220px;
  background-color: #ffffff;
}
.projects-section .projects-filter-bar .dropdown-menu-filter .dropdown-item {
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all var(--transition-speed) var(--transition-easing);
}
.projects-section .projects-filter-bar .dropdown-menu-filter .dropdown-item:hover {
  background-color: var(--color-ivory);
  color: var(--color-primary-dark);
}
.projects-section .projects-filter-bar .dropdown-menu-filter .dropdown-item.active {
  background-color: var(--color-primary);
  color: #ffffff;
}
.projects-section .projects-filter-bar .filter-tab {
  background: none;
  border: none;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  cursor: pointer;
  position: relative;
  transition: color var(--transition-speed) var(--transition-easing);
}
.projects-section .projects-filter-bar .filter-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-speed) var(--transition-easing);
}
.projects-section .projects-filter-bar .filter-tab:hover {
  color: var(--color-text);
}
.projects-section .projects-filter-bar .filter-tab.active {
  color: var(--color-text);
}
.projects-section .projects-filter-bar .filter-tab.active::after {
  transform: scaleX(1);
}
.projects-section .projects-grid {
  transition: opacity 0.4s ease;
}
.projects-section .project-grid-item {
  transition: all 0.4s ease;
}
.projects-section .project-grid-item.filtered-out {
  display: none;
  opacity: 0;
  transform: scale(0.9);
}
.projects-section .project-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.projects-section .project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-border);
}
.projects-section .project-card:hover .project-img-wrap img {
  transform: scale(1.05);
}
.projects-section .project-card:hover .project-link {
  color: var(--color-primary);
  transform: translateX(4px);
}
.projects-section .project-card .project-img-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.projects-section .project-card .project-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.projects-section .project-card .project-body {
  padding: 2rem 1.8rem;
  flex-grow: 1;
  gap: 1.5rem;
}
.projects-section .project-card .project-info {
  flex-grow: 1;
}
.projects-section .project-card .project-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.5rem;
}
.projects-section .project-card .project-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.35;
  margin-bottom: 0.8rem;
  letter-spacing: -0.015em;
}
.projects-section .project-card .project-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.projects-section .project-card .project-action {
  flex-shrink: 0;
}
.projects-section .project-card .project-link {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) var(--transition-easing);
  width: 32px;
  height: 32px;
}
.projects-section .btn-view-more-projects {
  border: 1px solid var(--color-primary);
  color: var(--color-primary-dark);
  background-color: transparent !important;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: 0;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.projects-section .btn-view-more-projects i {
  transition: transform 0.3s ease;
  display: inline-block;
}
.projects-section .btn-view-more-projects:hover {
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
}
.projects-section .btn-view-more-projects:hover i {
  transform: translateX(5px);
}

.project-header {
  position: relative;
  min-height: 100vh;
  padding: 12rem 0 8rem 0;
  background-image: url("../images/projects/lakeview_house.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-dark);
}
.project-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(10, 15, 18, 0.98) 0%, rgba(10, 15, 18, 0.95) 35%, rgba(10, 15, 18, 0.8) 50%, rgba(10, 15, 18, 0.2) 75%, rgba(10, 15, 18, 0) 100%);
  z-index: 1;
}
.project-header .container-custom {
  position: relative;
  z-index: 2;
}
.project-header .header-content-col {
  color: var(--color-text-light);
}
.project-header .project-category {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}
.project-header .project-title {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}
.project-header .project-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--color-text-light-muted);
  max-width: 480px;
}
.project-header .project-divider {
  border: none;
  height: 1px;
  background-color: var(--color-primary);
  width: 60px;
  opacity: 0.6;
  margin-left: 0;
}
.project-header .project-info-list {
  max-width: 480px;
}
.project-header .project-info-list li {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
}
.project-header .project-info-list li:last-child {
  margin-bottom: 0;
}
.project-header .project-info-list .info-label-wrap {
  width: 160px;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--color-text-light-muted);
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.project-header .project-info-list .info-label-wrap i {
  font-size: 0.95rem;
  color: var(--color-primary) !important;
}
.project-header .project-info-list .info-value {
  color: var(--color-text-light);
  font-weight: 400;
}
.project-header .btn-project-enquire {
  border: 1px solid var(--color-primary);
  color: var(--color-primary-light);
  background-color: transparent !important;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: 0;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.project-header .btn-project-enquire i {
  transition: transform 0.3s ease;
  display: inline-block;
}
.project-header .btn-project-enquire:hover {
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  border-color: var(--color-primary);
}
.project-header .btn-project-enquire:hover i {
  transform: translateX(5px);
}

@media (max-width: 991.98px) {
  .project-header {
    min-height: auto;
    padding: 10rem 0 6rem 0;
    background-position: center;
  }
  .project-header::before {
    background: rgba(10, 15, 18, 0.85);
  }
  .project-header .project-title {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
  }
  .project-header .project-info-list .info-label-wrap {
    width: 140px;
  }
}
.project-details-section {
  background-color: #fff;
  padding: 6rem 0;
}
.project-details-section .section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-secondary);
  letter-spacing: -0.02em;
}
.project-details-section .section-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 520px;
}
.project-details-section .project-divider {
  border: none;
  height: 1px;
  background-color: var(--color-primary);
  width: 50px;
  opacity: 0.6;
  margin-left: 0;
}
.project-details-section .project-features-list li {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-secondary);
}
.project-details-section .project-features-list li i {
  font-size: 1.1rem;
  color: var(--color-accent) !important;
}
.project-details-section .map-overlap-wrapper {
  min-height: 480px;
  display: flex;
  align-items: center;
}
.project-details-section .map-overlap-wrapper .map-box {
  width: 75%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background-color: var(--color-secondary-dark);
}
.project-details-section .map-overlap-wrapper .map-box .map-img,
.project-details-section .map-overlap-wrapper .map-box .map-iframe {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border: 0;
  filter: grayscale(1) sepia(0.25) brightness(1.04) contrast(0.95);
}
.project-details-section .map-overlap-wrapper .map-box .map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.8rem;
  color: var(--color-accent);
  z-index: 5;
  animation: pinBounce 2s infinite ease-in-out;
  pointer-events: none;
}
.project-details-section .map-overlap-wrapper .location-floating-card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  background-color: #ffffff;
  padding: 3rem 2.2rem;
  border: 1px solid var(--color-border-soft);
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(15, 24, 28, 0.08) !important;
}
.project-details-section .map-overlap-wrapper .location-floating-card .card-icon {
  font-size: 1.8rem;
  color: var(--color-accent);
}
.project-details-section .map-overlap-wrapper .location-floating-card .card-location-label {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-secondary);
  font-family: var(--font-heading);
}
.project-details-section .map-overlap-wrapper .location-floating-card .card-location-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.project-details-section .map-overlap-wrapper .location-floating-card .card-location-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.project-details-section .map-overlap-wrapper .location-floating-card .btn-view-map {
  border: 1px solid var(--color-primary);
  color: var(--color-primary-dark);
  background-color: transparent !important;
  padding: 0.7rem 1.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  border-radius: 0;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.project-details-section .map-overlap-wrapper .location-floating-card .btn-view-map i {
  transition: transform 0.3s ease;
  display: inline-block;
}
.project-details-section .map-overlap-wrapper .location-floating-card .btn-view-map:hover {
  background-color: var(--color-primary) !important;
  color: #ffffff !important;
  border-color: var(--color-primary);
}
.project-details-section .map-overlap-wrapper .location-floating-card .btn-view-map:hover i {
  transform: translateX(4px);
}

@keyframes pinBounce {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -60%);
  }
}
@media (max-width: 991.98px) {
  .project-details-section {
    padding: 4rem 0;
  }
  .project-details-section .map-overlap-wrapper {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    margin-top: 3rem;
  }
  .project-details-section .map-overlap-wrapper .map-box {
    width: 100%;
  }
  .project-details-section .map-overlap-wrapper .map-box .map-img {
    height: 300px;
  }
  .project-details-section .map-overlap-wrapper .location-floating-card {
    position: relative;
    transform: none;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: -30px;
    padding: 2.2rem 1.8rem;
  }
}
.project-gallery-section {
  background-color: var(--background-light);
  padding: 6rem 0;
}
.project-gallery-section .gallery-header {
  margin-bottom: 3.5rem;
}
.project-gallery-section .gallery-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
}
.project-gallery-section .gallery-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0;
}
.project-gallery-section .gallery-filters .gallery-filter-tab {
  background: none;
  border: none;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 3px;
  transition: all var(--transition-speed) var(--transition-easing);
}
.project-gallery-section .gallery-filters .gallery-filter-tab:hover {
  color: var(--color-secondary);
}
.project-gallery-section .gallery-filters .gallery-filter-tab.active {
  background-color: var(--color-secondary);
  color: #ffffff !important;
}
.project-gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
  transition: opacity 0.4s ease;
}
.project-gallery-section .gallery-grid .gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 100%;
  transition: all 0.4s ease;
}
.project-gallery-section .gallery-grid .gallery-grid-item.span-2 {
  grid-column: span 2;
}
.project-gallery-section .gallery-grid .gallery-grid-item.filtered-out {
  display: none;
  opacity: 0;
  transform: scale(0.9);
}
.project-gallery-section .gallery-grid .gallery-grid-item:hover .gallery-img {
  transform: scale(1.04);
}
.project-gallery-section .gallery-grid .gallery-grid-item:hover .gallery-overlay {
  opacity: 1;
}
.project-gallery-section .gallery-grid .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.project-gallery-section .gallery-grid .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 37, 42, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.project-gallery-section .gallery-grid .gallery-overlay i {
  font-size: 2rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991.98px) {
  .project-gallery-section {
    padding: 4rem 0;
  }
  .project-gallery-section .gallery-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .project-gallery-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 15px;
  }
  .project-gallery-section .gallery-grid .gallery-grid-item {
    grid-column: span 1 !important;
  }
}
@media (max-width: 575.98px) {
  .project-gallery-section .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
}

/*# sourceMappingURL=style.css.map */
