:root {
  --brand-amber: #d69013;
  --text-main: #172033;
  --text-soft: #5d677a;
  --card-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --card-shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.14);
  --glass-border: rgba(255, 255, 255, 0.2);
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-400.ttf") format("truetype");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-500.ttf") format("truetype");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-600.ttf") format("truetype");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-700.ttf") format("truetype");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-800.ttf") format("truetype");
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-main);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 45%, #fff6e6 100%);
}

a {
  text-decoration: none;
}

.section-space {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section,
.about-section,
.services-section,
.contact-section {
  scroll-margin-top: 6.5rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(217, 119, 6, 0.1);
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3b235, var(--brand-amber));
  color: #fff;
  box-shadow: 0 12px 24px rgba(214, 144, 19, 0.3);
  font-size: 1.35rem;
}

.brand-mark.large {
  width: 52px;
  height: 52px;
  font-size: 1.5rem;
}

.brand-logo {
  display: block;
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  display: block;
  max-height: 100px;
  width: auto;
  object-fit: contain;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(90deg, #c87c00, #6f4617);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
}

.nav-link {
  color: #5b6472;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--brand-amber);
}

.nav-link.active {
  color: var(--brand-amber);
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-amber);
}

.btn-brand {
  background: linear-gradient(90deg, #e5a11c, var(--brand-amber));
  color: #fff;
  border: 0;
  padding: 0.85rem 1.4rem;
  border-radius: 1rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(214, 144, 19, 0.28);
}

.btn-brand:hover {
  color: #fff;
  background: linear-gradient(90deg, #cb8308, #a66200);
}

.hero-section {
  padding: 9.5rem 0 6rem;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-bg, .contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* .hero-bg {
  background-image: url("../images/hero.jpg");
} */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(92, 49, 1, .95) 0%, rgba(146, 86, 5, .88) 45%, rgba(15, 46, 91, .84) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, rgba(55, 30, 2, .45) 100%);
}

.hero-orb, .services-orb, .section-blur, .footer-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
}

.hero-orb-one {
  top: 8rem;
  right: 5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(251, 191, 36, .18);
}

.hero-orb-two {
  bottom: 3rem;
  left: 4rem;
  width: 22rem;
  height: 22rem;
  background: rgba(59, 130, 246, .18);
}

.hero-content {
  z-index: 1;
}

.hero-badge, .section-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero-badge {
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--glass-border);
  color: #fff;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  color: #fff;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.6rem;
}

.hero-title span, .contact-title span {
  background: linear-gradient(90deg, #ffd66b, #fff1c2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: #fef3c7;
  max-width: 52rem;
  margin: 0 auto 2.2rem;
  font-size: 1.2rem;
  line-height: 1.75;
}

.hero-actions .btn, .btn-contact-primary, .btn-contact-secondary {
  border-radius: 1.2rem;
  padding: 1rem 1.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
}

.btn-hero-primary {
  color: #7c4a00;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.btn-hero-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .32);
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  color: #fff;
   border: 2px solid rgba(255, 255, 255, .32);
}

.hero-stats {
  margin-top: 3.5rem;
}

.stat-card, .contact-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 1.4rem;
  padding: 1.5rem;
  height: 100%;
}

.stat-value {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.stat-label {
  color: #fde68a;
  font-size: .95rem;
}

.about-section {
  background: #fff;
}

.section-blur-top {
  top: -4rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(251, 191, 36, .16);
}

.section-blur-bottom {
  left: -5rem;
  bottom: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(59, 130, 246, .12);
}

.chip-amber {
  background: linear-gradient(90deg, #e3a11c, #d69013);
  color: #fff;
  box-shadow: 0 16px 34px rgba(214, 144, 19, .28);
}

.chip-blue {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 99, 235, .25);
}

.chip-light {
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--glass-border);
  color: #fff;
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 1.2rem 0 1.25rem;
}

.section-text, .about-copy p {
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.85;
}

.quote-card {
  margin-top: 2rem;
  padding: 2rem;
  border-left: 4px solid var(--brand-amber);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #fff8e7, rgba(255, 247, 237, .8));
  box-shadow: var(--card-shadow);
}

.quote-card i {
  color: var(--brand-amber);
  font-size: 2rem;
  margin-bottom: .85rem;
}

.quote-card p {
  margin: 0;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 600;
}

.about-visual {
  position: relative;
}

.about-visual-backdrop {
  position: absolute;
  inset: -1.5rem 1.5rem 1.5rem -1.5rem;
  border-radius: 1.8rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, .35), rgba(96, 165, 250, .32));
}

.about-image {
  position: relative;
  z-index: 1;
  border-radius: 1.8rem;
  box-shadow: var(--card-shadow-strong);
}

.compliance-card {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 1.3rem;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--card-shadow);
}

.compliance-icon {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3b235, var(--brand-amber));
  color: #fff;
  font-size: 1.4rem;
}

.compliance-value {
  font-size: 1.65rem;
  font-weight: 800;
}

.compliance-label {
  color: var(--text-soft);
  font-size: .95rem;
}

.services-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 45%, #fff7e6 100%);
}

.services-orb-left {
  top: 6rem;
  left: 4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(124, 58, 237, .16);
}

.services-orb-right {
  right: 4rem;
  bottom: 4rem;
  width: 18rem;
  height: 18rem;
  background: rgba(251, 191, 36, .16);
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 1.8rem;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-strong);
  border-color: transparent;
}

.service-card.premium {
  border: 2px solid rgba(251, 191, 36, .8);
  background: linear-gradient(135deg, #fffdf6 0%, #ffffff 48%, #fff8e5 100%);
}

.service-card.premium::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, .18), rgba(217, 119, 6, .08));
  border-bottom-left-radius: 100%;
}

.service-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: center;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .14);
  flex-shrink: 0;
}

.service-icon.premium {
  background: linear-gradient(135deg, #facc15, #d97706);
}

.service-icon img {
  width: 36px;
  height: 36px;
  display: block;
}

.service-icon-symbol {
  font-size: 1.4rem;
  line-height: 1;
}

.service-heading {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.service-title {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .65rem;
  border-radius: 999px;
  color: #fff;
  font-size: .72rem;
  background: linear-gradient(90deg, #f3b235, #c27907);
  vertical-align: middle;
}

.service-description {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.service-description .service-scope-title {
  margin-top: 1rem;
}

.service-description .service-scope {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.service-description .service-scope ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.service-description .service-scope li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .8rem;
  color: #374151;
  font-size: .95rem;
  line-height: 1.7;
}

.service-description .service-scope li::before {
  content: "\f26a";
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 1.1rem;
  line-height: 1;
  color: #10b981;
  flex: 0 0 1.2em;
  margin-top: .15rem;
}

.service-description .service-scope i {
  display: none;
}

.service-scope-title {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  color: #6b7280;
  font-weight: 700;
  margin-bottom: .9rem;
}

.service-scope {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.service-scope li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .8rem;
  color: #374151;
  font-size: .95rem;
  line-height: 1.7;
}

.service-scope li::before {
  content: "\f26a";
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 1.1rem;
  line-height: 1;
  color: #10b981;
  flex: 0 0 1.2em;
  margin-top: .15rem;
}

.service-scope i {
  display: none;
}

.service-scope span {
  display: block;
}

.service-compliance {
  border-top: 1px solid rgba(226, 232, 240, .9);
  padding-top: 1rem;
  display: flex;
  gap: .6rem;
  color: #6b7280;
  font-size: .82rem;
  font-style: italic;
  line-height: 1.7;
}

.service-compliance i {
  color: #3b82f6;
  margin-top: .1rem;
}

.contact-section {
  color: #fff;
}

.contact-bg {
  background-image: url("../images/contact.jpg");
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 43, 92, .95) 0%, rgba(63, 30, 107, .9) 52%, rgba(106, 49, 7, .94) 100%);
}

.contact-text {
  max-width: 44rem;
  margin: 0 auto 2.2rem;
  color: #dbeafe;
  font-size: 1.14rem;
  line-height: 1.85;
}

.btn-contact-primary {
  background: #fff;
  color: #16377a;
  box-shadow: 0 20px 50px rgba(255, 255, 255, .18);
}

.btn-contact-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
}

.contact-card-title {
  font-weight: 700;
  margin-bottom: .35rem;
}

.contact-card-text {
  color: #dbeafe;
  font-size: .95rem;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: .95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.contact-card-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-card-icon.amber {
  background: linear-gradient(135deg, #f3b235, var(--brand-amber));
}

.contact-card-icon.blue {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.contact-card-icon.green {
  background: linear-gradient(135deg, #34d399, #059669);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 2rem;
  background: linear-gradient(135deg, #111827 0%, #0f172a 50%, #111827 100%);
  color: #cbd5e1;
}

.footer-blur-right {
  top: -3rem;
  right: -4rem;
  width: 22rem;
  height: 22rem;
  background: rgba(217, 119, 6, .08);
}

.footer-blur-left {
  left: -4rem;
  bottom: -4rem;
  width: 22rem;
  height: 22rem;
  background: rgba(37, 99, 235, .08);
}

.footer-top {
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid rgba(51, 65, 85, .9);
}

.footer-brand {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-brand-sub, .footer-copy {
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 1.25rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #e2e8f0;
  font-weight: 600;
}

.footer-links a:hover {
  color: #fbbf24;
}

.legal-card {
  padding: 2rem;
  border-radius: 1.4rem;
  background: linear-gradient(90deg, rgba(120, 53, 15, .18), rgba(30, 58, 138, .18));
  border: 1px solid rgba(217, 119, 6, .12);
  box-shadow: var(--card-shadow);
}

.legal-card p {
  color: #cbd5e1;
  line-height: 1.8;
}

.footer-shield {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-top: .15rem;
}

.footer-bottom {
  padding-top: 2rem;
}

.footer-bottom p {
  margin-bottom: .35rem;
  color: #94a3b8;
}

@media (max-width: 991.98px) {
  .compliance-card {
    position: static;
    margin-top: 1.25rem;
  }

  .about-visual-backdrop {
    inset: -1rem 1rem 1rem -1rem;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 5.75rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 7.5rem;
  }

  .section-space {
    padding: 4.5rem 0;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-text, .contact-text {
    font-size: 1rem;
  }

  .footer-links {
    justify-content: start;
  }

  .nav-link.active {
    color: #5b6472;
    position: static;
  }

  .nav-link.active::after {
    display: none;
  }
}

.whatsapp-chat {
  position: fixed !important;
  bottom: 30px !important;
  left: 30px !important;
  z-index: 99 !important;
}
