@charset "UTF-8";
:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --text: #001B7A;
  --light: #f8f9fa;
  --dark: #1a1a2e;
  --topbar-bg: #ff7000;
  --topbar-bg-gradient: linear-gradient(135deg, #ff7000 0%, #ff8c38 100%);
  --topbar-text: rgba(255, 255, 255, 0.95);
  --topbar-link: #ffffff;
  --topbar-label: rgba(255, 255, 255, 0.7);
  --topbar-hover: #ffffff;
  --topbar-border: rgba(255, 255, 255, 0.15);
  --topbar-shadow: 0 2px 20px rgba(255, 112, 0, 0.3);
  --topbar-accent: #001B7A;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --container-width: 1200px;
  --container-padding: 15px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

a {
  color: #e94560;
  text-decoration: none;
}

.container {
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--container-padding, 15px);
  width: 100%;
  box-sizing: border-box;
}

.container-fluid {
  width: 100%;
  padding: 0 var(--container-padding, 15px);
  box-sizing: border-box;
}

.topbar-seo {
  display: block;
  background: var(--topbar-bg-gradient, #ff7000);
  color: var(--topbar-text, rgba(255, 255, 255, 0.95));
  font-size: 13px;
  line-height: 1.5;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--topbar-shadow, 0 2px 20px rgba(255, 112, 0, 0.3));
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.topbar-seo::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.topbar-seo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  z-index: 1;
}
.topbar-seo .container {
  position: relative;
  z-index: 2;
  padding: 8px var(--container-padding, 15px);
}
.topbar-seo .topbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
  min-height: 40px;
}
@media (max-width: 768px) {
  .topbar-seo .topbar-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    min-height: auto;
  }
}
.topbar-seo .topbar-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  flex: 1;
}
@media (max-width: 768px) {
  .topbar-seo .topbar-contact {
    justify-content: center;
    gap: 6px 14px;
    flex: 0 1 auto;
  }
}
@media (max-width: 480px) {
  .topbar-seo .topbar-contact {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
}
.topbar-seo .topbar-contact .topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}
@media (max-width: 768px) {
  .topbar-seo .topbar-contact .topbar-item {
    padding: 3px 10px;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.05);
  }
}
@media (max-width: 480px) {
  .topbar-seo .topbar-contact .topbar-item {
    width: 100%;
    justify-content: center;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
  }
}
.topbar-seo .topbar-contact .topbar-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.topbar-seo .topbar-contact .topbar-item::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-right: 4px;
}
.topbar-seo .topbar-contact .topbar-item.topbar-phone::before {
  content: "\f095";
}
.topbar-seo .topbar-contact .topbar-item.topbar-email::before {
  content: "\f0e0";
}
.topbar-seo .topbar-contact .topbar-item.topbar-hours::before {
  content: "\f017";
}
.topbar-seo .topbar-contact .topbar-item.topbar-address::before {
  content: "\f3c5";
}
.topbar-seo .topbar-contact .topbar-label {
  color: var(--topbar-label, rgba(255, 255, 255, 0.7));
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(0, 27, 122, 0.15);
  padding: 1px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 480px) {
  .topbar-seo .topbar-contact .topbar-label {
    font-size: 9px;
    padding: 1px 6px;
  }
}
.topbar-seo .topbar-contact .topbar-link {
  color: var(--topbar-link, #ffffff);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 12px;
  position: relative;
  padding: 2px 0;
}
@media (max-width: 768px) {
  .topbar-seo .topbar-contact .topbar-link {
    font-size: 11px;
  }
}
.topbar-seo .topbar-contact .topbar-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--topbar-accent, #001B7A);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.topbar-seo .topbar-contact .topbar-link:hover {
  color: #ffffff;
  transform: scale(1.02);
}
.topbar-seo .topbar-contact .topbar-link:hover::after {
  width: 100%;
}
.topbar-seo .topbar-contact span:not(.topbar-label) {
  color: var(--topbar-text, rgba(255, 255, 255, 0.95));
  font-weight: 400;
  font-size: 12px;
}
@media (max-width: 768px) {
  .topbar-seo .topbar-contact span:not(.topbar-label) {
    font-size: 11px;
  }
}
.topbar-seo .topbar-social {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .topbar-seo .topbar-social {
    justify-content: center;
    gap: 8px;
    padding: 2px 0;
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .topbar-seo .topbar-social {
    gap: 4px;
  }
}
.topbar-seo .topbar-social .topbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .topbar-seo .topbar-social .topbar-social-link {
    padding: 4px 12px;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.04);
  }
}
@media (max-width: 480px) {
  .topbar-seo .topbar-social .topbar-social-link {
    padding: 4px 10px;
    font-size: 10px;
    flex: 0 1 auto;
  }
}
.topbar-seo .topbar-social .topbar-social-link::before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
}
.topbar-seo .topbar-social .topbar-social-link.topbar-social-facebook::before {
  content: "\f39e";
}
.topbar-seo .topbar-social .topbar-social-link.topbar-social-instagram::before {
  content: "\f16d";
}
.topbar-seo .topbar-social .topbar-social-link.topbar-social-youtube::before {
  content: "\f167";
}
.topbar-seo .topbar-social .topbar-social-link.topbar-social-linkedin::before {
  content: "\f0e1";
}
.topbar-seo .topbar-social .topbar-social-link .social-text {
  display: inline;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .topbar-seo .topbar-social .topbar-social-link .social-text {
    display: none;
  }
}
.topbar-seo .topbar-social .topbar-social-link:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}
.topbar-seo .topbar-social .topbar-social-link.topbar-social-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
}
.topbar-seo .topbar-social .topbar-social-link.topbar-social-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3);
}
.topbar-seo .topbar-social .topbar-social-link.topbar-social-youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}
.topbar-seo .topbar-social .topbar-social-link.topbar-social-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  box-shadow: 0 4px 20px rgba(10, 102, 194, 0.3);
}
.topbar-seo .topbar-social .topbar-social-link::after {
  content: attr(aria-label);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 480px) {
  .topbar-seo .topbar-social .topbar-social-link::after {
    display: none;
  }
}
.topbar-seo .topbar-social .topbar-social-link:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.topbar-seo .topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 12px 2px 8px;
  border-radius: 20px;
  background: rgba(46, 213, 115, 0.15);
  border: 1px solid rgba(46, 213, 115, 0.2);
  flex-shrink: 0;
}
.topbar-seo .topbar-status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #2ed573;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@media (max-width: 480px) {
  .topbar-seo .topbar-status {
    display: none;
  }
}
@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

@media (max-width: 992px) {
  .topbar-seo .topbar-contact {
    gap: 6px 12px;
  }
  .topbar-seo .topbar-contact .topbar-item {
    padding: 3px 10px;
    font-size: 11px;
  }
  .topbar-seo .topbar-social-link {
    padding: 4px 10px;
    font-size: 10px;
  }
  .topbar-seo .topbar-social-link .social-text {
    font-size: 9px;
  }
}
@media (max-width: 768px) {
  .topbar-seo {
    font-size: 12px;
  }
  .topbar-seo .container {
    padding: 6px 10px;
  }
  .topbar-seo .topbar-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .topbar-seo .topbar-contact {
    justify-content: center;
    width: 100%;
  }
  .topbar-seo .topbar-contact .topbar-item {
    padding: 3px 8px;
    gap: 5px;
    font-size: 10px;
  }
  .topbar-seo .topbar-contact .topbar-item::before {
    font-size: 12px;
  }
  .topbar-seo .topbar-contact .topbar-label {
    font-size: 8px;
    padding: 1px 5px;
  }
  .topbar-seo .topbar-contact .topbar-link {
    font-size: 10px;
  }
  .topbar-seo .topbar-contact span:not(.topbar-label) {
    font-size: 10px;
  }
  .topbar-seo .topbar-social {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 4px;
  }
  .topbar-seo .topbar-social .topbar-social-link {
    padding: 3px 8px;
    font-size: 9px;
  }
  .topbar-seo .topbar-social .topbar-social-link::before {
    font-size: 12px;
  }
  .topbar-seo .topbar-social .topbar-social-link .social-text {
    font-size: 8px;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 480px) {
  .topbar-seo .container {
    padding: 4px 8px;
  }
  .topbar-seo .topbar-wrapper {
    gap: 4px;
  }
  .topbar-seo .topbar-contact {
    width: 100%;
    gap: 3px;
    flex-direction: column;
    align-items: center;
  }
  .topbar-seo .topbar-contact .topbar-item {
    width: 100%;
    justify-content: center;
    padding: 3px 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
  }
  .topbar-seo .topbar-contact .topbar-item::before {
    font-size: 11px;
  }
  .topbar-seo .topbar-contact .topbar-item:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.08);
  }
  .topbar-seo .topbar-contact .topbar-label {
    font-size: 8px;
    padding: 1px 4px;
  }
  .topbar-seo .topbar-social {
    width: 100%;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  .topbar-seo .topbar-social .topbar-social-link {
    padding: 3px 10px;
    border-radius: 16px;
  }
  .topbar-seo .topbar-social .topbar-social-link::before {
    font-size: 12px;
  }
  .topbar-seo .topbar-social .topbar-social-link .social-text {
    display: inline;
    font-size: 8px;
  }
  .topbar-seo .topbar-social .topbar-social-link::after {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .topbar-seo::before, .topbar-seo::after {
    animation: none;
  }
  .topbar-seo .topbar-item,
  .topbar-seo .topbar-social-link,
  .topbar-seo .topbar-link {
    transition: none !important;
  }
  .topbar-seo .topbar-item:hover,
  .topbar-seo .topbar-social-link:hover,
  .topbar-seo .topbar-link:hover {
    transform: none !important;
  }
  .topbar-seo .topbar-status::before {
    animation: none;
  }
}
@media print {
  .topbar-seo {
    display: none !important;
  }
}
@media (prefers-color-scheme: dark) {
  .topbar-seo {
    --topbar-bg-gradient: linear-gradient(135deg, #cc5a00 0%, #ff7000 100%);
    --topbar-shadow: 0 2px 20px rgba(255, 112, 0, 0.2);
  }
}
@media (prefers-color-scheme: dark) {
  .topbar-seo {
    --topbar-bg-gradient: linear-gradient(135deg, #cc5a00 0%, #ff7000 100%);
    --topbar-shadow: 0 2px 20px rgba(255, 112, 0, 0.2);
  }
}
@media (max-width: 768px) {
  .topbar-seo {
    display: none !important;
  }
}
.header {
  position: relative;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 27, 122, 0.05);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  animation: headerSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom-color: rgba(255, 112, 0, 0.1);
}
.header.is-sticky .header-inner {
  padding: 8px 0;
}
.header.is-sticky .header-logo-img {
  max-height: 40px;
  width: auto;
}
.header.is-sticky .header-logo-text .site-name {
  font-size: 20px;
}
.header .header-inner {
  padding: 15px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 992px) {
  .header .header-inner {
    padding: 12px 0;
  }
}
@media (max-width: 768px) {
  .header .header-inner {
    padding: 10px 0;
  }
}
.header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .header .container {
    padding: 0 15px;
  }
}
.header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 992px) {
  .header .header-wrapper {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .header .header-wrapper {
    gap: 10px;
  }
}
.header .header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header .header-logo .header-logo-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.header .header-logo .header-logo-link:hover {
  transform: scale(1.02);
}
.header .header-logo .header-logo-img {
  display: block;
  max-height: 60px;
  width: auto;
  height: auto;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .header .header-logo .header-logo-img {
    max-height: 50px;
  }
}
@media (max-width: 768px) {
  .header .header-logo .header-logo-img {
    max-height: 40px;
  }
}
.header .header-logo .header-logo-text {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.header .header-logo .header-logo-text .site-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text, #001B7A);
  line-height: 1.2;
  transition: color 0.3s ease;
}
@media (max-width: 992px) {
  .header .header-logo .header-logo-text .site-name {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .header .header-logo .header-logo-text .site-name {
    font-size: 18px;
  }
}
.header .header-logo .header-logo-text .site-description {
  font-size: 12px;
  color: rgba(0, 27, 122, 0.6);
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .header .header-logo .header-logo-text .site-description {
    font-size: 10px;
  }
}
.header .header-logo .header-logo-text:hover .site-name {
  color: var(--topbar-bg, #ff7000);
}
.header .header-navigation {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .header .header-navigation {
    flex: 0 0 auto;
  }
}
.header .menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--text, #001B7A);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
  border-radius: 8px;
  z-index: 100;
}
.header .menu-toggle:hover {
  color: var(--topbar-bg, #ff7000);
}
@media (max-width: 992px) {
  .header .menu-toggle {
    display: flex;
  }
}
.header .menu-toggle .menu-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}
.header .menu-toggle .menu-toggle-icon .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header .menu-toggle .menu-toggle-icon .bar:nth-child(2) {
  width: 70%;
}
.header .menu-toggle .menu-toggle-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .header .menu-toggle .menu-toggle-text {
    display: none;
  }
}
.header .menu-toggle.is-active .menu-toggle-icon .bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.header .menu-toggle.is-active .menu-toggle-icon .bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.header .menu-toggle.is-active .menu-toggle-icon .bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
.header .header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
@media (max-width: 992px) {
  .header .header-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding: 80px 20px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--topbar-bg, #ff7000);
    max-height: 100vh;
    overflow-y: auto;
    gap: 4px;
    z-index: 99;
    animation: menuSlideDown 0.3s ease;
  }
  .header .header-menu.is-open {
    display: flex;
  }
}
.header .header-menu > li {
  position: relative;
}
@media (max-width: 992px) {
  .header .header-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
  .header .header-menu > li:last-child {
    border-bottom: none;
  }
}
.header .header-menu > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  color: var(--text, #001B7A);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 992px) {
  .header .header-menu > li > a {
    padding: 14px 16px;
    width: 100%;
    border-radius: 6px;
    font-size: 15px;
  }
}
.header .header-menu > li > a .menu-link-text {
  position: relative;
  z-index: 1;
}
.header .header-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--topbar-bg, #ff7000);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
@media (max-width: 992px) {
  .header .header-menu > li > a::after {
    display: none;
  }
}
.header .header-menu > li > a:hover {
  color: var(--topbar-bg, #ff7000);
  background: rgba(255, 112, 0, 0.06);
}
.header .header-menu > li > a:hover::after {
  width: 60%;
}
.header .header-menu > li.current-menu-item > a, .header .header-menu > li.current-page-item > a {
  color: var(--topbar-bg, #ff7000);
  background: rgba(255, 112, 0, 0.08);
}
.header .header-menu > li.current-menu-item > a::after, .header .header-menu > li.current-page-item > a::after {
  width: 60%;
}
.header .header-menu > li .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #ffffff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  list-style: none;
  margin: 0;
  animation: menuSlideDown 0.3s ease;
}
.header .header-menu > li .sub-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 1px solid rgba(0, 0, 0, 0.04);
}
@media (max-width: 992px) {
  .header .header-menu > li .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 4px 0 4px 20px;
    background: rgba(0, 27, 122, 0.02);
    animation: none;
    display: none;
  }
  .header .header-menu > li .sub-menu::before {
    display: none;
  }
}
.header .header-menu > li .sub-menu li {
  width: 100%;
}
.header .header-menu > li .sub-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--text, #001B7A);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  border-radius: 6px;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .header .header-menu > li .sub-menu li a {
    font-size: 14px;
    padding: 10px 16px;
  }
}
.header .header-menu > li .sub-menu li a:hover {
  color: var(--topbar-bg, #ff7000);
  background: rgba(255, 112, 0, 0.06);
  padding-left: 20px;
}
.header .header-menu > li .sub-menu li.current-menu-item > a {
  color: var(--topbar-bg, #ff7000);
  background: rgba(255, 112, 0, 0.08);
}
@media (min-width: 993px) {
  .header .header-menu > li:hover > .sub-menu {
    display: block;
  }
}
@media (max-width: 992px) {
  .header .header-menu > li.is-open > .sub-menu {
    display: block;
  }
}
.header .header-menu > li.menu-item-has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  margin-left: 6px;
  opacity: 0.5;
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .header .header-menu > li.menu-item-has-children > a::after {
    margin-left: auto;
    font-size: 14px;
  }
}
.header .header-menu > li.is-open.menu-item-has-children > a::after {
  transform: rotate(180deg);
}
.header .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 100;
}
@media (max-width: 768px) {
  .header .header-actions {
    gap: 8px;
  }
}
.header .header-actions .header-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #ff7000, #ff8c38);
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 112, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .header .header-actions .header-cta-button {
    padding: 8px 18px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .header .header-actions .header-cta-button {
    padding: 6px 14px;
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .header .header-actions .header-cta-button {
    padding: 6px 12px;
    font-size: 10px;
    gap: 4px;
  }
  .header .header-actions .header-cta-button .cta-text {
    display: none;
  }
}
.header .header-actions .header-cta-button .cta-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}
@media (max-width: 480px) {
  .header .header-actions .header-cta-button .cta-icon {
    font-size: 12px;
  }
}
.header .header-actions .header-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 112, 0, 0.4);
}
.header .header-actions .header-cta-button:hover .cta-icon {
  transform: translateX(4px) rotate(-10deg);
}
.header .header-actions .header-cta-button:active {
  transform: scale(0.95);
}
.header .header-actions .header-search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 27, 122, 0.05);
  border: none;
  border-radius: 50%;
  color: var(--text, #001B7A);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .header .header-actions .header-search-toggle {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.header .header-actions .header-search-toggle:hover {
  background: rgba(255, 112, 0, 0.1);
  color: var(--topbar-bg, #ff7000);
  transform: rotate(15deg);
}
.header .header-search-form {
  display: none;
  padding: 20px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 27, 122, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.header .header-search-form.is-open {
  display: block;
  animation: searchSlideDown 0.3s ease;
}
.header .header-search-form .container {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .header-search-form .search-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 27, 122, 0.03);
  border-radius: 50px;
  padding: 4px 4px 4px 20px;
  border: 2px solid rgba(0, 27, 122, 0.06);
  transition: all 0.3s ease;
}
.header .header-search-form .search-form:focus-within {
  border-color: var(--topbar-bg, #ff7000);
  box-shadow: 0 0 0 4px rgba(255, 112, 0, 0.1);
}
.header .header-search-form .search-form .search-field {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text, #001B7A);
  outline: none;
}
.header .header-search-form .search-form .search-field::placeholder {
  color: rgba(0, 27, 122, 0.3);
}
.header .header-search-form .search-form .search-submit {
  padding: 10px 24px;
  background: linear-gradient(135deg, #ff7000, #ff8c38);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header .header-search-form .search-form .search-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(255, 112, 0, 0.3);
}
.header .header-search-form .search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 27, 122, 0.05);
  border: none;
  border-radius: 50%;
  color: var(--text, #001B7A);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.header .header-search-form .search-close:hover {
  background: rgba(255, 0, 0, 0.08);
  color: #ff0000;
  transform: rotate(90deg);
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes menuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes searchSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
  }
}
@media (max-width: 992px) {
  .header .header-menu .sub-menu {
    display: none !important;
  }
  .header .header-menu .sub-menu li a {
    padding: 8px 16px !important;
    font-size: 13px !important;
  }
  .header .header-menu .sub-menu li a:hover {
    padding-left: 20px !important;
  }
  .header .header-menu > li.is-open > .sub-menu {
    display: block !important;
  }
  .header .header-actions .header-cta-button {
    padding: 8px 16px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .header .header-inner {
    padding: 8px 0;
  }
  .header .header-actions {
    gap: 6px;
  }
  .header .header-actions .header-cta-button {
    padding: 6px 12px;
    font-size: 11px;
  }
  .header .header-actions .header-search-toggle {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .header .header-search-form {
    padding: 15px 0;
  }
  .header .header-search-form .search-form {
    padding: 2px 2px 2px 15px;
  }
  .header .header-search-form .search-form .search-field {
    font-size: 13px;
    padding: 8px 0;
  }
  .header .header-search-form .search-form .search-submit {
    padding: 8px 16px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .header .header-wrapper {
    gap: 6px;
  }
  .header .header-actions .header-cta-button .cta-text {
    display: none;
  }
  .header .header-actions .header-cta-button .cta-icon {
    font-size: 14px;
  }
  .header .header-search-form .search-form .search-submit {
    padding: 6px 12px;
    font-size: 11px;
  }
}
@media print {
  .header {
    position: static !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .header .header-navigation,
  .header .header-actions {
    display: none !important;
  }
  .header .header-inner {
    padding: 10px 0 !important;
  }
  .header .header-logo-img {
    max-height: 40px !important;
  }
}
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #001B7A, #0026a8);
  padding: 60px 0px 160px 0;
}
@media (max-width: 992px) {
  .hero {
    min-height: 500px;
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 450px;
    padding: 40px 0;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 400px;
    padding: 30px 0;
  }
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero .hero-background .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero .hero-background .hero-bg-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #001B7A 0%, #0026a8 50%, #0033d6 100%);
}
.hero .hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 27, 122, 0.85) 0%, rgba(0, 27, 122, 0.7) 50%, rgba(0, 27, 122, 0.5) 100%);
  z-index: 2;
  transition: opacity 0.3s ease;
}
.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero .hero-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 992px) {
  .hero .hero-wrapper {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .hero .hero-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
.hero .hero-content {
  flex: 1;
  max-width: 600px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero .hero-content {
    max-width: 100%;
    text-align: center;
  }
}
.hero .hero-content .hero-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .hero .hero-content .hero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    padding: 4px 12px;
  }
}
.hero .hero-content .hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .hero .hero-content .hero-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 480px) {
  .hero .hero-content .hero-title {
    font-size: 24px;
  }
}
.hero .hero-content .hero-title .highlight {
  color: #ff7000;
  position: relative;
}
.hero .hero-content .hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: #ff7000;
  border-radius: 2px;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-title .highlight::after {
    height: 3px;
  }
}
.hero .hero-content .hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 500px;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-description {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .hero .hero-content .hero-description {
    font-size: 14px;
  }
}
.hero .hero-content .hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-buttons {
    justify-content: center;
    gap: 12px;
  }
}
.hero .hero-content .hero-buttons .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-buttons .hero-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .hero .hero-content .hero-buttons .hero-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}
.hero .hero-content .hero-buttons .hero-btn .btn-text {
  position: relative;
  z-index: 1;
}
.hero .hero-content .hero-buttons .hero-btn .btn-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  font-size: 14px;
}
.hero .hero-content .hero-buttons .hero-btn.hero-btn-primary {
  background: linear-gradient(135deg, #ff7000, #ff8c38);
  color: #ffffff;
  box-shadow: 0 4px 25px rgba(255, 112, 0, 0.35);
}
.hero .hero-content .hero-buttons .hero-btn.hero-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.hero .hero-content .hero-buttons .hero-btn.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 112, 0, 0.45);
}
.hero .hero-content .hero-buttons .hero-btn.hero-btn-primary:hover::before {
  left: 100%;
}
.hero .hero-content .hero-buttons .hero-btn.hero-btn-primary:hover .btn-icon {
  transform: translateX(6px) rotate(-10deg);
}
.hero .hero-content .hero-buttons .hero-btn.hero-btn-primary:active {
  transform: scale(0.95);
}
.hero .hero-content .hero-buttons .hero-btn.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero .hero-content .hero-buttons .hero-btn.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.hero .hero-content .hero-buttons .hero-btn.hero-btn-secondary:hover .btn-icon {
  transform: scale(1.1);
}
.hero .hero-content .hero-buttons .hero-btn.hero-btn-secondary:active {
  transform: scale(0.95);
}
.hero .hero-content .hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .hero .hero-content .hero-stats {
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
  }
}
@media (max-width: 480px) {
  .hero .hero-content .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.hero .hero-content .hero-stats .hero-stat {
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .hero .hero-content .hero-stats .hero-stat {
    align-items: center;
  }
}
.hero .hero-content .hero-stats .hero-stat .stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #ff7000;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-stats .hero-stat .stat-number {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .hero .hero-content .hero-stats .hero-stat .stat-number {
    font-size: 20px;
  }
}
.hero .hero-content .hero-stats .hero-stat .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-stats .hero-stat .stat-label {
    font-size: 11px;
  }
}
.hero .hero-image {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
}
@media (max-width: 992px) {
  .hero .hero-image {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media (max-width: 768px) {
  .hero .hero-image {
    display: none;
  }
}
.hero .hero-image .hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero .hero-image .hero-image-wrapper .hero-image-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero .hero-image .hero-image-wrapper .hero-image-img:hover {
  transform: scale(1.02);
}
.hero .hero-image .hero-image-wrapper .hero-image-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.hero .hero-image .hero-image-wrapper .hero-image-decoration .decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 112, 0, 0.1);
  border: 2px solid rgba(255, 112, 0, 0.15);
}
.hero .hero-image .hero-image-wrapper .hero-image-decoration .decoration-circle.decoration-1 {
  width: 200px;
  height: 200px;
  top: -60px;
  right: -60px;
  animation: floatCircle 8s ease-in-out infinite;
}
.hero .hero-image .hero-image-wrapper .hero-image-decoration .decoration-circle.decoration-2 {
  width: 120px;
  height: 120px;
  bottom: -40px;
  left: -40px;
  animation: floatCircle 10s ease-in-out infinite reverse;
}
.hero .hero-image .hero-image-wrapper .hero-image-decoration .decoration-circle.decoration-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: -30px;
  animation: floatCircle 6s ease-in-out infinite;
}
.hero .hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 4;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero .hero-wave {
    height: 50px;
  }
}
.hero .hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero .hero-wave svg path {
  fill: #ffffff;
}
@keyframes floatCircle {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero .hero-subtitle {
  animation: fadeInUp 0.6s ease forwards;
}
.hero .hero-title {
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}
.hero .hero-description {
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}
.hero .hero-buttons {
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}
.hero .hero-stats {
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}
.hero .hero-image {
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero .hero-subtitle,
  .hero .hero-title,
  .hero .hero-description,
  .hero .hero-buttons,
  .hero .hero-stats,
  .hero .hero-image {
    animation: none !important;
    opacity: 1 !important;
  }
  .hero .decoration-circle {
    animation: none !important;
  }
  .hero .hero-btn-primary::before {
    display: none !important;
  }
}
@media print {
  .hero {
    min-height: auto !important;
    padding: 40px 0 !important;
    background: #001B7A !important;
  }
  .hero .hero-background {
    display: none !important;
  }
  .hero .hero-wave {
    display: none !important;
  }
  .hero .hero-image {
    display: none !important;
  }
  .hero .hero-content {
    max-width: 100% !important;
    text-align: left !important;
  }
  .hero .hero-content .hero-title {
    font-size: 28px !important;
  }
  .hero .hero-content .hero-description {
    font-size: 16px !important;
  }
  .hero .hero-content .hero-buttons .hero-btn {
    padding: 10px 20px !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #333 !important;
    box-shadow: none !important;
  }
  .hero .hero-content .hero-stats {
    border-top-color: #ddd !important;
  }
}
.about {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .about {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
}
.about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .about .container {
    padding: 0 15px;
  }
}
.about .about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 768px) {
  .about .about-wrapper {
    gap: 30px;
  }
}
.about .about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .about .about-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.about .about-cards .about-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .about .about-cards .about-card {
    padding: 20px;
    gap: 16px;
  }
}
.about .about-cards .about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--card-color, #ff7000);
}
.about .about-cards .about-card .about-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 112, 0, 0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .about .about-cards .about-card .about-card-icon {
    width: 48px;
    height: 48px;
  }
}
.about .about-cards .about-card .about-card-icon i {
  font-size: 24px;
  color: var(--card-color, #ff7000);
}
@media (max-width: 768px) {
  .about .about-cards .about-card .about-card-icon i {
    font-size: 20px;
  }
}
.about .about-cards .about-card .about-card-content {
  flex: 1;
}
.about .about-cards .about-card .about-card-content .about-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #001B7A;
  margin-bottom: 4px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .about .about-cards .about-card .about-card-content .about-card-title {
    font-size: 15px;
  }
}
.about .about-cards .about-card .about-card-content .about-card-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .about .about-cards .about-card .about-card-content .about-card-description {
    font-size: 13px;
  }
}
.about .about-cards .about-card:nth-child(1) .about-card-icon {
  background: rgba(255, 112, 0, 0.08);
}
.about .about-cards .about-card:nth-child(1):hover {
  border-color: #ff7000;
}
.about .about-cards .about-card:nth-child(2) .about-card-icon {
  background: rgba(0, 27, 122, 0.08);
}
.about .about-cards .about-card:nth-child(2):hover {
  border-color: #001B7A;
}
.about .about-main {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 992px) {
  .about .about-main {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .about .about-main {
    flex-direction: column;
    gap: 30px;
  }
}
.about .about-image {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
}
@media (max-width: 992px) {
  .about .about-image {
    flex: 0 0 42%;
    max-width: 42%;
  }
}
@media (max-width: 768px) {
  .about .about-image {
    flex: 0 0 100%;
    max-width: 100%;
    order: -1;
  }
}
.about .about-image .about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}
@media (max-width: 768px) {
  .about .about-image .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
.about .about-image .about-image-wrapper .about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about .about-image .about-image-wrapper .about-img:hover {
  transform: scale(1.02);
}
.about .about-image .about-image-wrapper .about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .about .about-image .about-image-wrapper .about-badge {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .about .about-image .about-image-wrapper .about-badge {
    bottom: 10px;
    right: 10px;
    padding: 10px 14px;
    gap: 8px;
  }
}
.about .about-image .about-image-wrapper .about-badge .badge-number {
  font-size: 28px;
  font-weight: 700;
  color: #ff7000;
  line-height: 1;
}
@media (max-width: 768px) {
  .about .about-image .about-image-wrapper .about-badge .badge-number {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .about .about-image .about-image-wrapper .about-badge .badge-number {
    font-size: 18px;
  }
}
.about .about-image .about-image-wrapper .about-badge .badge-text {
  font-size: 12px;
  color: #001B7A;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .about .about-image .about-image-wrapper .about-badge .badge-text {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .about .about-image .about-image-wrapper .about-badge .badge-text {
    font-size: 9px;
  }
}
.about .about-image .about-image-placeholder {
  width: 100%;
  aspect-ratio: 6/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #001B7A, #0026a8);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 27, 122, 0.15);
}
.about .about-image .about-image-placeholder i {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .about .about-image .about-image-placeholder i {
    font-size: 80px;
  }
}
.about .about-content {
  flex: 1;
  max-width: 600px;
}
@media (max-width: 768px) {
  .about .about-content {
    max-width: 100%;
    text-align: center;
  }
}
.about .about-content .about-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff7000;
  margin-bottom: 12px;
  padding: 4px 16px;
  border: 1px solid rgba(255, 112, 0, 0.15);
  border-radius: 50px;
  background: rgba(255, 112, 0, 0.05);
}
@media (max-width: 768px) {
  .about .about-content .about-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
}
.about .about-content .about-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #001B7A;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .about .about-content .about-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .about .about-content .about-title {
    font-size: 28px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .about .about-content .about-title {
    font-size: 24px;
  }
}
.about .about-content .about-title .highlight {
  color: #ff7000;
  position: relative;
}
.about .about-content .about-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #ff7000;
  border-radius: 2px;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .about .about-content .about-title .highlight::after {
    height: 2px;
  }
}
.about .about-content .about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 28px;
  max-width: 500px;
}
@media (max-width: 768px) {
  .about .about-content .about-description {
    max-width: 100%;
    text-align: center;
    font-size: 15px;
  }
}
.about .about-content .about-description p {
  margin-bottom: 12px;
}
.about .about-content .about-description p:last-child {
  margin-bottom: 0;
}
.about .about-content .about-cta {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .about .about-content .about-cta {
    text-align: center;
  }
}
.about .about-content .about-cta .about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff7000, #ff8c38);
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 25px rgba(255, 112, 0, 0.3);
}
@media (max-width: 768px) {
  .about .about-content .about-cta .about-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .about .about-content .about-cta .about-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.about .about-content .about-cta .about-btn .btn-icon {
  transition: transform 0.3s ease;
}
.about .about-content .about-cta .about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 112, 0, 0.4);
}
.about .about-content .about-cta .about-btn:hover .btn-icon {
  transform: translateX(6px) rotate(-10deg);
}
.about .about-content .about-cta .about-btn:active {
  transform: scale(0.95);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about .about-cards .about-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.about .about-cards .about-card:nth-child(1) {
  animation-delay: 0.1s;
}
.about .about-cards .about-card:nth-child(2) {
  animation-delay: 0.2s;
}
.about .about-image {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.3s forwards;
}
.about .about-content .about-subtitle {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}
.about .about-content .about-title {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.3s forwards;
}
.about .about-content .about-description {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.4s forwards;
}
.about .about-content .about-cta {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.5s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .about .about-card,
  .about .about-image,
  .about .about-content .about-subtitle,
  .about .about-content .about-title,
  .about .about-content .about-description,
  .about .about-content .about-cta {
    animation: none !important;
    opacity: 1 !important;
  }
}
@media print {
  .about {
    padding: 40px 0 !important;
    background: #fff !important;
  }
  .about .about-cards .about-card {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    background: #f8f9fa !important;
  }
  .about .about-image {
    display: none !important;
  }
  .about .about-content {
    max-width: 100% !important;
  }
  .about .about-content .about-title {
    font-size: 28px !important;
    color: #001B7A !important;
  }
  .about .about-content .about-btn {
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #333 !important;
    box-shadow: none !important;
  }
}
.about .about-card .about-card-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about .about-card .about-card-icon i {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about .about-card:hover .about-card-icon {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 8px 25px rgba(255, 112, 0, 0.15);
}
.about .about-card:hover .about-card-icon i {
  transform: scale(1.15);
}
.about .about-title-icon {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about .about-title-icon:hover {
  transform: scale(1.12) rotate(-8deg);
  color: #ff7000;
}
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.about .about-card-icon.pulse {
  animation: iconPulse 3s ease-in-out infinite;
}

.advantages {
  padding: 120px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .advantages {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .advantages {
    padding: 40px 0;
  }
}
.advantages .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .advantages .container {
    padding: 0 15px;
  }
}
.advantages .advantages-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 992px) {
  .advantages .advantages-wrapper {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .advantages .advantages-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.advantages .advantages-image {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
}
@media (max-width: 992px) {
  .advantages .advantages-image {
    flex: 0 0 42%;
    max-width: 42%;
  }
}
@media (max-width: 768px) {
  .advantages .advantages-image {
    flex: 0 0 100%;
    max-width: 100%;
    order: -1;
  }
}
.advantages .advantages-image .advantages-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}
@media (max-width: 768px) {
  .advantages .advantages-image .advantages-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}
.advantages .advantages-image .advantages-image-wrapper .advantages-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.advantages .advantages-image .advantages-image-wrapper .advantages-img:hover {
  transform: scale(1.02);
}
.advantages .advantages-image .advantages-image-wrapper .advantages-image-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.advantages .advantages-image .advantages-image-wrapper .advantages-image-decoration .decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 112, 0, 0.06);
  border: 2px solid rgba(255, 112, 0, 0.08);
}
.advantages .advantages-image .advantages-image-wrapper .advantages-image-decoration .decoration-circle.decoration-1 {
  width: 200px;
  height: 200px;
  top: -60px;
  right: -60px;
  animation: floatCircle 8s ease-in-out infinite;
}
.advantages .advantages-image .advantages-image-wrapper .advantages-image-decoration .decoration-circle.decoration-2 {
  width: 120px;
  height: 120px;
  bottom: -40px;
  left: -40px;
  animation: floatCircle 10s ease-in-out infinite reverse;
}
.advantages .advantages-image .advantages-image-wrapper .advantages-image-decoration .decoration-circle.decoration-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: -30px;
  animation: floatCircle 6s ease-in-out infinite;
  background: rgba(0, 27, 122, 0.05);
  border-color: rgba(0, 27, 122, 0.08);
}
.advantages .advantages-image .advantages-placeholder {
  width: 100%;
  aspect-ratio: 6/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #001B7A, #0026a8);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 27, 122, 0.15);
}
.advantages .advantages-image .advantages-placeholder i {
  font-size: 120px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .advantages .advantages-image .advantages-placeholder i {
    font-size: 80px;
  }
}
.advantages .advantages-content {
  flex: 1;
  max-width: 600px;
}
@media (max-width: 768px) {
  .advantages .advantages-content {
    max-width: 100%;
    text-align: center;
  }
}
.advantages .advantages-content .advantages-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #f5f1ed;
  margin-bottom: 12px;
  padding: 4px 16px;
  border: 1px solid rgba(255, 112, 0, 0.15);
  border-radius: 50px;
  background: rgba(233, 218, 206, 0.65);
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
}
.advantages .advantages-content .advantages-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .advantages .advantages-content .advantages-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-title {
    font-size: 28px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .advantages .advantages-content .advantages-title {
    font-size: 24px;
  }
}
.advantages .advantages-content .advantages-title .highlight {
  color: #ff7000;
  position: relative;
}
.advantages .advantages-content .advantages-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #ff7000;
  border-radius: 2px;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-title .highlight::after {
    height: 2px;
  }
}
.advantages .advantages-content .advantages-description {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 500px;
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-description {
    max-width: 100%;
    text-align: center;
    font-size: 15px;
  }
}
.advantages .advantages-content .advantages-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-list {
    align-items: center;
    gap: 16px;
  }
}
.advantages .advantages-content .advantages-list .advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 500px;
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-list .advantage-item {
    max-width: 100%;
    padding: 14px 16px;
    gap: 14px;
  }
}
.advantages .advantages-content .advantages-list .advantage-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 112, 0, 0.1);
}
.advantages .advantages-content .advantages-list .advantage-item:hover .advantage-icon {
  transform: scale(1.05) rotate(-5deg);
}
.advantages .advantages-content .advantages-list .advantage-item .advantage-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 112, 0, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-list .advantage-item .advantage-icon {
    width: 44px;
    height: 44px;
  }
}
.advantages .advantages-content .advantages-list .advantage-item .advantage-icon i {
  font-size: 22px;
  color: var(--benefit-color, #ff7000);
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-list .advantage-item .advantage-icon i {
    font-size: 18px;
  }
}
.advantages .advantages-content .advantages-list .advantage-item .advantage-content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-list .advantage-item .advantage-content {
    text-align: left;
  }
}
.advantages .advantages-content .advantages-list .advantage-item .advantage-content .advantage-title {
  font-size: 17px;
  font-weight: 600;
  color: #001B7A;
  margin-bottom: 4px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-list .advantage-item .advantage-content .advantage-title {
    font-size: 15px;
  }
}
.advantages .advantages-content .advantages-list .advantage-item .advantage-content .advantage-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-list .advantage-item .advantage-content .advantage-description {
    font-size: 13px;
  }
}
.advantages .advantages-content .advantages-list .advantage-item:nth-child(1) .advantage-icon {
  background: rgba(255, 112, 0, 0.1);
}
.advantages .advantages-content .advantages-list .advantage-item:nth-child(1):hover {
  border-color: rgba(255, 112, 0, 0.2);
}
.advantages .advantages-content .advantages-list .advantage-item:nth-child(2) .advantage-icon {
  background: rgba(0, 27, 122, 0.08);
}
.advantages .advantages-content .advantages-list .advantage-item:nth-child(2):hover {
  border-color: rgba(0, 27, 122, 0.15);
}
.advantages .advantages-content .advantages-list .advantage-item:nth-child(3) .advantage-icon {
  background: rgba(255, 112, 0, 0.08);
}
.advantages .advantages-content .advantages-list .advantage-item:nth-child(3):hover {
  border-color: rgba(255, 112, 0, 0.2);
}
.advantages .advantages-content .advantages-cta {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-cta {
    text-align: center;
  }
}
.advantages .advantages-content .advantages-cta .advantages-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff7000, #ff8c38);
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 25px rgba(255, 112, 0, 0.3);
}
@media (max-width: 768px) {
  .advantages .advantages-content .advantages-cta .advantages-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
.advantages .advantages-content .advantages-cta .advantages-btn .btn-icon {
  transition: transform 0.3s ease;
}
.advantages .advantages-content .advantages-cta .advantages-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 112, 0, 0.4);
}
.advantages .advantages-content .advantages-cta .advantages-btn:hover .btn-icon {
  transform: translateX(6px) rotate(-10deg);
}
.advantages .advantages-content .advantages-cta .advantages-btn:active {
  transform: scale(0.95);
}
@keyframes floatCircle {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
.advantages .advantages-subtitle,
.advantages .advantages-title,
.advantages .advantages-description,
.advantages .advantage-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.advantages .advantages-subtitle {
  animation-delay: 0.1s;
}
.advantages .advantages-title {
  animation-delay: 0.2s;
}
.advantages .advantages-description {
  animation-delay: 0.3s;
}
.advantages .advantage-item:nth-child(1) {
  animation-delay: 0.4s;
}
.advantages .advantage-item:nth-child(2) {
  animation-delay: 0.5s;
}
.advantages .advantage-item:nth-child(3) {
  animation-delay: 0.6s;
}
.advantages .advantages-cta {
  animation: fadeInUp 0.6s ease 0.7s forwards;
  opacity: 0;
}
.advantages .advantages-image {
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .advantages .advantages-subtitle,
  .advantages .advantages-title,
  .advantages .advantages-description,
  .advantages .advantage-item,
  .advantages .advantages-cta,
  .advantages .advantages-image {
    animation: none !important;
    opacity: 1 !important;
  }
  .advantages .decoration-circle {
    animation: none !important;
  }
}
@media print {
  .advantages {
    padding: 40px 0 !important;
    background: #fff !important;
  }
  .advantages .advantages-image {
    display: none !important;
  }
  .advantages .advantages-content {
    max-width: 100% !important;
  }
  .advantages .advantages-content .advantages-title {
    font-size: 28px !important;
    color: #001B7A !important;
  }
  .advantages .advantages-content .advantages-list .advantage-item {
    border: 1px solid #ddd !important;
    box-shadow: none !important;
    background: #f8f9fa !important;
  }
  .advantages .advantages-content .advantages-btn {
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #333 !important;
    box-shadow: none !important;
  }
}
.budget {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .budget {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .budget {
    padding: 40px 0;
  }
}
.budget .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .budget .container {
    padding: 0 15px;
  }
}
.budget .budget-header {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .budget .budget-header {
    margin-bottom: 30px;
  }
}
.budget .budget-header .budget-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff7000;
  margin-bottom: 12px;
  padding: 4px 16px;
  border: 1px solid rgba(255, 112, 0, 0.15);
  border-radius: 50px;
  background: rgba(255, 112, 0, 0.05);
}
@media (max-width: 768px) {
  .budget .budget-header .budget-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
}
.budget .budget-header .budget-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #001B7A;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .budget .budget-header .budget-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .budget .budget-header .budget-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .budget .budget-header .budget-title {
    font-size: 24px;
  }
}
.budget .budget-header .budget-title .highlight {
  color: #ff7000;
  position: relative;
}
.budget .budget-header .budget-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #ff7000;
  border-radius: 2px;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .budget .budget-header .budget-title .highlight::after {
    height: 2px;
  }
}
.budget .budget-header .budget-description {
  font-size: 16px;
  color: #6c757d;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .budget .budget-header .budget-description {
    font-size: 15px;
    max-width: 100%;
  }
}
.budget .budget-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
@media (max-width: 992px) {
  .budget .budget-form-wrapper {
    padding: 35px;
  }
}
@media (max-width: 768px) {
  .budget .budget-form-wrapper {
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .budget .budget-form-wrapper {
    padding: 20px 15px;
  }
}
.budget .budget-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .budget .budget-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.budget .budget-form .form-group {
  position: relative;
}
.budget .budget-form .form-group .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #001B7A;
  margin-bottom: 8px;
}
.budget .budget-form .form-group .form-label i {
  color: #ff7000;
  font-size: 14px;
  width: 18px;
}
.budget .budget-form .form-group .form-label .required {
  color: #ff0000;
  font-weight: 700;
  margin-left: 2px;
}
.budget .budget-form .form-group .form-input,
.budget .budget-form .form-group .form-select,
.budget .budget-form .form-group .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.budget .budget-form .form-group .form-input:focus,
.budget .budget-form .form-group .form-select:focus,
.budget .budget-form .form-group .form-textarea:focus {
  border-color: #ff7000;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 112, 0, 0.08);
}
.budget .budget-form .form-group .form-input:hover,
.budget .budget-form .form-group .form-select:hover,
.budget .budget-form .form-group .form-textarea:hover {
  background: #ffffff;
  border-color: #dde1e6;
}
.budget .budget-form .form-group .form-input::placeholder,
.budget .budget-form .form-group .form-select::placeholder,
.budget .budget-form .form-group .form-textarea::placeholder {
  color: #adb5bd;
  font-weight: 400;
}
.budget .budget-form .form-group .form-input.error,
.budget .budget-form .form-group .form-select.error,
.budget .budget-form .form-group .form-textarea.error {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.02);
}
.budget .budget-form .form-group .form-input.error:focus,
.budget .budget-form .form-group .form-select.error:focus,
.budget .budget-form .form-group .form-textarea.error:focus {
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.08);
}
.budget .budget-form .form-group .form-input.success,
.budget .budget-form .form-group .form-select.success,
.budget .budget-form .form-group .form-textarea.success {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.02);
}
.budget .budget-form .form-group .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.budget .budget-form .form-group .form-select option {
  padding: 8px;
}
.budget .budget-form .form-group .form-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
  line-height: 1.6;
}
.budget .budget-form .form-group .form-counter {
  position: absolute;
  bottom: 8px;
  right: 16px;
  font-size: 11px;
  color: #adb5bd;
  pointer-events: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.budget .budget-form .form-group .form-counter.active {
  color: #ff7000;
}
.budget .budget-form .form-group .form-counter.warning {
  color: #ffc107;
}
.budget .budget-form .form-group .form-counter.danger {
  color: #ff0000;
}
.budget .budget-form .form-group .form-error {
  display: none;
  font-size: 12px;
  color: #ff0000;
  margin-top: 6px;
  font-weight: 500;
  align-items: center;
  gap: 4px;
}
.budget .budget-form .form-group .form-error::before {
  content: "⚠";
  font-size: 14px;
}
.budget .budget-form .form-group .form-error.visible {
  display: flex;
}
.budget .budget-form .form-actions {
  margin-top: 30px;
  text-align: center;
}
.budget .budget-form .form-actions .budget-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.3);
  width: 100%;
  max-width: 450px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .budget .budget-form .form-actions .budget-submit {
    padding: 14px 24px;
    font-size: 15px;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .budget .budget-form .form-actions .budget-submit {
    padding: 12px 20px;
    font-size: 14px;
  }
}
.budget .budget-form .form-actions .budget-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}
.budget .budget-form .form-actions .budget-submit i {
  font-size: 20px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .budget .budget-form .form-actions .budget-submit i {
    font-size: 18px;
  }
}
.budget .budget-form .form-actions .budget-submit .btn-text {
  flex: 1;
}
.budget .budget-form .form-actions .budget-submit .btn-arrow {
  font-size: 14px;
}
.budget .budget-form .form-actions .budget-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}
.budget .budget-form .form-actions .budget-submit:hover::before {
  left: 100%;
}
.budget .budget-form .form-actions .budget-submit:hover .btn-arrow {
  transform: translateX(6px) rotate(-10deg);
}
.budget .budget-form .form-actions .budget-submit:active {
  transform: scale(0.95);
}
.budget .budget-form .form-actions .budget-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.budget .budget-form .form-actions .budget-submit .spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.budget .budget-form .form-actions .budget-submit.loading .spinner {
  display: block;
}
.budget .budget-form .form-actions .budget-submit.loading .btn-text,
.budget .budget-form .form-actions .budget-submit.loading i:not(.spinner) {
  display: none;
}
.budget .budget-form .form-actions .form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: #6c757d;
}
.budget .budget-form .form-actions .form-note i {
  color: #28a745;
  font-size: 14px;
}
@media (max-width: 480px) {
  .budget .budget-form .form-actions .form-note {
    font-size: 12px;
    flex-wrap: wrap;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.budget .budget-header {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.budget .budget-form-wrapper {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .budget .budget-header,
  .budget .budget-form-wrapper {
    animation: none !important;
    opacity: 1 !important;
  }
  .budget .budget-submit::before {
    display: none !important;
  }
}

@media print {
  .budget {
    padding: 40px 0 !important;
    background: #fff !important;
  }
  .budget .budget-form-wrapper {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
  .budget .budget-submit {
    border: 1px solid #ddd !important;
    background: #f8f9fa !important;
    color: #333 !important;
    box-shadow: none !important;
  }
  .budget .form-input,
  .budget .form-select,
  .budget .form-textarea {
    border-color: #ddd !important;
    background: #f8f9fa !important;
  }
}
.footer {
  background-color: #034590;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 120, 53, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF7835, #BAC5B1, #034590);
  opacity: 0.3;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .footer .container {
    padding: 0 15px;
  }
}
.footer .footer-main {
  padding: 60px 0 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .footer .footer-main {
    padding: 40px 0 30px;
  }
}
@media (max-width: 768px) {
  .footer .footer-main {
    padding: 30px 0 20px;
  }
}
.footer .footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.footer .footer-grid.footer-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .footer .footer-grid.footer-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer .footer-grid.footer-grid-3 {
    grid-template-columns: 1fr;
  }
}
.footer .footer-grid.footer-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .footer .footer-grid.footer-grid-2 {
    grid-template-columns: 1fr;
  }
}
.footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .footer-col .footer-col-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 5px;
  padding-bottom: 12px;
  position: relative;
  letter-spacing: 0.3px;
}
.footer .footer-col .footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #FF7835;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .footer .footer-col .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
  }
}
@media (max-width: 768px) {
  .footer .footer-col .footer-col-title {
    text-align: center;
    font-size: 17px;
  }
}
.footer .footer-col-about .footer-logo {
  margin-bottom: 5px;
}
.footer .footer-col-about .footer-logo .footer-logo-img {
  max-height: 50px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .footer .footer-col-about .footer-logo .footer-logo-img {
    margin: 0 auto;
    max-height: 40px;
  }
}
.footer .footer-col-about .footer-logo .footer-site-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .footer .footer-col-about .footer-logo .footer-site-name {
    text-align: center;
    font-size: 20px;
  }
}
.footer .footer-col-about .footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 300px;
}
@media (max-width: 768px) {
  .footer .footer-col-about .footer-description {
    max-width: 100%;
    text-align: center;
    font-size: 13px;
  }
}
.footer .footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .footer .footer-social {
    justify-content: center;
    gap: 10px;
  }
}
.footer .footer-social .footer-social-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
@media (max-width: 480px) {
  .footer .footer-social .footer-social-label {
    font-size: 12px;
  }
}
.footer .footer-social .footer-social-links {
  display: flex;
  gap: 6px;
}
.footer .footer-social .footer-social-links .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.footer .footer-social .footer-social-links .footer-social-link .social-label {
  display: none;
}
.footer .footer-social .footer-social-links .footer-social-link:hover {
  transform: translateY(-3px);
  background: #FF7835;
  color: #ffffff;
  border-color: #FF7835;
  box-shadow: 0 4px 20px rgba(255, 120, 53, 0.3);
}
.footer .footer-social .footer-social-links .footer-social-link:hover i {
  transform: scale(1.1);
}
.footer .footer-social .footer-social-links .footer-social-link i {
  transition: transform 0.3s ease;
}
.footer .footer-social .footer-social-links .footer-social-link.footer-social-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
}
.footer .footer-social .footer-social-links .footer-social-link.footer-social-instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3);
}
.footer .footer-social .footer-social-links .footer-social-link.footer-social-youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}
.footer .footer-social .footer-social-links .footer-social-link.footer-social-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  box-shadow: 0 4px 20px rgba(10, 102, 194, 0.3);
}
.footer .footer-col-links .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .footer .footer-col-links .footer-menu {
    align-items: center;
  }
}
.footer .footer-col-links .footer-menu li {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .footer .footer-col-links .footer-menu li {
    width: 100%;
    justify-content: center;
  }
}
.footer .footer-col-links .footer-menu li::before {
  content: "›";
  color: #FF7835;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 768px) {
  .footer .footer-col-links .footer-menu li::before {
    display: none;
  }
}
.footer .footer-col-links .footer-menu li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 0;
}
.footer .footer-col-links .footer-menu li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FF7835;
  transition: width 0.3s ease;
}
@media (max-width: 768px) {
  .footer .footer-col-links .footer-menu li a::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer .footer-col-links .footer-menu li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.footer .footer-col-links .footer-menu li a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .footer .footer-col-links .footer-menu li a:hover {
    transform: none;
  }
}
.footer .footer-col-contact .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 768px) {
  .footer .footer-col-contact .footer-contact-list {
    align-items: center;
    gap: 12px;
  }
}
.footer .footer-col-contact .footer-contact-list .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
@media (max-width: 768px) {
  .footer .footer-col-contact .footer-contact-list .footer-contact-item {
    width: 100%;
    justify-content: center;
  }
}
.footer .footer-col-contact .footer-contact-list .footer-contact-item i {
  color: #FF7835;
  font-size: 16px;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .footer .footer-col-contact .footer-contact-list .footer-contact-item i {
    font-size: 15px;
  }
}
.footer .footer-col-contact .footer-contact-list .footer-contact-item .contact-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 768px) {
  .footer .footer-col-contact .footer-contact-list .footer-contact-item .contact-content {
    text-align: center;
  }
}
.footer .footer-col-contact .footer-contact-list .footer-contact-item .contact-content .contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}
.footer .footer-col-contact .footer-contact-list .footer-contact-item .contact-content .contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  font-weight: 500;
}
.footer .footer-col-contact .footer-contact-list .footer-contact-item .contact-content .contact-link:hover {
  color: #FF7835;
}
.footer .footer-col-contact .footer-contact-list .footer-contact-item .contact-content .contact-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}
.footer .footer-col-contact .footer-contact-list .footer-contact-item.footer-contact-hours .contact-text {
  color: #BAC5B1;
}
.footer .footer-col-newsletter .footer-newsletter-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 5px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .footer .footer-col-newsletter .footer-newsletter-text {
    text-align: center;
    font-size: 13px;
  }
}
.footer .footer-col-newsletter .footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-col-newsletter .footer-newsletter-form .newsletter-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.footer .footer-col-newsletter .footer-newsletter-form .newsletter-input-group:focus-within {
  border-color: #FF7835;
  box-shadow: 0 0 0 3px rgba(255, 120, 53, 0.15);
}
.footer .footer-col-newsletter .footer-newsletter-form .newsletter-input-group .newsletter-input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  min-width: 0;
}
.footer .footer-col-newsletter .footer-newsletter-form .newsletter-input-group .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer .footer-col-newsletter .footer-newsletter-form .newsletter-input-group .newsletter-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #FF7835;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.footer .footer-col-newsletter .footer-newsletter-form .newsletter-input-group .newsletter-submit:hover {
  background: rgb(100%, 33.6924868957%, 0.7843137255%);
  transform: scale(1.05);
}
.footer .footer-col-newsletter .footer-newsletter-form .newsletter-input-group .newsletter-submit:active {
  transform: scale(0.95);
}
.footer .footer-col-newsletter .footer-newsletter-form .newsletter-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}
.footer .footer-col-newsletter .footer-newsletter-form .newsletter-note i {
  font-size: 12px;
  color: #BAC5B1;
}
@media (max-width: 768px) {
  .footer .footer-col-newsletter .footer-newsletter-form .newsletter-note {
    justify-content: center;
  }
}
.footer .footer-col-newsletter .footer-social-mobile {
  display: none;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .footer .footer-col-newsletter .footer-social-mobile {
    display: block;
    text-align: center;
  }
}
.footer .footer-col-newsletter .footer-social-mobile .footer-social-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer .footer-col-newsletter .footer-social-mobile .footer-social-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.footer .footer-col-newsletter .footer-social-mobile .footer-social-links .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.footer .footer-col-newsletter .footer-social-mobile .footer-social-links .footer-social-link:hover {
  transform: translateY(-3px);
  background: #FF7835;
  color: #ffffff;
  border-color: #FF7835;
}
.footer .footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer .footer-bottom {
    padding: 15px 0;
  }
}
.footer .footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-wrapper {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.footer .footer-bottom .footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-copyright {
    font-size: 12px;
  }
}
.footer .footer-bottom .footer-copyright .footer-copyright-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-bottom .footer-copyright .footer-copyright-link:hover {
  color: #FF7835;
}
.footer .footer-bottom .footer-bottom-nav .footer-bottom-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-nav .footer-bottom-menu {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer .footer-bottom .footer-bottom-nav .footer-bottom-menu li a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-nav .footer-bottom-menu li a {
    font-size: 12px;
  }
}
.footer .footer-bottom .footer-bottom-nav .footer-bottom-menu li a:hover {
  color: #ffffff;
}
.footer .footer-bottom .footer-bottom-nav .footer-bottom-menu li:not(:last-child)::after {
  content: "|";
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-nav .footer-bottom-menu li:not(:last-child)::after {
    display: none;
  }
}
.footer .footer-bottom .footer-back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 120, 53, 0.15);
  border: 1px solid rgba(255, 120, 53, 0.2);
  border-radius: 50%;
  color: #FF7835;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-back-top {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
.footer .footer-bottom .footer-back-top:hover {
  background: #FF7835;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(255, 120, 53, 0.3);
}
.footer .footer-bottom .footer-back-top:active {
  transform: scale(0.9);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer .footer-col {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.footer .footer-col:nth-child(1) {
  animation-delay: 0.1s;
}
.footer .footer-col:nth-child(2) {
  animation-delay: 0.2s;
}
.footer .footer-col:nth-child(3) {
  animation-delay: 0.3s;
}
.footer .footer-col:nth-child(4) {
  animation-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .footer .footer-col {
    animation: none !important;
    opacity: 1 !important;
  }
  .footer-social-link,
  .footer-back-top {
    transition: none !important;
  }
  .footer-social-link:hover,
  .footer-back-top:hover {
    transform: none !important;
  }
}
@media print {
  .footer {
    background: #034590 !important;
    color: #ffffff !important;
  }
  .footer .footer-social,
  .footer .footer-newsletter-form,
  .footer .footer-back-top {
    display: none !important;
  }
  .footer .footer-main {
    padding: 30px 0 !important;
  }
  .footer .footer-grid {
    gap: 20px !important;
  }
  .footer .footer-col-title::after {
    display: none !important;
  }
}
