/* ==========================================================================
   Golden Flagmast International — site stylesheet
   Design tokens
   ========================================================================== */
:root {
  /* Added Gold Palette for Text & Accents */
  --gold-500: #D4AF37;
  --gold-600: #B8860B;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);

  /* Core Colors */
  --blue-700: #AA771C;
  --blue-600: #B8860B;
  --blue-500: #D4AF37;

  --blue-050: #EEF2FF;
  --orange-600: #E8621B;
  --orange-500: #FF7A3D;
  --orange-050: #FFF1E7;
  --green-500: #17A672;
  --green-050: #E7F8F1;
  --purple-500: #7C5CFF;
  --purple-050: #F1EEFF;

  --navy-950: #0A1330;
  --navy-900: #101B45;

  --ink: #101828;
  --slate-700: #4B5468;
  --slate-500: #7B8398;
  --line: #E7EAF3;
  --bg-soft: #F5F7FD;
  --white: #FFFFFF;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 45px -20px rgba(16, 27, 69, .22);
  --shadow-card: 0 14px 32px -16px rgba(16, 27, 69, .16);

  --font-display: "Plus Jakarta Sans", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
}

::selection {
  background: var(--blue-050);
  color: var(--blue-700);
}

/* Focus visibility (accessibility floor) */
a:focus-visible,
button:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

.container {
  max-width: 1220px;
}

/* ==========================================================================
   Top info bar
   ========================================================================== */
.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .75);
  font-size: .82rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
}

.topbar-contact {
  display: flex;
  gap: .5rem;
}

.topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.topbar-chip svg {
  width: 15px;
  height: 15px;
  color: var(--orange-500);
}

.topbar-note {
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .01em;
}


/* ==========================================================================
   Header / navigation — floating rounded pill bar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: var(--white);
  padding: 0;
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.navbar-pill {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0.8rem 0;
  flex-wrap: wrap;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.brand-mark {
  width: 90px;
  /* height: 40px; */
  border-radius: 12px;
  /* background: linear-gradient(135deg, #E63946 0%, #D62828 100%); */
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
  /* box-shadow: 0 4px 12px rgba(214, 40, 40, 0.25); */
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.brand-text small {
  color: var(--slate-500);
  font-size: .7rem;
  letter-spacing: .01em;
}

.navbar-nav .nav-link {
  color: var(--slate-700);
  font-size: .92rem;
  font-weight: 600;
  padding: .6rem 1rem !important;
  border-radius: 999px;
  position: relative;
  transition: color .15s ease, background .15s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--blue-600);
  background: var(--blue-050);
}

.navbar-nav .nav-link.active {
  color: var(--blue-600);
  background: var(--blue-050);
}

.navbar-toggler {
  border: none;
  padding: .4rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(16,27,69,0.85)' stroke-width='2.2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: .5rem;
  margin-top: .6rem;
}

.dropdown-item {
  color: var(--slate-700);
  font-size: .9rem;
  font-weight: 500;
  border-radius: 10px;
  padding: .6rem .9rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--blue-050);
  color: var(--blue-600);
}

.dropdown-divider {
  border-color: var(--line);
  margin: .4rem 0;
}

.btn-cta {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  border: 1px solid transparent;
  color: var(--white) !important;
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1.55rem;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 12px 24px -10px rgba(36, 84, 255, .55);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -10px rgba(36, 84, 255, .6);
  color: var(--white);
}

.btn-outline-cta {
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  font-size: .9rem;
  padding: .68rem 1.5rem;
  border-radius: 999px;
  transition: border-color .15s ease, color .15s ease;
}

.btn-outline-cta:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
}

/* ==========================================================================
   Hero — light split layout with floating badges
   ========================================================================== */
.hero {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background: var(--bg-soft);
}

.hero-decor {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
}

.hero-decor-1 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 30% 30%, var(--orange-050), transparent 70%);
  top: -80px;
  right: 8%;
}

.hero-decor-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, var(--blue-050), transparent 70%);
  bottom: -60px;
  left: 2%;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue-050);
  color: var(--blue-600);
  font-size: .8rem;
  font-weight: 700;
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}

.eyebrow-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 1.3rem;
  max-width: 16ch;
}

.hero-title .accent-text {
  color: var(--blue-600);
}

.hero-lede {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--slate-700);
  max-width: 50ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .85rem;
  color: var(--slate-500);
}

.hero-trust strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
}

.hero-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-visual-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 2;
}

.hero-badge-top {
  top: -1.2rem;
  right: -1.2rem;
}

.hero-badge-bottom {
  bottom: -1.4rem;
  left: -1.4rem;
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-icon svg {
  width: 22px;
  height: 22px;
}

.hero-badge-icon.icon-orange {
  background: var(--orange-050);
  color: var(--orange-600);
}

.hero-badge-icon.icon-blue {
  background: var(--blue-050);
  color: var(--blue-600);
}

.hero-badge-figure {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.1;
}

.hero-badge-label {
  font-size: .74rem;
  color: var(--slate-500);
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .hero-badge {
    padding: .7rem .9rem;
  }

  .hero-badge-top {
    top: -1rem;
    right: .5rem;
  }

  .hero-badge-bottom {
    bottom: -1rem;
    left: .5rem;
  }
}

/* Stat strip below hero */
.stat-strip {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
  overflow: hidden;
}

.stat-cell {
  padding: 1.7rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 1px solid var(--line);
}

.stat-cell:first-child {
  border-left: none;
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.icon-blue {
  background: var(--blue-050);
  color: var(--blue-600);
}

.icon-orange {
  background: var(--orange-050);
  color: var(--orange-600);
}

.icon-green {
  background: var(--green-050);
  color: var(--green-500);
}

.icon-purple {
  background: var(--purple-050);
  color: var(--purple-500);
}

.stat-figure {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.15;
  display: block;
}

.stat-label {
  font-size: .8rem;
  color: var(--slate-500);
  line-height: 1.3;
  display: block;
  margin-top: .15rem;
}

@media (max-width: 767.98px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius-sm);
  }

  .stat-cell:nth-child(3) {
    border-left: none;
  }

  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

/* ==========================================================================
   Sections — shared rhythm
   ========================================================================== */
.section {
  padding: 5.5rem 0;
}

.section-center {
  text-align: center;
}

.section-center .section-body {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  line-height: 1.24;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.section-title-light {
  color: var(--white);
}

.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate-700);
  max-width: 54ch;
  margin-bottom: 1rem;
}

.section-body-light {
  color: rgba(255, 255, 255, .8);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--blue-600);
}

.text-link:hover {
  color: var(--blue-700);
}

/* About intro */
.about-visual {
  position: relative;
}

.about-visual-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-visual-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: -1.2rem;
  bottom: -1.4rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  max-width: 250px;
}

.about-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-050);
  color: var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-icon svg {
  width: 22px;
  height: 22px;
}

.about-badge-text {
  font-size: .84rem;
  color: var(--slate-700);
  font-weight: 600;
  line-height: 1.35;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.6rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .95rem;
  color: var(--slate-700);
  line-height: 1.5;
}

.check-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

.check-mark svg {
  width: 13px;
  height: 13px;
}

/* Services / why-invest cards */
.why-invest {
  background: var(--bg-soft);
}

.panel {
  height: 100%;
  padding: 2.1rem 1.8rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -18px rgba(16, 27, 69, .22);
}

.panel-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}

.panel-icon {
  width: 26px;
  height: 26px;
}

.panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: .6rem;
}

.panel-body {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--slate-700);
  margin: 0;
}

/* Featured project — deep blue rounded panel */
.featured-project {
  background: var(--bg-soft);
}

.featured-card {
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
  border-radius: var(--radius-lg);
  padding: 3.2rem;
  position: relative;
  overflow: hidden;
}

.featured-card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 61, .18), transparent 70%);
  top: -140px;
  right: -100px;
}

.featured-inner {
  position: relative;
  z-index: 1;
}

.chip-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.chip-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.fact-item {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.fact-label {
  font-size: .72rem;
  letter-spacing: .02em;
  color: var(--orange-500);
  text-transform: uppercase;
  font-weight: 700;
}

.fact-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--white);
  line-height: 1.35;
}

@media (max-width: 575.98px) {
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    padding: 2rem 1.5rem;
  }
}

/* Guarantees — checklist grid with colored icon badges */
.guarantees {
  background: var(--white);
}

.guarantee-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  height: 100%;
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 22px;
  height: 22px;
}

.guarantee-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--ink);
  margin-bottom: .4rem;
}

.guarantee-body {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--slate-700);
  margin: 0;
}

/* CTA banner */
.cta-banner {
  padding: 0 0 6rem;
  background: var(--white);
}

.cta-card {
  background: linear-gradient(120deg, var(--blue-600), var(--blue-700) 70%);
  border-radius: var(--radius-lg);
  padding: 3.2rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
  bottom: -140px;
  right: 6%;
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .25);
  top: -60px;
  left: 10%;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: .6rem;
  position: relative;
  z-index: 1;
}

.cta-body {
  color: rgba(255, 255, 255, .85);
  margin: 0;
  max-width: 46ch;
  position: relative;
  z-index: 1;
}

.cta-card .btn-cta {
  background: var(--white);
  color: var(--blue-700) !important;
  box-shadow: 0 12px 24px -10px rgba(8, 14, 35, .35);
  position: relative;
  z-index: 1;
}

.cta-card .btn-cta:hover {
  background: var(--orange-050);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .7);
  padding-top: 4.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.brand-mark-lg {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}

.brand-text-lg {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-about {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 40ch;
}

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.4rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  transition: background .15s ease;
}

.footer-social a:hover {
  background: var(--blue-600);
}

.footer-heading {
  font-family: var(--font-display);
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .88rem;
}

.footer-links li,
.footer-contact li {
  margin-bottom: .75rem;
  line-height: 1.5;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, .65);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.4rem 0 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 12px 24px -8px rgba(36, 84, 255, .5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}