@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInDown {
  animation: fadeInDown 0.8s ease-out;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out;
}

.animate-slideInUp {
  animation: slideInUp 0.5s ease-out;
}

.animate-slideInDown {
  animation: slideInDown 0.5s ease-out;
}

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

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

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-stagger-1 {
  animation-delay: 0.1s;
}

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

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

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

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.125rem;
}
@media (min-width: 1024px) {
  h5 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1rem;
}
@media (min-width: 1024px) {
  h6 {
    font-size: 1.125rem;
  }
}

p {
  margin-bottom: 1rem;
  color: #6b7280;
}

a {
  color: #013a6d;
  text-decoration: none;
  transition: color 250ms ease-in-out;
}
a:hover {
  color: rgb(1.4636363636, 84.8909090909, 159.5363636364);
}

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

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

section {
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  white-space: nowrap;
  padding: 1rem 3rem;
  border-radius: 0.75rem;
  font-size: 1rem;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background: #013a6d;
  color: white;
}
.btn-primary:hover {
  background: rgb(0.7681818182, 44.5545454545, 83.7318181818);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-secondary {
  background: #c9a85f;
  color: white;
}
.btn-secondary:hover {
  background: #8f6827;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-outline {
  background: transparent;
  border: 2px solid #013a6d;
  color: #013a6d;
}
.btn-outline:hover {
  background: #013a6d;
  color: white;
}
.btn-white {
  background: white;
  color: #013a6d;
}
.btn-white:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-large {
  padding: 1.5rem 4rem;
  font-size: 1.125rem;
}
.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 3rem;
}
.card-hover {
  transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
.badge-primary {
  background: rgba(1, 58, 109, 0.1);
  color: #013a6d;
}
.badge-secondary {
  background: rgba(201, 168, 95, 0.1);
  color: #8f6827;
}
.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

input,
textarea,
select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: all 250ms ease-in-out;
  background: #ffffff;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #013a6d;
  box-shadow: 0 0 0 3px rgba(1, 58, 109, 0.1);
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #9ca3af;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #9ca3af;
}

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

select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 20px;
  padding-right: 4rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1f2937;
}

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

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

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

.text-primary {
  color: #013a6d;
}

.text-secondary {
  color: #6b7280;
}

.bg-primary {
  background: #ffffff;
}

.bg-secondary {
  background: #f9fafb;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.5rem;
}

.pt-2 {
  padding-top: 1rem;
}

.pt-3 {
  padding-top: 1.5rem;
}

.pt-4 {
  padding-top: 2rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.5rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.pb-3 {
  padding-bottom: 1.5rem;
}

.pb-4 {
  padding-bottom: 2rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 250ms ease-in-out;
}
.header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header__logo {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #013a6d;
}
.header__logo img {
  height: 50px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 1rem;
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
}
.header__nav a {
  color: #1f2937;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #013a6d;
  transition: width 250ms ease-in-out;
}
.header__nav a:hover {
  color: #013a6d;
}
.header__nav a:hover::after {
  width: 100%;
}
.header__nav a.current-menu-item {
  color: #013a6d;
}
.header__nav a.current-menu-item::after {
  width: 100%;
}
.header__nav .dropdown {
  position: relative;
}
.header__nav .dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}
.header__nav .dropdown .dropdown-toggle svg {
  transition: transform 250ms ease-in-out;
}
.header__nav .dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}
.header__nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__nav .dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  min-width: 480px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 250ms ease-in-out;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
}
.header__nav .dropdown .dropdown-menu a {
  display: block;
  padding: 1rem 1.5rem;
  color: #1f2937;
  white-space: nowrap;
  border-radius: 0.5rem;
  transition: all 250ms ease-in-out;
}
.header__nav .dropdown .dropdown-menu a::after {
  display: none;
}
.header__nav .dropdown .dropdown-menu a:hover {
  background: #f9fafb;
  color: #013a6d;
  transform: translateX(4px);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__actions .btn {
  display: none;
}
@media (min-width: 1024px) {
  .header__actions .btn {
    display: inline-flex;
  }
}
.header__mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1024px) {
  .header__mobile-toggle {
    display: none;
  }
}
.header__mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #013a6d;
  margin: 5px 0;
  transition: all 250ms ease-in-out;
  border-radius: 0.375rem;
}
.header__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.header__mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem 2rem 4rem;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 250ms ease-in-out;
  pointer-events: none;
  overflow-y: auto;
  height: 100vh;
}
@media (min-width: 1024px) {
  .header__mobile-menu {
    display: none;
  }
}
.header__mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.header__mobile-menu::-webkit-scrollbar {
  width: 6px;
}
.header__mobile-menu::-webkit-scrollbar-track {
  background: #f9fafb;
}
.header__mobile-menu::-webkit-scrollbar-thumb {
  background: #f3f4f6;
  border-radius: 9999px;
}
.header__mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}
.header__mobile-menu nav > a,
.header__mobile-menu nav > .dropdown {
  color: #1f2937;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
  transition: all 250ms ease-in-out;
}
.header__mobile-menu nav > a:hover, .header__mobile-menu nav > a.active,
.header__mobile-menu nav > .dropdown:hover,
.header__mobile-menu nav > .dropdown.active {
  color: #013a6d;
}
.header__mobile-menu nav > a:hover, .header__mobile-menu nav > a.active {
  padding-left: 0.5rem;
}
.header__mobile-menu nav > .dropdown {
  border-bottom: 1px solid #f3f4f6;
}
.header__mobile-menu nav > .dropdown .dropdown-toggle {
  display: block;
  color: #1f2937;
  font-weight: 500;
  pointer-events: none;
  cursor: default;
}
.header__mobile-menu nav > .dropdown .dropdown-toggle::after {
  display: none !important;
}
.header__mobile-menu nav > .dropdown .dropdown-toggle svg {
  display: none;
}
.header__mobile-menu nav > .dropdown .dropdown-menu {
  position: static !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-top: 0.5rem !important;
  padding-left: 1rem !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  min-width: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.header__mobile-menu nav > .dropdown .dropdown-menu a {
  display: block;
  padding: 0.5rem 0 !important;
  color: rgb(67.7674418605, 89.6279069767, 120.2325581395) !important;
  border-bottom: none !important;
  font-size: 1rem;
  font-weight: 400;
  transition: all 250ms ease-in-out;
}
.header__mobile-menu nav > .dropdown .dropdown-menu a::after {
  display: none !important;
}
.header__mobile-menu nav > .dropdown .dropdown-menu a:hover, .header__mobile-menu nav > .dropdown .dropdown-menu a.active {
  color: #013a6d !important;
  padding-left: 0.25rem !important;
  background: transparent !important;
}
.header__mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 3rem;
}

.footer {
  background: linear-gradient(135deg, #013a6d 0%, rgb(0.7681818182, 44.5545454545, 83.7318181818) 100%);
  color: white;
  padding: 6rem 0 2rem;
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__main {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer__about .footer__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.footer__about .footer__logo img {
  max-width: 150px;
  height: auto;
  display: block;
}
.footer__about h3 {
  color: white;
  margin-bottom: 1.5rem;
}
.footer__about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}
.footer__about .social-links {
  display: flex;
  gap: 1rem;
}
.footer__about .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: all 250ms ease-in-out;
}
.footer__about .social-links a:hover {
  background: #013a6d;
  transform: translateY(-3px);
}
.footer__about .social-links a svg {
  width: 20px;
  height: 20px;
}
.footer__links h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links ul li {
  margin-bottom: 1rem;
}
.footer__links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 250ms ease-in-out;
  display: inline-block;
}
.footer__links ul li a:hover {
  color: white;
  transform: translateX(0.5rem);
}
.footer__contact h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.footer__contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer__contact .contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #c9a85f;
}
.footer__contact .contact-item a {
  color: rgba(255, 255, 255, 0.7);
}
.footer__contact .contact-item a:hover {
  color: white;
}
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}
@media (min-width: 768px) {
  .footer__bottom .container {
    flex-direction: row;
  }
}
.footer__bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom p {
    text-align: left;
  }
}
.footer__bottom .footer-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 991px) {
  .footer__bottom .footer-links {
    display: none;
  }
}
.footer__bottom .footer-links ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}
.footer__bottom .footer-links ul li {
  list-style: none;
}
.footer__bottom .footer-links ul li a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 250ms ease-in-out;
}
.footer__bottom .footer-links ul li a:hover {
  color: white;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 125px;
  background: linear-gradient(135deg, #013a6d 0%, rgb(0.7681818182, 44.5545454545, 83.7318181818) 100%);
  overflow: hidden;
}
@media (max-width: 991px) {
  .hero {
    padding-top: 115px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
    gap: 9rem;
  }
}
.hero__text {
  color: white;
}
.hero__text .badge {
  background: rgba(201, 168, 95, 0.2);
  color: rgb(213.8691588785, 188.7336448598, 133.1308411215);
  margin-bottom: 2rem;
  display: inline-flex;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 95, 0.3);
  padding: 0.5rem 2rem;
  font-size: 0.875rem;
}
.hero__text .badge svg {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
}
.hero__text h1 {
  color: white;
  margin-bottom: 2rem;
  line-height: 1.15;
  font-size: 2.25rem;
}
@media (min-width: 1024px) {
  .hero__text h1 {
    font-size: 3.5rem;
  }
}
.hero__text h1 span {
  position: relative;
}
.hero__text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 550px;
}
.hero__text .hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero__text .hero__buttons .btn {
  padding: 1.5rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .hero__text .hero__buttons .btn {
    padding: 1.5rem 4rem;
  }
}
.hero__visual {
  position: relative;
  display: none;
}
@media (min-width: 1024px) {
  .hero__visual {
    display: block;
  }
}
.hero__visual .visual-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  padding: 4rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  position: relative;
}
.hero__visual .visual-card__badges {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero__visual .visual-card__badges .badge-item {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__visual .visual-card__badges .badge-item .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #013a6d, rgb(1.4636363636, 84.8909090909, 159.5363636364));
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.hero__visual .visual-card__badges .badge-item .icon svg {
  width: 24px;
  height: 24px;
  color: white;
}
.hero__visual .visual-card__badges .badge-item .content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.25rem 0;
}
.hero__visual .visual-card__badges .badge-item .content p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}
.hero__visual .visual-card .stats-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 2px solid #f3f4f6;
}
.hero__visual .visual-card .stats-grid .stat-item {
  text-align: center;
}
.hero__visual .visual-card .stats-grid .stat-item .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c9a85f;
  margin-bottom: 0.25rem;
}
.hero__visual .visual-card .stats-grid .stat-item .label {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}
.hero__visual .hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__visual .hero-decoration .decoration-circle {
  position: absolute;
  border-radius: 9999px;
  border: 2px solid rgba(201, 168, 95, 0.2);
}
.hero__visual .hero-decoration .decoration-circle.circle-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  animation: float 8s ease-in-out infinite;
  background: radial-gradient(circle, rgba(201, 168, 95, 0.05), transparent);
}
.hero__visual .hero-decoration .decoration-circle.circle-2 {
  top: 60%;
  right: 8%;
  width: 100px;
  height: 100px;
  animation: float 6s ease-in-out infinite reverse;
  background: radial-gradient(circle, rgba(1.4636363636, 84.8909090909, 159.5363636364, 0.05), transparent);
  border-color: rgba(1.4636363636, 84.8909090909, 159.5363636364, 0.2);
}
.hero__visual .hero-decoration .decoration-circle.circle-3 {
  bottom: 15%;
  left: 10%;
  width: 80px;
  height: 80px;
  animation: float 7s ease-in-out infinite;
  background: radial-gradient(circle, rgba(201, 168, 95, 0.08), transparent);
}
.hero__visual .hero-decoration .decoration-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #c9a85f;
  box-shadow: 0 0 20px rgba(201, 168, 95, 0.5);
}
.hero__visual .hero-decoration .decoration-dot.dot-1 {
  top: 25%;
  right: 15%;
  animation: pulse 3s ease-in-out infinite;
}
.hero__visual .hero-decoration .decoration-dot.dot-2 {
  top: 70%;
  left: 20%;
  animation: pulse 4s ease-in-out infinite 1s;
}
.hero__visual .hero-decoration .decoration-dot.dot-3 {
  bottom: 30%;
  right: 25%;
  animation: pulse 3.5s ease-in-out infinite 0.5s;
}
.hero__visual .hero-decoration .decoration-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 95, 0.3), transparent);
}
.hero__visual .hero-decoration .decoration-line.line-1 {
  top: 20%;
  left: 0;
  width: 200px;
  transform: rotate(-25deg);
  animation: slideRight 10s linear infinite;
}
.hero__visual .hero-decoration .decoration-line.line-2 {
  bottom: 35%;
  right: 0;
  width: 150px;
  transform: rotate(25deg);
  animation: slideLeft 12s linear infinite;
}
@keyframes slideRight {
  0% {
    transform: translateX(-100%) rotate(-25deg);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(300%) rotate(-25deg);
    opacity: 0;
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(100%) rotate(25deg);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(-300%) rotate(25deg);
    opacity: 0;
  }
}

.services {
  background: #f9fafb;
}
.services__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}
.services__header .badge {
  margin-bottom: 1.5rem;
}
.services__header h2 {
  margin-bottom: 1.5rem;
}
.services__header p {
  font-size: 1.125rem;
  color: #6b7280;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.services__card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 3rem;
  border: 2px solid #f3f4f6;
  transition: all 250ms ease-in-out;
  position: relative;
  overflow: hidden;
}
.services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #013a6d, #c9a85f);
  transition: height 250ms ease-in-out;
}
.services__card:hover {
  border-color: #013a6d;
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.services__card:hover::before {
  height: 100%;
}
.services__card:hover .icon {
  transform: scale(1.1);
}
.services__card.featured {
  border-color: #c9a85f;
  background: linear-gradient(135deg, rgba(201, 168, 95, 0.05), rgba(1, 58, 109, 0.05));
}
.services__card.featured .badge-popular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #c9a85f;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.services__card .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(1, 58, 109, 0.1), rgba(1.4636363636, 84.8909090909, 159.5363636364, 0.1));
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 250ms ease-in-out;
}
.services__card .icon svg {
  width: 32px;
  height: 32px;
  color: #013a6d;
}
.services__card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.services__card p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.services__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
}
.services__card ul li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.services__card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
}
.services__card a {
  color: #013a6d;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.services__card a svg {
  width: 16px;
  height: 16px;
  transition: transform 250ms ease-in-out;
}
.services__card a:hover {
  gap: 1rem;
}
.services__card a:hover svg {
  transform: translateX(4px);
}

.why-us {
  background: linear-gradient(135deg, #013a6d 0%, rgb(0.7681818182, 44.5545454545, 83.7318181818) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.why-us::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.why-us .container {
  position: relative;
  z-index: 1;
}
.why-us__header {
  text-align: center;
  margin-bottom: 4rem;
}
.why-us__header h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
}
.why-us__header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-items: center;
}
@media (min-width: 640px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .why-us__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.why-us__card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  max-width: 280px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-us__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}
.why-us__card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(201, 168, 95, 0.4);
}
.why-us__card:hover::before {
  left: 100%;
}
.why-us__card:hover .icon {
  background: rgba(201, 168, 95, 0.25);
  border-color: rgba(201, 168, 95, 0.4);
  transform: scale(1.05);
}
.why-us__card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  background: rgba(201, 168, 95, 0.15);
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid rgba(201, 168, 95, 0.25);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.why-us__card .icon svg {
  width: 28px;
  height: 28px;
  color: rgb(213.8691588785, 188.7336448598, 133.1308411215);
  transition: transform 0.3s ease;
}
.why-us__card h3 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.why-us__card p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
}
.why-us__card p:last-child {
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .why-us__card {
    max-width: 260px;
  }
}

.process__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}
.process__header .badge {
  margin-bottom: 1.5rem;
}
.process__header h2 {
  margin-bottom: 1.5rem;
}
.process__header p {
  font-size: 1.125rem;
  color: #6b7280;
}
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.process__step {
  position: relative;
  text-align: center;
}
.process__step::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #013a6d, transparent);
  display: none;
  z-index: -1;
}
@media (min-width: 1024px) {
  .process__step::after {
    display: block;
  }
}
.process__step:last-child::after {
  display: none;
}
.process__step .number {
  width: 70px;
  height: 70px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, rgb(213.8691588785, 188.7336448598, 133.1308411215), #c9a85f);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.process__step h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.process__step p {
  color: #6b7280;
  margin: 0;
}

.cta {
  background: linear-gradient(135deg, #013a6d 0%, rgb(0.7681818182, 44.5545454545, 83.7318181818) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta .container .badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  margin-bottom: 2rem;
  display: inline-flex;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.cta .container h2 {
  color: white;
  margin-bottom: 1.5rem;
}
.cta .container p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta .container .btn {
  min-width: 200px;
}

.faq {
  background: #f9fafb;
}
.faq__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}
.faq__header .badge {
  margin-bottom: 1.5rem;
}
.faq__header h2 {
  margin-bottom: 1.5rem;
}
.faq__header p {
  font-size: 1.125rem;
  color: #6b7280;
}
.faq__container {
  max-width: 900px;
  margin: 0 auto;
}
.faq__item {
  background: white;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid #f3f4f6;
  transition: all 250ms ease-in-out;
  overflow: hidden;
}
.faq__item:hover {
  border-color: rgba(1, 58, 109, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.faq__item.active {
  border-color: #013a6d;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.faq__item.active .faq__question {
  color: #013a6d;
}
.faq__item.active .faq__question svg {
  transform: rotate(180deg);
  color: #013a6d;
}
.faq__item.active .faq__answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 3rem 3rem;
}
.faq__question {
  padding: 2rem 3rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faq__question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  color: #1f2937;
  transition: color 250ms ease-in-out;
}
.faq__question svg {
  width: 24px;
  height: 24px;
  color: #9ca3af;
  transition: all 250ms ease-in-out;
  flex-shrink: 0;
}
.faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 250ms ease-in-out;
}
.faq__answer p {
  margin: 0;
  color: #6b7280;
  line-height: 1.8;
  font-size: 1rem;
}

.blog-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}
.blog-section__header .badge {
  margin-bottom: 1.5rem;
}
.blog-section__header h2 {
  margin-bottom: 1.5rem;
}
.blog-section__header p {
  font-size: 1.125rem;
  color: #6b7280;
}
.blog-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .blog-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-section__card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
  overflow: hidden;
  padding: 0;
}
.blog-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.blog-section__card .image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blog-section__card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 350ms ease-in-out;
}
.blog-section__card:hover .image img {
  transform: scale(1.1);
}
.blog-section__card .content {
  padding: 2rem;
}
.blog-section__card .content .meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}
.blog-section__card .content .meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-section__card .content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-section__card .content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-section__card .content a {
  color: #013a6d;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-section__card .content a svg {
  width: 16px;
  height: 16px;
  transition: transform 250ms ease-in-out;
}
.blog-section__card .content a:hover svg {
  transform: translateX(4px);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: none;
}
.modal.active {
  display: block;
}
.modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}
.modal__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .modal__container {
    padding: 0;
    align-items: flex-end;
  }
}
.modal__content {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 750px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: scaleIn 0.3s ease-out;
}
@media (max-width: 767px) {
  .modal__content {
    max-height: 100%;
    border-radius: 0px;
  }
}
.modal__header {
  padding: 2rem;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .modal__header {
    padding: 1.5rem;
  }
}
.modal__header h2 {
  margin: 0;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .modal__header h2 {
    font-size: 1.25rem;
  }
}
.modal__header .close {
  width: 40px;
  height: 40px;
  border: none;
  background: #f9fafb;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  flex-shrink: 0;
}
.modal__header .close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}
.modal__header .close svg {
  width: 20px;
  height: 20px;
}
.modal__body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}
@media (max-width: 767px) {
  .modal__body {
    padding: 1.5rem;
  }
}
.modal__body::-webkit-scrollbar {
  width: 6px;
}
.modal__body::-webkit-scrollbar-track {
  background: #f9fafb;
}
.modal__body::-webkit-scrollbar-thumb {
  background: #f3f4f6;
  border-radius: 9999px;
}
.modal__footer {
  padding: 2rem 3rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .modal__footer {
    padding: 1.5rem;
    flex-direction: column-reverse;
  }
  .modal__footer .btn {
    width: 100%;
    justify-content: center;
  }
  .modal__footer .btn-outline {
    display: none;
  }
}

.quote-modal .form-group {
  margin-bottom: 1.5rem;
}
.quote-modal .form-group:last-child {
  margin-bottom: 0;
}
.quote-modal .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1f2937;
  font-size: 0.875rem;
}
.quote-modal .form-group label .required {
  color: #ef4444;
}
.quote-modal .form-group input,
.quote-modal .form-group select,
.quote-modal .form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: all 250ms ease-in-out;
  background: #ffffff;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.quote-modal .form-group input:focus,
.quote-modal .form-group select:focus,
.quote-modal .form-group textarea:focus {
  outline: none;
  border-color: #013a6d;
  box-shadow: 0 0 0 3px rgba(1, 58, 109, 0.1);
}
.quote-modal .form-group input::-moz-placeholder, .quote-modal .form-group select::-moz-placeholder, .quote-modal .form-group textarea::-moz-placeholder {
  color: #9ca3af;
}
.quote-modal .form-group input::placeholder,
.quote-modal .form-group select::placeholder,
.quote-modal .form-group textarea::placeholder {
  color: #9ca3af;
}
.quote-modal .form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.quote-modal .form-group .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .quote-modal .form-group .form-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.quote-modal .form-group .form-row > div {
  display: flex;
  flex-direction: column;
}
.quote-modal .form-group .form-row > div label {
  margin-bottom: 0.5rem;
}
.quote-modal .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(1, 58, 109, 0.03);
  border-radius: 0.5rem;
  border: 1px solid rgba(1, 58, 109, 0.1);
}
.quote-modal .checkbox-group .wpcf7-form-control-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}
.quote-modal .checkbox-group .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.quote-modal .checkbox-group input[type=checkbox],
.quote-modal .checkbox-group .wpcf7-list-item-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.quote-modal .checkbox-group label,
.quote-modal .checkbox-group .wpcf7-list-item-label {
  margin: 0;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  cursor: pointer;
  color: #6b7280;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.quote-modal .checkbox-group label a,
.quote-modal .checkbox-group .wpcf7-list-item-label a {
  color: #013a6d;
  text-decoration: underline;
  font-weight: 500;
}
.quote-modal .checkbox-group label a:hover,
.quote-modal .checkbox-group .wpcf7-list-item-label a:hover {
  color: rgb(0.7681818182, 44.5545454545, 83.7318181818);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.page-hero {
  padding: 12rem 0 6rem;
  background: linear-gradient(135deg, #013a6d 0%, rgb(0.7681818182, 44.5545454545, 83.7318181818) 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .page-hero__bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.page-hero .page-hero__bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: heroFloat 20s infinite ease-in-out;
}
.page-hero .page-hero__bg-shapes .shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-duration: 25s;
  background: rgba(255, 255, 255, 0.06);
}
.page-hero .page-hero__bg-shapes .shape.shape-2 {
  width: 250px;
  height: 250px;
  top: 10%;
  right: -50px;
  animation-delay: 5s;
  animation-duration: 20s;
  background: rgba(255, 255, 255, 0.08);
}
.page-hero .page-hero__bg-shapes .shape.shape-3 {
  width: 180px;
  height: 180px;
  bottom: -90px;
  left: 15%;
  animation-delay: 10s;
  animation-duration: 30s;
  background: rgba(255, 255, 255, 0.07);
}
.page-hero .page-hero__bg-shapes .shape.shape-4 {
  width: 300px;
  height: 300px;
  top: 30%;
  right: 10%;
  animation-delay: 15s;
  animation-duration: 22s;
  background: rgba(255, 255, 255, 0.05);
}
.page-hero__content {
  position: relative;
  z-index: 2;
}
.page-hero__content .badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  margin-bottom: 2rem;
  display: inline-flex;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.25rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}
.page-hero__content h1 {
  color: white;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}
.page-hero__content p {
  color: white;
}
.page-hero .page-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.page-hero .page-hero__meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}
.page-hero .page-hero__meta .meta-item svg {
  opacity: 0.8;
  flex-shrink: 0;
}
.page-hero .page-hero__meta .meta-divider {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, -40px) scale(1.1);
  }
  50% {
    transform: translate(-20px, -80px) scale(0.95);
  }
  75% {
    transform: translate(-60px, -30px) scale(1.05);
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 3rem;
  }
  .page-hero .page-hero__bg-shapes .shape.shape-1 {
    width: 250px;
    height: 250px;
    top: -50px;
    left: -80px;
  }
  .page-hero .page-hero__bg-shapes .shape.shape-2 {
    width: 180px;
    height: 180px;
  }
  .page-hero .page-hero__bg-shapes .shape.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -60px;
  }
  .page-hero .page-hero__bg-shapes .shape.shape-4 {
    width: 200px;
    height: 200px;
  }
  .page-hero .page-hero__meta {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
  .page-hero .page-hero__meta .meta-item svg {
    width: 14px;
    height: 14px;
  }
}
.about-content {
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .about-content {
    padding: 6rem 0;
  }
}
.about-content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
@media (min-width: 1024px) {
  .about-content__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}
.about-content__text h2 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}
.about-content__text h2:first-child {
  margin-top: 0;
}
.about-content__text p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-content__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-content: start;
}
.about-content__stats .stat-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 2rem;
  text-align: center;
}
.about-content__stats .stat-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(1, 58, 109, 0.1), rgba(1, 58, 109, 0.05));
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-content__stats .stat-card .icon svg {
  width: 30px;
  height: 30px;
  color: #013a6d;
}
.about-content__stats .stat-card h3 {
  color: #013a6d;
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}
.about-content__stats .stat-card p {
  color: #6b7280;
  margin: 0;
  font-size: 0.875rem;
}

.values-section {
  padding: 6rem 0;
  background: #f9fafb;
}
@media (min-width: 1024px) {
  .values-section {
    padding: 6rem 0;
  }
}
.values-section .section-header {
  text-align: center;
  margin-bottom: 6rem;
}
.values-section .section-header h2 {
  margin-bottom: 1rem;
}
.values-section .section-header p {
  color: #6b7280;
  font-size: 1.125rem;
}
.values-section .values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .values-section .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .values-section .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.values-section .value-card {
  position: relative;
  padding: 3rem;
  background: linear-gradient(145deg, white 0%, #fafafa 100%);
  border-radius: 1.5rem;
  border: 1px solid transparent;
  transition: all 250ms ease-in-out;
  overflow: hidden;
}
.values-section .value-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, rgba(201, 168, 95, 0.05) 50%);
  border-radius: 0 1.5rem 0 0;
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}
.values-section .value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 168, 95, 0.2);
  background: white;
}
.values-section .value-card:hover::after {
  opacity: 1;
}
.values-section .value-card:hover .icon {
  transform: scale(1.05);
}
.values-section .value-card .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgb(213.8691588785, 188.7336448598, 133.1308411215), #c9a85f);
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 250ms ease-in-out;
  box-shadow: 0 8px 20px rgba(201, 168, 95, 0.25);
}
.values-section .value-card .icon svg {
  width: 30px;
  height: 30px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.values-section .value-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  position: relative;
  z-index: 1;
}
.values-section .value-card .value-desc {
  color: #6b7280;
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}
.values-section .value-card .value-desc p {
  margin: 0;
}

.team-section {
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .team-section {
    padding: 6rem 0;
  }
}
.team-section .section-header {
  text-align: center;
  margin-bottom: 6rem;
}
.team-section .section-header h2 {
  margin-bottom: 1rem;
}
.team-section .section-header p {
  color: #6b7280;
  font-size: 1.125rem;
}
.team-section .team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .team-section .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .team-section .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.team-section .team-card {
  text-align: center;
}
.team-section .team-card .image {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 4px solid #f3f4f6;
}
.team-section .team-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-section .team-card h3 {
  margin-bottom: 0.25rem;
}
.team-section .team-card .role {
  color: #013a6d;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.team-section .team-card .bio {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.visa-detail {
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .visa-detail {
    padding: 6rem 0;
  }
}
.visa-detail__container {
  max-width: 900px;
  margin: 0 auto;
}
.visa-detail__intro {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 2rem;
  margin-bottom: 4rem;
}
.visa-detail__intro #ez-toc-container {
  background: #ffffff;
  border: 1px solid rgba(107, 114, 128, 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.visa-detail__intro #ez-toc-container .ez-toc-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(107, 114, 128, 0.1);
}
.visa-detail__intro #ez-toc-container .ez-toc-title {
  color: #1f2937;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.visa-detail__intro #ez-toc-container .ez-toc-title:before {
  content: "📋";
  font-size: 1.4rem;
}
.visa-detail__intro #ez-toc-container .ez-toc-toggle {
  display: none;
}
.visa-detail__intro #ez-toc-container nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.visa-detail__intro #ez-toc-container nav ul li {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}
.visa-detail__intro #ez-toc-container nav ul li a {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.visa-detail__intro #ez-toc-container nav ul li a:hover {
  color: #013a6d;
  padding-left: 0.25rem;
}
.visa-detail__intro #ez-toc-container nav ul li ul {
  margin-left: 1.5rem;
  margin-top: 0;
  padding-left: 0;
  border-left: none;
}
.visa-detail__intro #ez-toc-container nav ul li ul li a {
  font-size: 0.95rem;
  padding: 0.25rem 0;
  color: rgb(119.1021276596, 126.5340425532, 141.3978723404);
}
.visa-detail__intro #ez-toc-container nav ul li ul ul {
  margin-left: 1.5rem;
}
.visa-detail__intro #ez-toc-container nav ul li ul ul li a {
  font-size: 0.9rem;
  color: rgb(132.9914893617, 139.6638297872, 153.0085106383);
}
.visa-detail__intro #ez-toc-container.ez-toc-collapsed nav {
  display: none;
}
.visa-detail__intro #ez-toc-container.ez-toc-counter nav ul {
  counter-reset: item;
}
.visa-detail__intro #ez-toc-container.ez-toc-counter nav ul li {
  counter-increment: item;
  position: relative;
}
.visa-detail__intro #ez-toc-container.ez-toc-counter nav ul li a:before {
  content: counter(item) ".";
  display: inline-block;
  color: #013a6d;
  font-weight: 700;
  min-width: 28px;
  flex-shrink: 0;
}
.visa-detail__intro #ez-toc-container.ez-toc-counter nav ul li ul {
  counter-reset: subitem;
}
.visa-detail__intro #ez-toc-container.ez-toc-counter nav ul li ul li {
  counter-increment: subitem;
}
.visa-detail__intro #ez-toc-container.ez-toc-counter nav ul li ul li a:before {
  content: counter(item) "." counter(subitem);
  font-weight: 600;
}
.visa-detail__intro #ez-toc-container.ez-toc-counter nav ul li ul li ul {
  counter-reset: subsubitem;
}
.visa-detail__intro #ez-toc-container.ez-toc-counter nav ul li ul li ul li {
  counter-increment: subsubitem;
}
.visa-detail__intro #ez-toc-container.ez-toc-counter nav ul li ul li ul li a:before {
  content: counter(item) "." counter(subitem) "." counter(subsubitem);
  font-weight: 500;
}
.visa-detail__intro h2,
.visa-detail__intro h3,
.visa-detail__intro h4 {
  color: #1f2937;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  scroll-margin-top: 100px;
}
.visa-detail__intro h2:first-child,
.visa-detail__intro h3:first-child,
.visa-detail__intro h4:first-child {
  margin-top: 0;
}
.visa-detail__intro h2 {
  font-size: 2rem;
}
.visa-detail__intro h3 {
  font-size: 1.5rem;
}
.visa-detail__intro h4 {
  font-size: 1.25rem;
}
.visa-detail__intro p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.visa-detail__intro p:last-child {
  margin-bottom: 0;
}
.visa-detail__intro p strong {
  color: #1f2937;
  font-weight: 600;
}
.visa-detail__intro img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
  display: block;
}
.visa-detail__intro img.alignnone {
  margin-left: auto;
  margin-right: auto;
}
.visa-detail__intro a {
  color: #013a6d;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}
.visa-detail__intro a:hover {
  color: rgb(0.5363636364, 31.1090909091, 58.4636363636);
  text-decoration: underline;
}
.visa-detail__intro ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.visa-detail__intro ol li {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}
.visa-detail__intro ol li::marker {
  color: #013a6d;
  font-weight: 600;
}
.visa-detail__intro ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.visa-detail__intro ul li {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  position: relative;
}
.visa-detail__intro ul li::marker {
  color: #013a6d;
}
.visa-detail__intro hr {
  border: none;
  border-top: 2px solid rgba(107, 114, 128, 0.1);
  margin: 3rem 0;
}
.visa-detail__intro .highlight-box {
  background: rgba(1, 58, 109, 0.05);
  border-left: 4px solid #013a6d;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
}
.visa-detail__intro .highlight-box p,
.visa-detail__intro .highlight-box strong {
  margin: 0;
  color: #1f2937;
}
.visa-detail__intro .highlight-box strong {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.visa-detail__intro p strong:first-child {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.visa-detail__intro p a + br + a {
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .visa-detail__intro {
    padding: 1.5rem;
  }
  .visa-detail__intro #ez-toc-container {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  .visa-detail__intro #ez-toc-container .ez-toc-title {
    font-size: 1.15rem;
  }
  .visa-detail__intro #ez-toc-container .ez-toc-title:before {
    font-size: 1.2rem;
  }
  .visa-detail__intro #ez-toc-container .ez-toc-toggle {
    width: 38px;
    height: 38px;
    padding: 0.25rem;
  }
  .visa-detail__intro #ez-toc-container nav ul li a {
    padding: 0.25rem 0;
    font-size: 0.9rem;
  }
  .visa-detail__intro #ez-toc-container nav ul li ul {
    margin-left: 1rem;
  }
  .visa-detail__intro #ez-toc-container.ez-toc-counter nav ul li a:before {
    min-width: 24px;
  }
  .visa-detail__intro h2 {
    font-size: 1.5rem;
  }
  .visa-detail__intro h3 {
    font-size: 1.25rem;
  }
  .visa-detail__intro ol,
  .visa-detail__intro ul {
    padding-left: 1.5rem;
  }
  .visa-detail__intro img {
    margin: 1.5rem 0;
  }
}
.visa-detail__requirements {
  margin-bottom: 4rem;
}
.visa-detail__requirements h3 {
  margin-bottom: 2rem;
}
.visa-detail__requirements .requirement-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.visa-detail__requirements .requirement-list li {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.visa-detail__requirements .requirement-list li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #10b981;
  border-radius: 9999px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visa-detail__process {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 4rem;
  margin-bottom: 4rem;
}
.visa-detail__process h3 {
  margin-bottom: 2rem;
}
.visa-detail__process .process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.visa-detail__process .process-steps li {
  padding: 1.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  gap: 1.5rem;
}
.visa-detail__process .process-steps li:last-child {
  border-bottom: none;
}
.visa-detail__process .process-steps li .step-number {
  width: 40px;
  height: 40px;
  background: #013a6d;
  color: white;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.visa-detail__process .process-steps li .step-content {
  flex: 1;
}
.visa-detail__process .process-steps li .step-content h4 {
  margin-bottom: 0.5rem;
}
.visa-detail__process .process-steps li .step-content p {
  color: #6b7280;
  margin: 0;
}
.visa-detail__cta {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 4rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(1, 58, 109, 0.05), rgba(201, 168, 95, 0.05));
}
.visa-detail__cta h3 {
  margin-bottom: 1.5rem;
}
.visa-detail__cta p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.blog-list {
  padding: 6rem 0;
}
.blog-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .blog-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pagination {
  margin-top: 4rem;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination .page-numbers li {
  list-style: none;
}
.pagination .page-numbers a,
.pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  color: #1f2937;
  background: transparent;
  border: 1px solid #e5e7eb;
}
.pagination .page-numbers a svg,
.pagination .page-numbers span svg {
  width: 20px;
  height: 20px;
}
.pagination .page-numbers a:hover,
.pagination .page-numbers span:hover {
  background: rgb(213.8691588785, 188.7336448598, 133.1308411215);
  color: white;
  border-color: #c9a85f;
}
.pagination .page-numbers .current {
  background: #013a6d;
  color: white;
  border-color: #013a6d;
  pointer-events: none;
}
.pagination .page-numbers .current:hover {
  background: #013a6d;
  color: white;
  border-color: #013a6d;
}
.pagination .page-numbers .prev svg,
.pagination .page-numbers .next svg {
  width: 24px;
  height: 24px;
}
.pagination .page-numbers .dots {
  pointer-events: none;
  background: transparent;
  border-color: transparent;
}
.pagination .page-numbers .dots:hover {
  background: transparent;
  color: #1f2937;
  border-color: transparent;
}

.no-posts {
  text-align: center;
  padding: 4rem;
  background: #f9fafb;
  border-radius: 0.75rem;
}
.no-posts p {
  color: #6b7280;
  font-size: 1.125rem;
  margin: 0;
}

.blog-hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(135deg, #013a6d 0%, rgb(0.7681818182, 44.5545454545, 83.7318181818) 100%);
  color: white;
}
.blog-hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.blog-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
.blog-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 250ms ease-in-out;
}
.blog-hero__breadcrumb a:hover {
  color: white;
}
.blog-hero__breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}
.blog-hero__breadcrumb span {
  color: white;
}
.blog-hero .badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  margin-bottom: 2rem;
}
.blog-hero h1 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .blog-hero h1 {
    font-size: 2.25rem;
  }
}
.blog-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  flex-wrap: wrap;
}
.blog-hero__meta .author-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-hero__meta .author-info img {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.blog-detail {
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .blog-detail {
    padding: 6rem 0;
  }
}
.blog-detail__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .blog-detail__wrapper {
    grid-template-columns: 300px 1fr;
  }
}
.blog-detail__sidebar {
  order: 2;
}
@media (min-width: 1024px) {
  .blog-detail__sidebar {
    order: 1;
    position: sticky;
    top: 100px;
    align-self: flex-start;
  }
}
.blog-detail__sidebar .sidebar-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 2rem;
  margin-bottom: 2rem;
}
.blog-detail__sidebar .sidebar-card:last-child {
  margin-bottom: 0;
}
.blog-detail__sidebar .sidebar-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.blog-detail__sidebar .sidebar-card.sidebar-cta {
  background: linear-gradient(135deg, rgba(1, 58, 109, 0.05), rgba(201, 168, 95, 0.05));
  border: 2px solid rgba(1, 58, 109, 0.1);
}
.blog-detail__sidebar .sidebar-card.sidebar-cta p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.blog-detail__sidebar .table-of-contents {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-detail__sidebar .table-of-contents li {
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.blog-detail__sidebar .table-of-contents li.toc-hidden {
  display: none;
}
.blog-detail__sidebar .table-of-contents li a {
  color: #6b7280;
  font-size: 0.875rem;
  display: block;
  padding: 0.5rem 0;
  transition: all 250ms ease-in-out;
}
.blog-detail__sidebar .table-of-contents li a:hover {
  color: #013a6d;
  padding-left: 0.5rem;
}
.blog-detail__sidebar .toc-toggle-btn {
  width: 100%;
  background: transparent;
  border: 1px solid #e5e7eb;
  color: #013a6d;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 250ms ease-in-out;
}
.blog-detail__sidebar .toc-toggle-btn:hover {
  background: #013a6d;
  color: white;
  border-color: #013a6d;
}
.blog-detail__sidebar .toc-toggle-btn.expanded {
  background: #013a6d;
  color: white;
}
.blog-detail__sidebar .popular-posts .popular-post {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.blog-detail__sidebar .popular-posts .popular-post:last-child {
  border-bottom: none;
}
.blog-detail__sidebar .popular-posts .popular-post img {
  width: 60px;
  height: 60px;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.blog-detail__sidebar .popular-posts .popular-post div {
  flex: 1;
}
.blog-detail__sidebar .popular-posts .popular-post div h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: #1f2937;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-detail__sidebar .popular-posts .popular-post div span {
  font-size: 0.75rem;
  color: #9ca3af;
}
.blog-detail__sidebar .popular-posts .popular-post:hover h4 {
  color: #013a6d;
}
.blog-detail__container {
  order: 1;
  max-width: 800px;
}
@media (min-width: 1024px) {
  .blog-detail__container {
    order: 2;
  }
}
.blog-detail__header {
  margin-bottom: 4rem;
}
.blog-detail__header .meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  flex-wrap: wrap;
}
.blog-detail__header h1 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.blog-detail__image {
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .blog-detail__image {
    height: 500px;
  }
}
.blog-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 350ms ease-in-out;
}
.blog-detail__image:hover img {
  transform: scale(1.05);
}
.blog-detail__content {
  font-size: 1rem;
  line-height: 1.8;
}
.blog-detail__content .lead {
  font-size: 1.125rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.blog-detail__content h2 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #1f2937;
  scroll-margin-top: 100px;
}
.blog-detail__content h2:first-child {
  margin-top: 0;
}
.blog-detail__content h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #1f2937;
  scroll-margin-top: 100px;
}
.blog-detail__content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #1f2937;
}
.blog-detail__content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.blog-detail__content p:last-child {
  margin-bottom: 0;
}
.blog-detail__content ul,
.blog-detail__content ol {
  margin-bottom: 2rem;
  padding-left: 3rem;
}
.blog-detail__content ul li,
.blog-detail__content ol li {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.blog-detail__content ul li::marker,
.blog-detail__content ol li::marker {
  color: #013a6d;
}
.blog-detail__content ul {
  list-style-type: disc;
}
.blog-detail__content ol {
  list-style-type: decimal;
}
.blog-detail__content a {
  color: #013a6d;
  text-decoration: underline;
  transition: color 250ms ease-in-out;
}
.blog-detail__content a:hover {
  color: rgb(0.7681818182, 44.5545454545, 83.7318181818);
}
.blog-detail__content blockquote {
  margin: 3rem 0;
  padding: 2rem 3rem;
  border-left: 4px solid #c9a85f;
  background: linear-gradient(90deg, rgba(201, 168, 95, 0.08), rgba(201, 168, 95, 0.02));
  border-radius: 0 0.5rem 0.5rem 0;
}
.blog-detail__content blockquote p {
  margin: 0;
  font-size: 1.125rem;
  color: #1f2937;
  font-weight: 500;
}
.blog-detail__content .info-box {
  background: linear-gradient(135deg, rgba(1, 58, 109, 0.05), rgba(1, 58, 109, 0.02));
  border: 2px solid rgba(1, 58, 109, 0.1);
  border-left: 4px solid #013a6d;
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 3rem 0;
}
.blog-detail__content .info-box h4 {
  color: #013a6d;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.blog-detail__content .info-box p {
  margin: 0;
  font-size: 1rem;
}
.blog-detail__content code {
  background: #f9fafb;
  padding: 2px 6px;
  border-radius: 0.375rem;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: rgb(0.7681818182, 44.5545454545, 83.7318181818);
}
.blog-detail__content pre {
  background: #111827;
  color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin: 2rem 0;
}
.blog-detail__content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}
.blog-detail__content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 3rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.blog-detail__content hr {
  border: none;
  height: 2px;
  background: #f3f4f6;
  margin: 4rem 0;
}
.blog-detail__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
}
.blog-detail__content table th,
.blog-detail__content table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}
.blog-detail__content table th {
  background: #f9fafb;
  font-weight: 600;
  color: #1f2937;
}
.blog-detail__content table td {
  color: #6b7280;
}
.blog-detail__content table tr:hover {
  background: #f9fafb;
}
.blog-detail__tags {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-detail__tags .tag {
  background: rgba(1, 58, 109, 0.1);
  color: #013a6d;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 250ms ease-in-out;
}
.blog-detail__tags .tag:hover {
  background: #013a6d;
  color: white;
}
.blog-detail__author {
  margin-top: 4rem;
  padding: 3rem;
  background: #f9fafb;
  border-radius: 1rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.blog-detail__author .avatar {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-detail__author .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-detail__author .info {
  flex: 1;
}
.blog-detail__author .info .name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}
.blog-detail__author .info .bio {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}
.blog-detail__share {
  margin-top: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  border: 2px solid #f3f4f6;
}
.blog-detail__share h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.blog-detail__share .share-buttons {
  display: flex;
  gap: 1rem;
}
.blog-detail__share .share-buttons button {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.blog-detail__share .share-buttons button.facebook {
  background: #1877f2;
  color: white;
}
.blog-detail__share .share-buttons button.facebook:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.blog-detail__share .share-buttons button.twitter {
  background: #1da1f2;
  color: white;
}
.blog-detail__share .share-buttons button.twitter:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.blog-detail__share .share-buttons button.linkedin {
  background: #0a66c2;
  color: white;
}
.blog-detail__share .share-buttons button.linkedin:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.blog-detail__share .share-buttons button.whatsapp {
  background: #25d366;
  color: white;
}
.blog-detail__share .share-buttons button.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.blog-detail__related {
  margin-top: 6rem;
}
.blog-detail__related h3 {
  text-align: center;
  margin-bottom: 3rem;
}
.blog-detail__related .related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .blog-detail__related .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-detail__related .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-posts {
  padding: 6rem 0;
  background: #f9fafb;
}
@media (min-width: 1024px) {
  .related-posts {
    padding: 6rem 0;
  }
}
.related-posts h2 {
  text-align: center;
  margin-bottom: 4rem;
}
.related-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .related-posts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.form-hero {
  padding: 9rem 0 6rem;
  background: linear-gradient(135deg, #013a6d 0%, #244163 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.form-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 95, 0.15) 0%, transparent 70%);
}
.form-hero .container {
  position: relative;
  z-index: 1;
}
.form-hero__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.form-hero .badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  margin-bottom: 2rem;
}
.form-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .form-hero h1 {
    font-size: 2.25rem;
  }
}
.form-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}
.form-hero__features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.form-hero__features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}
.form-hero__features .feature-item svg {
  color: rgb(213.8691588785, 188.7336448598, 133.1308411215);
  flex-shrink: 0;
}
.form-hero__features .feature-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

.application-form-section {
  padding: 6rem 0;
  background: #f9fafb;
}
@media (min-width: 1024px) {
  .application-form-section {
    padding: 6rem 0;
  }
}

.application-form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.progress-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .progress-steps {
    padding: 1.5rem;
  }
}
.progress-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  text-align: center;
}
.progress-steps .step-number {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background: white;
  border: 3px solid #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: #9ca3af;
  flex-shrink: 0;
  transition: all 250ms ease-in-out;
  z-index: 2;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .progress-steps .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
.progress-steps .step-info .step-title {
  font-weight: 600;
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
  transition: color 250ms ease-in-out;
}
@media (max-width: 767px) {
  .progress-steps .step-info .step-title {
    font-size: 0.875rem;
  }
}
.progress-steps .step-info .step-desc {
  font-size: 0.875rem;
  color: #9ca3af;
}
@media (max-width: 767px) {
  .progress-steps .step-info .step-desc {
    font-size: 0.75rem;
    display: none;
  }
}
.progress-steps .step.active .step-number {
  background: #013a6d;
  border-color: #013a6d;
  color: white;
  box-shadow: 0 0 0 4px rgba(1, 58, 109, 0.1);
}
.progress-steps .step.active .step-title {
  color: #013a6d;
  font-weight: 700;
}
.progress-steps .step.active .step-desc {
  color: #6b7280;
}
.progress-steps .step-line {
  flex: 1;
  height: 3px;
  background: #f3f4f6;
  position: relative;
  top: 25px;
  margin: 0 1rem;
  transition: background 250ms ease-in-out;
}
@media (max-width: 767px) {
  .progress-steps .step-line {
    top: 20px;
    margin: 0 0.25rem;
  }
}
.progress-steps .step-line.active {
  background: #013a6d;
}

.application-form-container {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 6rem 4rem;
}
@media (max-width: 767px) {
  .application-form-container {
    padding: 4rem 1.5rem;
  }
}

.application-form .form-step {
  display: none;
}
.application-form .form-step.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.application-form .form-step-header {
  text-align: center;
  margin-bottom: 4rem;
}
.application-form .form-step-header h2 {
  margin-bottom: 1rem;
}
.application-form .form-step-header p {
  color: #6b7280;
  font-size: 1.125rem;
}
.application-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .application-form .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.application-form .form-group {
  margin-bottom: 2rem;
}
.application-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1f2937;
}
.application-form .form-group label .required {
  color: #ef4444;
}
.application-form .form-group input,
.application-form .form-group select,
.application-form .form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #f3f4f6;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 250ms ease-in-out;
}
.application-form .form-group input:focus,
.application-form .form-group select:focus,
.application-form .form-group textarea:focus {
  outline: none;
  border-color: #013a6d;
  box-shadow: 0 0 0 3px rgba(1, 58, 109, 0.1);
}
.application-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.application-form .form-group small {
  display: block;
  margin-top: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.application-form .input-with-icon {
  position: relative;
}
.application-form .input-with-icon svg {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}
.application-form .input-with-icon input {
  padding-left: 3rem;
}
.application-form .radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.application-form .radio-group .radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 1rem 1.5rem;
  border: 2px solid #f3f4f6;
  border-radius: 0.75rem;
  transition: all 250ms ease-in-out;
}
.application-form .radio-group .radio-label:hover {
  border-color: #013a6d;
}
.application-form .radio-group .radio-label input[type=radio] {
  width: auto;
  margin: 0;
}
.application-form .radio-group .radio-label span {
  color: #6b7280;
}
.application-form .radio-group .radio-label input[type=radio]:checked ~ span {
  color: #013a6d;
  font-weight: 500;
}
.application-form .form-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #f3f4f6;
}
.application-form .form-actions button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upload-area {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 6rem 3rem;
  text-align: center;
  border: 2px dashed #f3f4f6;
  margin-bottom: 2rem;
  transition: all 250ms ease-in-out;
}
.upload-area:hover {
  border-color: #013a6d;
  background: rgba(1, 58, 109, 0.02);
}
.upload-area .upload-icon {
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  background: rgba(1, 58, 109, 0.1);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.upload-area .upload-icon svg {
  color: #013a6d;
}
.upload-area h4 {
  margin-bottom: 0.5rem;
}
.upload-area p {
  color: #6b7280;
  margin-bottom: 2rem;
}
.upload-area small {
  display: block;
  margin-top: 1rem;
  color: #9ca3af;
  font-size: 0.75rem;
}

.file-list .file-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}
.file-list .file-item svg {
  color: #013a6d;
  flex-shrink: 0;
}
.file-list .file-item span:nth-child(2) {
  flex: 1;
  color: #1f2937;
  font-size: 0.875rem;
}
.file-list .file-item .file-size {
  color: #9ca3af;
  font-size: 0.75rem;
}

.info-note {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(1, 58, 109, 0.05);
  border-left: 4px solid #013a6d;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.info-note svg {
  color: #013a6d;
  flex-shrink: 0;
}
.info-note div {
  flex: 1;
  font-size: 0.875rem;
  color: #6b7280;
}
.info-note div strong {
  color: #1f2937;
}

.form-sidebar .info-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}
.form-sidebar .info-card:last-child {
  margin-bottom: 0;
}
.form-sidebar .info-card .info-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(1, 58, 109, 0.1), rgba(1, 58, 109, 0.05));
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-sidebar .info-card .info-card-icon svg {
  color: #013a6d;
}
.form-sidebar .info-card h3,
.form-sidebar .info-card h4 {
  margin-bottom: 1rem;
}
.form-sidebar .info-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.form-sidebar .info-card .btn {
  margin: 0 auto;
}
.form-sidebar .info-card.security-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
  border: 2px solid rgba(16, 185, 129, 0.1);
}
.form-sidebar .info-card.security-badge svg {
  color: #10b981;
  margin-bottom: 1.5rem;
}
.form-sidebar .info-card.security-badge h4 {
  color: #10b981;
}
.form-sidebar .info-card.security-badge p {
  margin: 0;
}
.form-sidebar .feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.form-sidebar .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: #6b7280;
  font-size: 0.875rem;
}
.form-sidebar .feature-list li svg {
  color: #10b981;
  flex-shrink: 0;
}

.contact-form-section {
  padding: 6rem 0;
  background: #f9fafb;
}
@media (min-width: 1024px) {
  .contact-form-section {
    padding: 6rem 0;
  }
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
@media (min-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-form-info .info-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-form-info .info-step .step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #013a6d, rgb(1.4636363636, 84.8909090909, 159.5363636364));
  color: white;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-form-info .info-step .step-content {
  flex: 1;
}
.contact-form-info .info-step .step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
.contact-form-info .info-step .step-content p {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 4rem;
}

.contact-form h3 {
  margin-top: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}
.contact-form h3:first-child {
  margin-top: 0;
}
.contact-form small {
  display: block;
  margin-top: 0.5rem;
  color: #9ca3af;
  font-size: 0.75rem;
}

.contact-hero {
  padding: 9rem 0 6rem;
  background: linear-gradient(135deg, #013a6d 0%, #244163 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 95, 0.15) 0%, transparent 70%);
}
.contact-hero .container {
  position: relative;
  z-index: 1;
}
.contact-hero__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.contact-hero .badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  margin-bottom: 2rem;
}
.contact-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .contact-hero h1 {
    font-size: 2.25rem;
  }
}
.contact-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

.contact-info-section {
  padding: 6rem 0;
  background: #f9fafb;
  margin-top: -4rem;
  position: relative;
  z-index: 1;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-info-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 3rem;
  text-align: center;
  transition: all 250ms ease-in-out;
}
.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.contact-info-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(1, 58, 109, 0.1), rgba(1, 58, 109, 0.05));
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-info-card .icon svg {
  color: #013a6d;
}
.contact-info-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
.contact-info-card p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.contact-info-card .contact-link {
  display: block;
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  transition: all 250ms ease-in-out;
}
.contact-info-card .contact-link:hover {
  color: #013a6d;
  padding-left: 0.5rem;
}
.contact-info-card .contact-link:last-child {
  margin-bottom: 0;
}

.contact-main-section {
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .contact-main-section {
    padding: 6rem 0;
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1.2fr 1fr;
  }
}

.contact-form-container .section-header {
  margin-bottom: 3rem;
}
.contact-form-container .section-header h2 {
  margin-bottom: 0.5rem;
}
.contact-form-container .section-header p {
  color: #6b7280;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1f2937;
}
.contact-form .form-group label .required {
  color: #ef4444;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #f3f4f6;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 250ms ease-in-out;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #013a6d;
  box-shadow: 0 0 0 3px rgba(1, 58, 109, 0.1);
}
.contact-form .form-group input::-moz-placeholder, .contact-form .form-group select::-moz-placeholder, .contact-form .form-group textarea::-moz-placeholder {
  color: #9ca3af;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group select::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #9ca3af;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(1, 58, 109, 0.03);
  border-radius: 0.5rem;
  border: 1px solid rgba(1, 58, 109, 0.1);
}
.contact-form .checkbox-group input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.contact-form .checkbox-group label {
  margin: 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  cursor: pointer;
  color: #6b7280;
}
.contact-form .checkbox-group label a {
  color: #013a6d;
  text-decoration: underline;
  font-weight: 500;
}
.contact-form .checkbox-group label a:hover {
  color: rgb(0.7681818182, 44.5545454545, 83.7318181818);
}
.contact-form .btn {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-map-container {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  padding: 3rem;
}
@media (max-width: 1023px) {
  .contact-map-container {
    padding: 1.5rem;
  }
}

.map-wrapper {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
}

.quick-info {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #f3f4f6;
}
.quick-info h3 {
  margin-bottom: 1.5rem;
}
.quick-info .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #6b7280;
}
.quick-info .info-item svg {
  color: #10b981;
  flex-shrink: 0;
}
.quick-info .info-item:last-child {
  margin-bottom: 0;
}

.social-links h3 {
  margin-bottom: 1.5rem;
}

.social-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-buttons .social-btn {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: all 250ms ease-in-out;
}
.social-buttons .social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.social-buttons .social-btn.facebook {
  background: #1877f2;
}
.social-buttons .social-btn.twitter {
  background: #1da1f2;
}
.social-buttons .social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-buttons .social-btn.youtube {
  background: #ff0000;
}
.social-buttons .social-btn.tiktok {
  background: #000000;
}
.social-buttons .social-btn.linkedin {
  background: #0a66c2;
}

.testimonials {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 95, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.testimonials::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(1, 58, 109, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.testimonials .container {
  position: relative;
  z-index: 1;
}
.testimonials__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.testimonials__header .badge {
  margin-bottom: 1.5rem;
}
.testimonials__header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .testimonials__header h2 {
    font-size: 1.875rem;
  }
}
.testimonials__header p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.testimonials__card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 250ms ease-in-out;
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}
.testimonials__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(201, 168, 95, 0.2);
}
.testimonials__card:hover .testimonials__quote-icon {
  opacity: 0.15;
  transform: translate(-50%, -50%) scale(1.1);
}
.testimonials__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #013a6d 0%, #c9a85f 100%);
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}
.testimonials__card:hover::before {
  opacity: 1;
}
.testimonials__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.testimonials__rating .star {
  width: 20px;
  height: 20px;
  color: #d1d5db;
  transition: color 150ms ease-in-out;
}
.testimonials__rating .star.filled {
  color: #f59e0b;
}
.testimonials__quote {
  font-size: 1rem;
  line-height: 1.8;
  color: #1f2937;
  margin: 0 0 2rem;
  font-style: italic;
  position: relative;
  z-index: 2;
}
.testimonials__quote::before, .testimonials__quote::after {
  content: '"';
  color: #c9a85f;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 0;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
}
.testimonials__avatar {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgb(213.8691588785, 188.7336448598, 133.1308411215);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.testimonials__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials__avatar--placeholder {
  background: linear-gradient(135deg, #013a6d 0%, rgb(1.4636363636, 84.8909090909, 159.5363636364) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials__avatar--placeholder svg {
  width: 28px;
  height: 28px;
  color: white;
}
.testimonials__info {
  flex: 1;
  min-width: 0;
}
.testimonials__info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonials__info p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonials__country {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #9ca3af;
}
.testimonials__country svg {
  flex-shrink: 0;
}
.testimonials__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1rem;
}
.testimonials__date svg {
  flex-shrink: 0;
}
.testimonials__quote-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
  transition: all 250ms ease-in-out;
}
.testimonials__quote-icon svg {
  width: 100%;
  height: 100%;
  color: #013a6d;
}
.testimonials__trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .testimonials__trust {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(1, 58, 109, 0.05) 0%, rgba(201, 168, 95, 0.05) 100%);
  border-radius: 0.75rem;
  transition: all 250ms ease-in-out;
}
.trust-badge svg {
  width: 24px;
  height: 24px;
  color: #c9a85f;
  flex-shrink: 0;
}
.trust-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  white-space: nowrap;
}
.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 640px) {
  .trust-badge {
    padding: 0.5rem 1rem;
  }
  .trust-badge svg {
    width: 20px;
    height: 20px;
  }
  .trust-badge span {
    font-size: 0.75rem;
  }
}

.testimonials__card {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}
.testimonials__card:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonials__card:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonials__card:nth-child(3) {
  animation-delay: 0.3s;
}
.testimonials__card:nth-child(4) {
  animation-delay: 0.4s;
}
.testimonials__card:nth-child(5) {
  animation-delay: 0.5s;
}
.testimonials__card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=main.css.map */