@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

html {
  scroll-padding-top: 90px;
}

:root {
  --font-default: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-primary: "Plus Jakarta Sans", sans-serif;
  --font-secondary: "Plus Jakarta Sans", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --color-default: #1c2833;
  --color-primary: #1b6b63;
  --color-secondary: #0c1f2e;
  --color-gold: #c4a15a;
  --color-gold-soft: #e8d5a3;
  --color-cream: #f4f1ea;
  --color-muted: #5d6d7e;
  --color-line: rgba(12, 31, 46, 0.08);
  --shadow-soft: 0 18px 50px rgba(12, 31, 46, 0.08);
  --shadow-hover: 0 22px 48px rgba(27, 107, 99, 0.16);
  --radius: 20px;
  --header-h: 76px;
}

* {
  -webkit-font-smoothing: antialiased;
}

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

body {
  font-family: var(--font-default);
  color: var(--color-default);
  background: var(--color-cream);
}

body.page-home {
  background: #fff;
}

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

a:hover {
  color: #14554f;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
}

/*--------------------------------------------------------------
# Layout helpers
--------------------------------------------------------------*/
section {
  padding: 88px 0;
}

.section-header {
  padding: 10px 0 36px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-secondary);
  padding-bottom: 16px;
  margin-bottom: 8px;
}

.section-header h2:after {
  width: 64px;
  height: 2px;
  background: var(--color-gold);
}

.section-header span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 72px;
  color: rgba(12, 31, 46, 0.045);
  top: 28px;
  text-transform: none;
}

.section-header p {
  color: var(--color-muted);
  font-size: 16px;
}

body:not(.page-home) #featured-services {
  padding: 168px 0 80px !important;
  margin-top: 0 !important;
  min-height: 56vh;
}

body:not(.page-home) #featured-services > .container {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}

.article-cover {
  margin: 8px 0 28px;
}

.article-cover img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

.article-date {
  margin: -12px 0 18px;
}

.article-body {
  width: 100%;
  overflow: auto;
}

body:not(.page-home) #featured-services > .container > h3,
body:not(.page-home) #featured-services > .container > h4 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-line);
}

#featured-services object,
#featured-services iframe {
  width: 100% !important;
  max-width: 100%;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

#featured-services .table,
.table-sticky {
  background: #fff !important;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-line) !important;
  box-shadow: var(--shadow-soft);
}

#featured-services .table thead th,
.table-sticky thead th {
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0 !important;
  padding: 14px 12px;
}

#featured-services .table tbody td,
.table-sticky tbody td {
  vertical-align: middle;
  font-size: 14px;
  border-color: var(--color-line) !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 0;
  background: #14212b;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(196, 161, 90, 0.28);
  box-shadow: 0 8px 24px rgba(8, 16, 24, 0.18);
}

.header > .container-fluid,
.header > .container-xl {
  width: 100%;
}

.header.sticked {
  padding: 0;
  background: #14212b;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 10px 30px rgba(12, 31, 46, 0.18);
}

.header .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.header .topbar a {
  color: rgba(255, 255, 255, 0.72);
  margin-left: 18px;
  font-size: 12px;
}

.header .topbar a:hover {
  color: var(--color-gold-soft);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.header .logo {
  gap: 12px;
}

.header .logo h1,
.brand-text strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-text small {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
}

.brand-mark {
  width: 48px;
  height: 52px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: none;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (min-width: 1280px) {
  .navbar a,
  .navbar a:focus {
    padding: 10px 0 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
  }

  .navbar .dropdown ul {
    border-radius: 14px;
    padding: 8px 0;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
    top: calc(100% + 16px);
  }

  .navbar .dropdown ul a {
    font-size: 13.5px;
    padding: 9px 18px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
    background: rgba(27, 107, 99, 0.06);
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold-soft);
    border-radius: 999px;
    padding: 8px 18px;
    margin-left: 18px;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    background: var(--color-gold);
    color: #0c1f2e;
  }
}

@media (max-width: 1279px) {
  .navbar ul {
    background: rgba(12, 31, 46, 0.97);
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-gold);
    color: #0c1f2e;
    border-radius: 999px;
  }
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 92vh;
  padding: 170px 0 80px;
  background-color: var(--color-secondary);
  background-image:
    linear-gradient(115deg, rgba(12, 31, 46, 0.92) 8%, rgba(27, 107, 99, 0.58) 100%),
    url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196, 161, 90, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(12, 31, 46, 0.12) 0%, rgba(12, 31, 46, 0.35) 100%);
}

.hero .container {
  height: auto !important;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
}

.hero-kicker:before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}

.hero h2,
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 18px;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold-soft);
}

.hero p,
.hero-lead {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-elegant {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: 0.3s ease;
}

.btn-elegant.solid {
  background: var(--color-gold);
  color: #0c1f2e;
}

.btn-elegant.solid:hover {
  background: #d4b56a;
  color: #0c1f2e;
  transform: translateY(-1px);
}

.btn-elegant.ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-elegant.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-meta span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 22px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.hero-panel-label {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  font-weight: 700;
}

.hero-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 10px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  font-weight: 500;
}

.hero-panel a:first-of-type {
  border-top: 0;
}

.hero-panel a i:first-child {
  width: 28px;
  color: var(--color-gold-soft);
}

.hero-panel a i:last-child {
  margin-left: auto;
  font-size: 14px;
  opacity: 0.55;
}

.hero-panel a:hover {
  color: var(--color-gold-soft);
}

/*--------------------------------------------------------------
# Featured services
--------------------------------------------------------------*/
.featured-services {
  position: relative;
  margin-top: -48px;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 40px;
}

.page-home .featured-services {
  margin-top: -56px;
}

.featured-services .service-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 31, 46, 0.05);
  border-top: 2px solid var(--color-gold);
  transition: 0.35s ease;
  height: 100%;
}

.featured-services .service-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.featured-services .service-item .icon {
  width: 58px;
  height: 58px;
  margin-right: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(27, 107, 99, 0.1);
}

.featured-services .service-item .icon i {
  font-size: 22px;
  color: var(--color-primary);
}

.featured-services .service-item:hover .icon {
  background: var(--color-primary);
}

.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore {
  color: #fff;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore {
  color: var(--color-primary);
}

.featured-services .service-item:hover .icon i {
  color: #fff;
}

.featured-services .service-item .title {
  font-size: 20px;
  margin-bottom: 8px;
}

.featured-services .service-item .description {
  max-width: none;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  -webkit-line-clamp: 3;
}

.featured-services .service-item .readmore {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# About / profile
--------------------------------------------------------------*/
.about {
  background: var(--color-cream);
}

.profile-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 31, 46, 0.05);
}

.about .content h3 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.profile-role {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 22px;
}

.about .profile-photo {
  position: relative;
}

.about .profile-photo img {
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
}

.about .profile-photo:after {
  display: none;
}

.profile-table {
  --bs-table-bg: transparent;
  margin-bottom: 0;
}

.profile-table td {
  padding: 10px 0;
  border-color: rgba(12, 31, 46, 0.08);
  font-size: 15px;
}

.profile-table td:first-child {
  width: 160px;
  color: var(--color-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.profile-table td:nth-child(2) {
  width: 18px;
  color: var(--color-gold);
}

.profile-table td:last-child {
  font-weight: 600;
  color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Visi misi / CTA
--------------------------------------------------------------*/
.call-to-action {
  background:
    linear-gradient(120deg, rgba(12, 31, 46, 0.92), rgba(27, 107, 99, 0.78)),
    url("../img/cta-bg.jpg") center/cover;
  padding: 96px 0;
}

.call-to-action h3 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 22px;
}

.visi-block p,
.visi-block li,
.visi-block span {
  font-family: var(--font-default) !important;
  color: rgba(255, 255, 255, 0.88) !important;
}

.visi-label {
  display: inline-block;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-soft) !important;
  margin-bottom: 8px;
}

.visi-quote {
  font-family: var(--font-display) !important;
  font-size: 32px !important;
  font-style: italic;
  line-height: 1.35;
  color: #fff !important;
  margin-bottom: 28px;
}

.visi-block ol,
.visi-list {
  padding-left: 0;
  list-style: none;
  counter-reset: misi;
}

.visi-block li,
.visi-list li {
  position: relative;
  margin-bottom: 16px;
  line-height: 1.7;
  text-align: left;
  padding: 14px 16px 14px 58px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.visi-list li {
  counter-increment: misi;
}

.visi-list li:before {
  content: counter(misi, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 14px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-gold-soft);
}

/*--------------------------------------------------------------
# Apps
--------------------------------------------------------------*/
.services {
  background: #fff;
}

.services .card {
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
  transition: 0.35s ease;
  border: 1px solid rgba(12, 31, 46, 0.05);
}

.services .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.services .card .card-img {
  margin-bottom: 0;
  border-radius: 0;
  aspect-ratio: 16 / 10;
}

.services .card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .card h3 {
  padding: 22px 24px 6px;
  text-transform: none;
  font-size: 20px;
}

.services .card a {
  color: var(--color-secondary);
}

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

.services .card p {
  padding: 0 24px 28px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.features {
  background: var(--color-cream);
  padding-top: 88px;
}

.features .features-item + .features-item {
  margin-top: 28px;
}

.news-card,
.features .features-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  padding: 16px;
  border: 1px solid rgba(12, 31, 46, 0.05);
}

.features .features-item img,
.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.features .features-item h3,
.news-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-secondary);
}

.features .features-item h3 a,
.news-card h3 a {
  color: inherit;
}

.features .features-item h3 a:hover,
.news-card h3 a:hover {
  color: var(--color-primary);
}

.features .readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.testimonials .section-header h2:after {
  background: var(--color-gold);
}

.footer .footer-links {
  padding: 0;
  margin: 0;
}

.footer .footer-links li {
  padding: 7px 0;
}

.footer .footer-links a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.footer .footer-links a:hover {
  color: var(--color-gold-soft);
}

.footer .logo {
  margin-bottom: 16px;
  gap: 12px;
}

.news-date,
.features .features-item .text-muted {
  font-size: 13px;
  color: var(--color-primary) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn-primary,
.btn.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background: #14554f;
  border-color: #14554f;
}

.pagination .page-link {
  color: var(--color-primary);
  border-radius: 10px;
  margin: 0 4px;
  border: 1px solid var(--color-line);
}

.pagination .page-item.active .page-link,
.pagination .page-item.active .page-link:hover,
.pagination .page-item.active .page-link:focus,
.pagination .active > .page-link {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/*--------------------------------------------------------------
# Related links
--------------------------------------------------------------*/
.related-links {
  background: #fff;
  padding: 72px 0;
}

.related-links h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 36px;
}

.related-links h2 strong {
  color: var(--color-primary);
  font-weight: 600;
}

.link-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
  min-width: 120px;
  border-radius: 18px;
  border: 1px solid var(--color-line);
  background: #fff;
  transition: 0.3s ease;
  text-decoration: none;
}

.link-chip img {
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(0.2);
}

.link-chip span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.link-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(27, 107, 99, 0.25);
}

.link-chip:hover img {
  filter: none;
}

.link-chip:hover span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Personil
--------------------------------------------------------------*/
.testimonials {
  background:
    linear-gradient(rgba(12, 31, 46, 0.88), rgba(12, 31, 46, 0.88)),
    url("../img/testimonials-bg.jpg") center/cover;
}

.testimonials::before {
  display: none;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid var(--color-gold);
}

.testimonials .testimonial-item h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-top: 16px;
}

.testimonials .testimonial-item h4 {
  color: var(--color-gold-soft);
  font-weight: 500;
}

.testimonials .testimonial-item .stars {
  display: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-gold);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 168px 0 72px;
}

.breadcrumbs .page-header:before {
  background: linear-gradient(120deg, rgba(12, 31, 46, 0.88), rgba(27, 107, 99, 0.62));
}

.breadcrumbs .page-header h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
}

.breadcrumbs nav {
  background: #fff;
  border-bottom: 1px solid var(--color-line);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background:
    linear-gradient(180deg, #0a1926 0%, #07131d 100%);
  padding: 64px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer .footer-info .logo span,
.footer-brand {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.footer .footer-info p,
.footer-copy,
.footer address {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
}

.footer h4,
.footer-title {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-bottom: 16px;
}

.stat-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: linear-gradient(145deg, rgba(196, 161, 90, 0.28), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(232, 213, 163, 0.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  animation: statPanelIn 0.7s ease both;
}

.stat-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px 18px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(196, 161, 90, 0.08), transparent 55%),
    rgba(8, 20, 31, 0.92);
  transition: background 0.35s ease, transform 0.35s ease;
}

.stat-item:hover {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(196, 161, 90, 0.16), transparent 55%),
    rgba(12, 31, 46, 0.96);
}

.stat-item--live {
  background:
    radial-gradient(100% 90% at 100% 0%, rgba(46, 204, 160, 0.12), transparent 50%),
    rgba(8, 20, 31, 0.92);
}

.stat-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.stat-value {
  font-family: var(--font-primary);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.stat-item--live .stat-value {
  color: var(--color-gold-soft);
}

.stat-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3dcea3;
  box-shadow: 0 0 0 0 rgba(61, 206, 163, 0.55);
  animation: statPulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

@keyframes statPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 206, 163, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(61, 206, 163, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 206, 163, 0);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .stat-panel,
  .stat-pulse,
  .stat-item {
    animation: none;
    transition: none;
  }
}

.footer .social-media {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer .social-media a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 0;
  transition: 0.3s;
}

.footer .social-media a:hover {
  background: var(--color-gold);
  color: #0c1f2e;
  border-color: var(--color-gold);
}

.footer-bottom {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# UI chrome
--------------------------------------------------------------*/
.scroll-top {
  background: var(--color-primary);
  border-radius: 50%;
  width: 46px;
  height: 46px;
}

.scroll-top:hover {
  background: #14554f;
}

#preloader:before,
#preloader:after {
  border-color: var(--color-primary);
}

.modal-content {
  border: 0;
  border-radius: 18px;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe, object, embed {
  max-width: 100%;
}

.startup-modal .modal-dialog {
  width: min(600px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  margin: 0.75rem auto;
}

.startup-modal-content {
  background: transparent !important;
  border: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}

.startup-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.startup-pdf {
  display: block;
  width: 100%;
  height: min(72vh, 560px);
  border: 0;
  border-radius: 12px;
  background: #fff;
}

.startup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 5;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #14212b;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.startup-close:before,
.startup-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.startup-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.startup-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pdf-frame {
  width: 100% !important;
  height: min(75vh, 720px);
  min-height: 360px;
  border: 0;
}

@media (max-width: 991px) {
  .header-main {
    padding: 10px 0;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 56px;
  }

  .about .profile-photo:after {
    display: none;
  }

  .featured-services .service-item {
    height: auto;
  }

  .page-home .featured-services {
    margin-top: -24px;
  }

  .profile-table td:first-child {
    width: 120px;
  }

  .features .features-item img,
  .news-card img {
    height: 180px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 56px 0;
  }

  body:not(.page-home) #featured-services {
    padding: 120px 12px 48px !important;
  }

  body:not(.page-home) #featured-services > .container {
    padding: 20px 14px;
    border-radius: 16px;
  }

  body:not(.page-home) #featured-services > .container > div[style*="height"] {
    height: auto !important;
    max-height: 70vh;
    overflow: auto;
  }

  #featured-services .table,
  .table-sticky {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .breadcrumbs .page-header {
    padding: 128px 0 48px;
  }

  .breadcrumbs .page-header h2 {
    font-size: 34px;
  }

  .hero-meta {
    gap: 16px;
    margin-top: 28px;
  }

  .hero-actions {
    width: 100%;
  }

  .btn-elegant {
    justify-content: center;
  }

  .startup-modal .modal-dialog {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    margin: 0.5rem auto;
  }

  .startup-img {
    max-height: 75vh;
  }

  .startup-close {
    top: 6px;
    right: 6px;
  }

  .pdf-frame,
  .startup-pdf,
  #featured-services object {
    height: 62vh !important;
    min-height: 280px;
  }

  #featured-services .row > .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .section-header h2,
  .related-links h2,
  .about .content h3 {
    font-size: 28px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .brand-text strong,
  .header .logo h1 {
    font-size: 18px;
  }

  .brand-text small {
    letter-spacing: 0.08em;
    font-size: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 44px;
  }

  .visi-quote {
    font-size: 24px !important;
  }

  .features .features-item,
  .news-card {
    padding: 12px;
  }

  .features .features-item h3,
  .news-card h3 {
    font-size: 22px;
  }
}
