
:root {
  --color-primary: #103856;
  --color-primary-dark: #0b2a3f;
  --color-accent: #f2a900;
  --color-bg: #f4f6fb;
  --color-text: #1f2933;
  --color-muted: #6b7280;
  --radius-lg: 1rem;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.25);
}

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

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  min-height: calc(100vh - 230px);
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  display: flex;
  align-items: center;
  z-index: 40;
  transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.site-header.scrolled {
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}


.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 30% 10%, #fbbf24 0, #f2a900 34%, #103856 75%, #0b2a3f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #f9fafb;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.45);
}

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

.brand-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #111827;
}

.brand-text span:last-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--color-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  position: relative;
  transition: color 130ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), #fbbf24);
  transition: width 150ms ease;
}

.nav-link:hover {
  color: var(--color-primary-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-primary-dark);
}

.nav-cta {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--color-accent), #fbbf24);
  color: #111827;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
  transition: transform 130ms ease, box-shadow 130ms ease, filter 130ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--color-primary-dark);
  padding: 0.3rem;
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 1rem;
  right: 1rem;

  background: #0b233d;
  background: linear-gradient(
    135deg,
    rgba(11, 35, 61, 0.98),
    rgba(16, 56, 86, 0.98)
  );  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(148,163,184,0.45);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    max-height .25s ease,
    opacity .2s ease,
    transform .2s ease;
  z-index: 60;
}

.mobile-nav.open {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  color: #e5e7eb;
  text-decoration: none;
  border-bottom: 1px solid rgba(31,41,55,0.9);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: rgba(15,23,42,0.9);
  color: #facc15;
}

.mobile-nav-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(148,163,184,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-nav-icon svg {
  width: 16px;
  height: 16px;
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav-card-text span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f9fafb;
}

.mobile-nav-card-text small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  color: rgba(148,163,184,0.95);
}

.mobile-nav-footer {
  border-top: 1px solid rgba(31,41,55,0.9);
  padding-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.mobile-nav-footer a {
  font-size: 0.8rem;
  color: rgba(148,163,184,0.98);
  text-decoration: none;
}

.mobile-nav-footer a:hover {
  color: #facc15;
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 56, 86, 0.9) 0%, rgba(16, 56, 86, 0.85) 40%, rgba(242, 169, 0, 0.45) 100%);
}

.hero-angle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 210px;
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 60%, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 6.5rem 0 4rem;
}

.hero-inner {
  max-width: 48rem;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.7rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #f9fafb;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(249, 250, 251, 0.9);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;

  justify-content: flex-start;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.5);
  background: rgba(15, 23, 42, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249, 250, 251, 0.95);
  margin-bottom: 1.25rem;
}

.hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #fbbf24;
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.85rem 1.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: transform 130ms ease, box-shadow 130ms ease, background 130ms ease, border-color 130ms ease, color 130ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #fbbf24);
  color: #111827;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.7);
}

.btn-outline {
  background: transparent;
  border-color: rgba(249, 250, 251, 0.7);
  color: #f9fafb;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.6);
}

.section {
  padding: 2rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary-dark);
}

.section-heading p {
  max-width: 34rem;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.1rem 1.1rem;
  text-decoration: none;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);

  display: flex;
  align-items: flex-start;
  gap: 0.9rem;

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

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #f2a900, #ffd470);
  mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,181,0,0);
  box-shadow: 0 18px 40px rgba(15,23,42,0.16);
  background: #f9fafb;
}

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

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #0b233d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 20px;
  height: 20px;
  color: #f5bd45;
}

.service-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: #0b233d;
  margin: 0;
}

.service-card-text {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .service-card {
    padding: 1rem;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.process-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
}

.process-step {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  color: var(--color-primary-dark);
}

.process-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  position: relative;
  margin-top: 3rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(242,169,0,0) 0%,
    rgba(242,169,0,0.65) 20%,
    rgba(242,169,0,0.65) 80%,
    rgba(242,169,0,0) 100%
  );
}

.process-step-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 2.3rem 1.8rem 2rem;
  text-align: center;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  position: relative;
}

.process-step-icon-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;

  background: #0b233d;
  color: #facc15;

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

  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}

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

.process-step-card h3 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.15rem;
  color: #0b233d;
}

.process-step-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b7280;
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(15,23,42,0.14);
}

@media (max-width: 900px) {

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step-card {
    text-align: center;
    padding: 2.2rem 1.6rem 2rem;
  }

  .process-step-icon-badge {
    position: static;
    transform: none;
    margin: 0 auto 1rem;
  }
  
  @media (max-width: 900px) {

  .process-timeline::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      rgba(242,169,0,0),
      rgba(242,169,0,0.6),
      rgba(242,169,0,0)
    );
    z-index: 0;
    pointer-events: none;
  }

  .process-step-card {
    position: relative;
    z-index: 1;
    background: #ffffff;
  }

  .process-step-icon-badge {
    z-index: 2;
    background: #0b233d;
    border: 3px solid #ffffff;
  }
}

}

.stats-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #f9fafb;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.7);
}

.values-section {
  background: linear-gradient(135deg, #f2a900, #ffd470);
}

.values-section .section-heading h2 {
  color: #f9fafb;
}

.values-section .section-heading p {
  color: rgba(249,250,251,0.75);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2rem;
}

.value-card {
  background: rgba(255,255,255,0.96);
  border-radius: 1.4rem;
  padding: 2.2rem 2rem 2.4rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.value-card i {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.3rem 0 0;
  color: #0b233d;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
  max-width: 26rem;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .value-card {
    padding: 1.8rem 1.5rem 2rem;
    text-align: left;
    align-items: flex-start;
  }

  .value-card i {
    margin-bottom: 0.2rem;
  }

  .value-card h3 {
    font-size: 1.05rem;
  }

  .value-card p {
    font-size: 0.93rem;
    line-height: 1.55;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .value-card {
    padding: 1.6rem 1.3rem 1.8rem;
  }

  .value-card p {
    font-size: 0.9rem;
  }
}

.cta-section {
  background: #ffffff;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.cta-inner h2 {
  font-size: 2rem;
  margin: 0;
  color: var(--color-primary-dark);
}

.page-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f172a;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 42, 63, 0.9), rgba(242, 169, 0, 0.45));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  color: #f9fafb;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 3rem;
  align-items: flex-start;
}

.card {
  background: #ffffff;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.5rem 1.4rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
}

.card h3,
.card h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--color-primary-dark);
}

.card p {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.card ul li {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 2.5rem;
}

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

.form-row-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  color: rgba(107, 114, 128, 0.95);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  color: #111827;
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(16, 56, 86, 0.8);
  outline-offset: 1px;
}

.site-footer {
  background: #0b1120;
  color: #e5e7eb;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 4.5rem;
  padding-bottom: 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-left {
  max-width: 34rem;
}

.footer-logo {
  width: 140px;
  margin-bottom: 1rem;
}

.footer-description {
  line-height: 1.6;
  color: rgba(229,231,235,0.9);
}

.footer-heading {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.8);
  margin-bottom: 0.9rem;
}

.footer-link {
  color: rgba(229,231,235,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  display: block;
}

.footer-link:hover {
  color: var(--c
  olor-accent);
}

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.footer-credits {
  display: flex;
  align-items: center;
}

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(229,231,235,0.6);
  text-decoration: none;
}

.footer-credit-link img {
  height: 18px;
  opacity: 0.85;
}

.footer-credit-link:hover {
  color: var(--color-accent);
}

.site-footer a,
.site-footer a:visited,
.site-footer a:hover,
.site-footer a:active {
  color: rgba(229,231,235,0.85);
  text-decoration: none;
}

.footer-small-link {
  font-size: 0.85rem;
  color: rgba(229,231,235,0.75);
}

.footer-small-link:hover {
  color: var(--color-accent);
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.fade-in {
  opacity: 1 !important;
  transform: none !important;
}

.text-muted {
  color: var(--color-muted);
}

.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2rem; }


@media (max-width: 768px) {
  .header-transparent {
    padding: 0.8rem 1rem;
  }

  .nav-logo img {
    height: 38px;
  }

  .nav-links {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex !important;
  }

  .header-transparent.scrolled .nav-toggle svg {
    stroke: #0b233d;
  }

}

.cookie-wave {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 2rem 1.4rem;

  clip-path: none;

  background: linear-gradient(
      90deg,
      #0B3A5B 0%,
      #0F4C6F 25%,
      #155981 45%,
      #D18E21 78%,
      #F2A900 100%
  );
  background-size: 300% 100%;

  opacity: 0;
  transform: translateX(-100%);
  animation: waveIn 1s ease-out forwards;

  z-index: 999999;
  color: white;
}

@keyframes waveIn {
  0% { transform: translateX(-100%); opacity: 0; background-position: 0% 0; }
  50% { opacity: 1; }
  100% { transform: translateX(0); opacity: 1; background-position: 100% 0; }
}

.cookie-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease-in;
  
  background: linear-gradient(
    90deg,
    rgba(11, 58, 91, 0) 0%,
    rgba(11, 58, 91, 0.7) 100%
  );
}

.cookie-wave.wave-out::after {
  opacity: 1;
}

.cookie-wave.wave-out {
  animation: waveOut 1s ease-in forwards;
}

@keyframes waveOut {
  0% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.cookie-wave-content {
  max-width: 360px;
  margin-left: auto;
  text-align: right;

  opacity: 0;
  animation: fadeUp 0.7s ease-out 0.9s forwards;
}

.cookie-wave-content h2 {
  font-size: 1.15rem;
  margin-bottom: .4rem;
  font-weight: 700;
}

.cookie-wave-content p {
  font-size: .85rem;
  line-height: 1.35;
  opacity: .95;
  margin: 0 0 .8rem;
}

.cookie-wave-content a {
  color: #0B3A5B !important;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-wave {
    padding: 1.2rem 1.2rem 1.4rem;
    clip-path: none;
  }

  .cookie-wave-content {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .cookie-wave-content h2 {
    font-size: 1rem;
  }

  .cookie-wave-content p {
    font-size: 0.9rem;
  }

  .cookie-wave-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}


@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.cookie-wave-actions {
  display: flex;
  gap: .6rem;
  justify-content: flex-end;
}

.cw-btn {
  padding: .55rem 1rem;
  font-size: .85rem;
  border-radius: 7px;
  cursor: pointer;
  border: none;
  font-weight: 600;
}

.cw-primary {
  background: linear-gradient(135deg, #0B3A5B, #0F4C6F);
  color: #ffffff;
  border: none;
}

.cw-primary:hover {
  filter: brightness(1.1);
}

.cw-outline {
  background: transparent;
  border: 2px solid #0B3A5B;
  color: #0B3A5B;
}

.cw-outline:hover {
  background: rgba(11, 58, 91, 0.1);
}

.cookie-reopen {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: #0b233d;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  z-index: 1000000;
}

.header-transparent {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50 !important;
  padding: 1.4rem 3rem;
  display: flex;
  justify-content: center;
  transition: 0.35s ease;
  background: transparent;
}

.header-transparent.scrolled {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-transparent.scrolled .nav-item {
  color: #0b233d;
}

.nav-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 8px;

  background: var(--color-accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0b233d;
  text-decoration: none;

  transition: background 0.15s ease;
}

.nav-btn:hover {
  background: #f5bd45;
}

.nav-dropdown {
  position: relative;
}

.nav-item,
.nav-dropdown-toggle {
  text-decoration: none;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;

  color: #ffffff;
  background: transparent;
  border: none;

  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.1rem 0;

  cursor: pointer;
  transition: color 0.2s ease;
}

.header-transparent.scrolled .nav-item,
.header-transparent.scrolled .nav-dropdown-toggle {
  color: #0b233d;
}

.nav-item:hover,
.nav-dropdown-toggle:hover {
  color: #f2a900;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "";
  border: 5px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
  transition: transform 0.15s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: 120%;
  left: 50;
  min-width: 220px;
  padding: 0.5rem 0;

  background: #0b233d;
  background: linear-gradient(
    135deg,
    rgba(11, 35, 61, 0.98),
    rgba(16, 56, 86, 0.98)
  );
  border-radius: 0.75rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 60;
}

.nav-dropdown-link {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: #e5e7eb;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-link:hover {
  background: linear-gradient(
    90deg,
    rgba(242, 169, 0, 0.14),
    rgba(16, 56, 86, 0.9)
  );
  color: #fefce8;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: translateY(2px) rotate(180deg);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}

.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: block;
}

.hero-full-bg {
  position: absolute;
  inset: 0;
}

.hero-full-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.6);
}

.hero-sub {
  display: inline-block;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-video.visible {
  opacity: 1;
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(16, 56, 86, 0.85) 0%,
    rgba(16, 56, 86, 0.6) 35%,
    rgba(242, 169, 0, 0.45) 100%
  );
}

.hero-title-center {
  font-family: "Barlow Condensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(3rem, 5.2vw, 4.4rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: #f9fafb;
}

.hero-text-center {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  max-width: 720px;
  margin: 0 auto 2.2rem;
}

.hero-btns {
  display: inline-flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero-full-content {
    padding: 1.5rem;
  }

  .hero-title-center {
    font-size: 2rem;
  }

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

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns a {
    width: 100%;
    text-align: center;
  }
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.75rem 1.8rem;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--color-accent),
    #f5bd45
  );

  color: #0b233d;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary-large:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

.btn-outline-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.7rem 1.7rem;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.8);

  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;

  transition: background .15s ease, transform .15s ease;
}

.btn-outline-large:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  column-gap: 2.5rem;
  row-gap: 2rem;
  margin-bottom: 3rem;
}

.footer-left {
  max-width: 34rem;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-description {
  max-width: 32rem;
  line-height: 1.6;
}

.footer-middle {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  justify-self: start;
}

.no-wrap {
  white-space: nowrap;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 1.4rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-right,
  .footer-middle,
  .footer-left {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

.about-section {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 4rem;
}

.about-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  color: #444;
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 1.8rem;
  }
  .about-text p {
    font-size: 1rem;
  }
  .about-image-bg {
    display: none;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgb(0 0 0 / 12%);
  position: relative;
  z-index: 2;
  display: block;
}

.about-image-bg {
  position: absolute;
  inset: 0;
  background: #e4b23266;
  border-radius: 14px;
  z-index: 1;
  opacity: 0.7;
  transform: translate(16px, 16px);
}


@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image-wrapper {
    margin-top: 2rem;
  }
  .about-image-bg {
    bottom: -20px;
  }
}

.hero-full-content.hero-content-visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-intro {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0b233d;
  opacity: 1;
  transition: opacity 0.9s ease;
  perspective: 900px;
  overflow: hidden;
}

.logo-intro.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  display: none;
}


.logo-box {
  position: relative;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
  animation: powerSpin 1.6s cubic-bezier(.25,.8,.25,1) forwards;
}

.logo-box img {
  width: 240px;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(0,0,0,0.6));
}

.screen-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 25%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0) 75%
  );
  transform: rotate(15deg);
  animation: shineSweep 2.3s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .screen-shine {
    display: none;
  }
}

@keyframes powerSpin {
  0% {
    transform: rotateY(-120deg) scale(0.8);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes shineSweep {
  0%   { transform: translate(-40%, -40%) rotate(15deg); }
  100% { transform: translate(40%, 40%) rotate(15deg); }
}

.logo-intro.no-logo .logo-box {
  display: none;
}

.logo-intro.no-logo {
  background: #050e1a;
}

.hero-name {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(3rem, 6vw, 4.6rem);
}

.hero-slogan,
.hero-services {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.45;

  margin-bottom: 2rem;
}

.hero-full-content .hero-name,
.hero-full-content .hero-slogan,
.hero-full-content .hero-services,
.hero-full-content .hero-actions {
  opacity: 0;
}

.hero-full-content.hero-content-visible .hero-name {
  animation: heroSlideInLeft 1.1s cubic-bezier(0.18, 0.75, 0.15, 1.05) 0.1s forwards;
}

.hero-full-content.hero-content-visible .hero-slogan {
  animation: heroSlideInRight 1.1s cubic-bezier(0.18, 0.75, 0.15, 1.05) 0.9s forwards;
}

.hero-full-content.hero-content-visible .hero-services {
  animation: heroRiseIn 1.1s cubic-bezier(0.18, 0.75, 0.15, 1.05) 1.8s forwards;
}

.hero-full-content.hero-content-visible .hero-actions {
  animation: heroButtonsIn 0.9s ease-out 4.0s forwards;
}

.hero-full-content {
  position: absolute;
  left: 6rem;
  bottom: 6rem;
  max-width: 520px;
  text-align: left;
  color: white;
  z-index: 4;
}

@media (max-width: 768px) {
  .hero-full-content {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 3.5rem;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }
}

@keyframes heroSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px) skewX(-5deg);
  }
  60% {
    opacity: 1;
    transform: translateX(4px) skewX(1deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
}

@keyframes heroSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(40px) skewX(5deg);
  }
  60% {
    opacity: 1;
    transform: translateX(-4px) skewX(-1deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
}

@keyframes heroRiseIn {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.9);
  }
  65% {
    opacity: 1;
    transform: translateY(-3px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroButtonsIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-sep {
  opacity: 0.6;
}

@media (max-width: 768px) {

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
  }

  .footer-credits {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

@media (max-width: 600px) {
  .card {
    padding: 1.4rem 1.3rem;
  }

  .card h2,
  .card h3 {
    line-height: 1.25;
  }

  .card p,
  .card ul li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .service-detail .btn-primary-large {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.page-hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.cta-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 768px) {
  .page-hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.service-detail {
  align-items: stretch;
}

.service-detail > .fade-in {
  height: 100%;
}

.service-detail .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
