@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes airflow {
  0% {
    stroke-dashoffset: 100;
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.6;
  }
}
.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.3s ease ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.3s ease ease-out forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-pulse-soft {
  animation: pulse 2s ease-in-out infinite;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #2c3e50;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: #0d4f8b;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:focus-visible {
  outline: 2px solid #0d4f8b;
  outline-offset: 2px;
}
a:hover {
  color: #083358;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .header-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #0d4f8b;
  display: flex;
  align-items: center;
  gap: 0;
}
.logo:focus-visible {
  outline: 2px solid #0d4f8b;
  outline-offset: 2px;
}
.logo:hover {
  color: #083358;
}
.logo .logo-img {
  flex-shrink: 0;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.footer-col .footer-logo {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}
.footer-col .footer-logo:focus-visible {
  outline: 2px solid #0d4f8b;
  outline-offset: 2px;
}
.footer-col .footer-logo:hover {
  color: #ffffff;
  opacity: 0.92;
}
.footer-col .footer-logo .footer-logo-img {
  flex-shrink: 0;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.nav-toggle {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle:focus-visible {
  outline: 2px solid #0d4f8b;
  outline-offset: 2px;
}
@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #0d4f8b;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-wrapper {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 37, 47, 0.98);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 992px) {
  .nav-wrapper {
    position: static;
    background: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
}
.nav-wrapper.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .nav-menu {
    flex-direction: row;
    gap: 2rem;
  }
}

.nav-menu a {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.125rem;
  padding: 0.5rem 0;
  display: block;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
@media (min-width: 992px) {
  .nav-menu a {
    color: #2c3e50;
    font-size: 1rem;
    padding: 0.5rem 0;
  }
}
.nav-menu a:hover, .nav-menu a.active {
  border-bottom-color: #e67e22;
  color: #e67e22;
}
@media (min-width: 992px) {
  .nav-menu a:hover, .nav-menu a.active {
    color: #0d4f8b;
    border-bottom-color: #0d4f8b;
  }
}

.hero {
  position: relative;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #083358 0%, #0d4f8b 50%, #1a6bb8 100%);
  color: #ffffff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .hero-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 720px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-cta {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:focus-visible {
  outline: 2px solid #0d4f8b;
  outline-offset: 2px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: #e67e22;
  color: #ffffff;
}
.btn-primary:hover {
  background: #d35400;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-secondary:hover {
  background: #ffffff;
  color: #0d4f8b;
}

.btn-outline {
  background: transparent;
  color: #0d4f8b;
  border: 2px solid #0d4f8b;
}
.btn-outline:hover {
  background: #0d4f8b;
  color: #ffffff;
}

.section {
  padding: 5rem 1rem;
}

.section-alt {
  background: #f8f9fa;
}

.section-title {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #083358;
  margin: 0 0 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #5d6d7e;
  font-size: 1.125rem;
}

.card-grid {
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .card-grid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #dfe6e9;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a6bb8, #0d4f8b);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #083358;
}

.card-text {
  margin: 0;
  color: #5d6d7e;
  line-height: 1.75;
}

.site-footer {
  background: #1a252f;
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 1rem 1.5rem;
  margin-top: auto;
}

.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .footer-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h3 {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.25rem 0;
  display: block;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-credit {
  margin: 0.5rem 0 0;
}

.footer-bottom .footer-credit-link {
  color: #eb8b04;
  font-weight: 600;
  padding: 0;
  display: inline;
}
.footer-bottom .footer-credit-link:hover {
  color: #f5a533;
}

.page-header {
  background: linear-gradient(135deg, #083358, #0d4f8b);
  color: #ffffff;
  padding: 3rem 1rem;
  text-align: center;
}

.page-title {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }
}

.contact-grid {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .contact-grid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #2c3e50;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}
.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid #0d4f8b;
  outline-offset: 2px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0d4f8b;
  outline: none;
}

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

.page-header--blog {
  padding: 4rem 1rem;
  background: linear-gradient(160deg, #083358 0%, #0d4f8b 45%, #0d4f8b 100%);
}

.page-header__sub {
  margin: 1rem 0 0;
  opacity: 0.95;
  font-size: 1.125rem;
}

.blog-listing__intro {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
  color: #5d6d7e;
  font-size: 1.125rem;
}

.blog-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}
@media (min-width: 576px) {
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .blog-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #dfe6e9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}
.blog-card__link:focus-visible {
  outline: 2px solid #0d4f8b;
  outline-offset: 2px;
}
.blog-card__link:hover {
  color: inherit;
}
.blog-card__link:hover .blog-card__cta {
  color: #0d4f8b;
  text-decoration: underline;
}

.blog-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  background: linear-gradient(135deg, #0d4f8b 0%, #1a6bb8 100%);
  font-size: 3rem;
}

.blog-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #083358;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.blog-card__excerpt {
  margin: 0 0 1rem;
  color: #5d6d7e;
  font-size: 1rem;
  line-height: 1.75;
  flex: 1;
}

.blog-card__cta {
  font-weight: 600;
  font-size: 0.875rem;
  color: #0d4f8b;
  transition: color 0.2s ease;
}

.container--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.page-header--blog-single {
  padding-bottom: 2rem;
}

.blog-single__back {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.blog-single__back:hover {
  color: #ffffff;
}

.blog-single__title {
  margin-bottom: 0;
}

.blog-single__content .prose {
  font-size: 1.125rem;
  line-height: 1.8;
}
.blog-single__content .prose p {
  margin: 0 0 1.5rem;
  color: #2c3e50;
}
.blog-single__content .prose p:last-child {
  margin-bottom: 0;
}

.blog-single__cta {
  margin: 3rem 0;
}

.blog-single__nav {
  padding-top: 2rem;
  border-top: 1px solid #dfe6e9;
}
.blog-single__nav a {
  font-weight: 500;
}

.blog-intro,
.blog-list {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .blog-intro,
  .blog-list {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.blog-nav-links {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .blog-nav-links {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.blog-nav-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #dfe6e9;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.blog-nav-links a {
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}
.blog-nav-links a:hover {
  background: #0d4f8b;
  color: #ffffff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.text-muted {
  color: #5d6d7e;
}
