* {
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  width: 100%;
  padding: 0;
  margin: 0;
}

.section-padding {
  padding: 60px 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s;
  background: #1e3c8a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: relative;
  padding: 0 15px;
}

.header .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.header .header-right .search-icon {
  width: 52px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.header .header-right .search-icon img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.header .header-right .search-icon input {
  position: absolute;
  left: 15px;
  top: 0;
  width: 0;
  height: 100%;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 12px;
  opacity: 0;
  outline: none;
  padding: 0;
  transition: all 0.4s ease;
}

.header .header-right .search-icon input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header .header-right .search-icon:hover, .header .header-right .search-icon:focus-within {
  width: 180px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 216px;
  justify-content: flex-start;
}

.header .header-right .search-icon:hover img, .header .header-right .search-icon:focus-within img {
  left: 160px;
  /* Move icon to the right */
  transform: translate(0, -50%);
}

.header .header-right .search-icon:hover input, .header .header-right .search-icon:focus-within input {
  width: 130px;
  opacity: 1;
  padding-right: 30px;
}

.header .header-right a.talent-btn {
  display: inline-block;
  width: 104px;
  height: 30px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  line-height: 30px;
  color: #2c53b3;
  font-size: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
}

.logo .logo-main {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo .logo-main img {
  height: 48px;
  object-fit: contain;
  display: block;
}

.logo .logo-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  font-weight: 500;
  margin-left: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 100%;
}

.nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 10px 0;
  opacity: 0.9;
  display: block;
}

.nav .nav-link:hover, .nav .nav-link.active {
  opacity: 1;
}

.nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}

.nav .nav-link:hover::after, .nav .nav-link.active::after {
  width: 30px;
}

.nav .nav-link.nav-talent {
  display: none;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown .dropdown-toggle {
  padding-right: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown .dropdown-toggle::after {
  content: '';
  display: block;
  width: 12px !important;
  height: 12px !important;
  background: url("../images/down.png") no-repeat center center/contain;
  border: none;
  transform: none;
  transition: none !important;
  position: static;
  margin: 0 !important;
}

.dropdown:hover .mega-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown:hover .dropdown-toggle::after {
  background-image: url("../images/up.png");
  transform: none;
  margin-top: 0 !important;
  width: 12px !important;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid #2c53b3;
  z-index: 1001;
  transition: all 0.3s;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #555;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s;
  text-align: center;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #f0f7ff;
  color: #2c53b3;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -100px;
  /* Adjust centering */
  width: 600px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  /* Removed transform/transition for direct show */
  border-top: 3px solid #2c53b3;
  z-index: 1001;
}

.mega-menu .menu-content {
  display: flex;
  padding: 20px;
}

.mega-menu .menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.mega-menu .menu-links a {
  padding: 10px 15px;
  color: #555;
  border-radius: 4px;
  transition: all 0.2s;
  text-align: left;
}

.mega-menu .menu-links a:hover {
  background: #f0f7ff;
  color: #2c53b3;
  padding-left: 20px;
}

.mega-menu .menu-featured {
  width: 200px;
  padding-left: 20px;
}

.mega-menu .menu-featured .featured-image {
  width: 100%;
  height: 150px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.mega-menu .menu-featured .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu .menu-featured .featured-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

.contact-banner {
  position: relative;
  width: 100%;
  height: 430px;
  background: url("../images/laowu.png") no-repeat center center/cover;
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.contact-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-banner .banner-content {
  position: relative;
  z-index: 2;
}

.contact-banner .banner-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #2c53b3;
  line-height: 1.2;
}

.contact-banner .banner-content .subline {
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  color: #2c53b3;
  font-weight: 700;
}

.contact-banner .banner-content .breadcrumb {
  font-size: 14px;
  color: #2c53b3;
}

.contact-banner .banner-content .breadcrumb a {
  color: #2c53b3;
}

.contact-banner .banner-content .breadcrumb a:hover {
  text-decoration: underline;
}

.contact-banner .banner-content .breadcrumb span {
  margin-left: 5px;
}

.contact-section {
  position: relative;
  padding: 80px 0;
  z-index: 10;
}

.contact-card {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: #fff;
  min-height: 550px;
}

.contact-card .card-left {
  width: 40%;
  background: #144290;
  color: #fff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card .card-left .info-header {
  margin-bottom: 40px;
}

.contact-card .card-left .info-header .small-title {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
  position: relative;
  padding-left: 35px;
}

.contact-card .card-left .info-header .small-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 25px;
  height: 1px;
  background: #fff;
  opacity: 0.7;
}

.contact-card .card-left .info-header h2 {
  font-size: 32px;
  margin: 0;
  font-weight: bold;
}

.contact-card .card-left .info-list {
  flex: 1;
}

.contact-card .card-left .info-list .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-card .card-left .info-list .info-item .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-card .card-left .info-list .info-item .icon-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-card .card-left .info-list .info-item .info-text h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  opacity: 0.8;
}

.contact-card .card-left .info-list .info-item .info-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.contact-card .card-left .qr-section {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.contact-card .card-left .qr-section .qr-item {
  text-align: center;
}

.contact-card .card-left .qr-section .qr-item .qr-img {
  width: 80px;
  height: 80px;
  background: #fff;
  padding: 5px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.contact-card .card-left .qr-section .qr-item .qr-img img {
  width: 100%;
  height: 100%;
}

.contact-card .card-left .qr-section .qr-item p {
  font-size: 10px;
  margin: 0;
  opacity: 0.8;
}

.contact-card .card-left .card-footer-slogan {
  font-size: 14px;
  opacity: 0.8;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card .card-right {
  width: 60%;
  padding: 50px 60px;
}

.contact-card .card-right h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
  font-weight: bold;
}

.contact-card .card-right .contact-form .form-group {
  margin-bottom: 25px;
}

.contact-card .card-right .contact-form .form-group label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.contact-card .card-right .contact-form .form-group label.required::after {
  content: '*';
  color: red;
  margin-left: 4px;
}

.contact-card .card-right .contact-form .form-group input[type="text"],
.contact-card .card-right .contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
  font-family: inherit;
}

.contact-card .card-right .contact-form .form-group input[type="text"]:focus,
.contact-card .card-right .contact-form .form-group textarea:focus {
  border-color: #2c53b3;
  outline: none;
  box-shadow: 0 0 0 2px rgba(44, 83, 179, 0.1);
}

.contact-card .card-right .contact-form .form-group input[type="text"]::placeholder,
.contact-card .card-right .contact-form .form-group textarea::placeholder {
  color: #ccc;
}

.contact-card .card-right .contact-form .form-group textarea {
  resize: vertical;
}

.contact-card .card-right .contact-form .form-row {
  display: flex;
  gap: 20px;
}

.contact-card .card-right .contact-form .form-row .half {
  flex: 1;
}

.contact-card .card-right .contact-form .role-group .radio-options {
  display: flex;
  gap: 40px;
}

.contact-card .card-right .contact-form .role-group .radio-options .radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.contact-card .card-right .contact-form .role-group .radio-options .radio-label input {
  display: none;
}

.contact-card .card-right .contact-form .role-group .radio-options .radio-label .radio-custom {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  display: inline-block;
}

.contact-card .card-right .contact-form .role-group .radio-options .radio-label .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #2c53b3;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s;
}

.contact-card .card-right .contact-form .role-group .radio-options .radio-label input:checked + .radio-custom {
  border-color: #2c53b3;
}

.contact-card .card-right .contact-form .role-group .radio-options .radio-label input:checked + .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.contact-card .card-right .contact-form .form-submit {
  text-align: right;
  margin-top: 30px;
}

.contact-card .card-right .contact-form .form-submit .btn-submit {
  background: #144290;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-card .card-right .contact-form .form-submit .btn-submit:hover {
  background: #11387a;
}

.map-section {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.map-section .container-fluid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.map-section .container-fluid img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.footer {
  background-color: #1a2233;
  padding: 60px 0 40px;
  color: #fff;
  font-size: 14px;
  margin-top: 0;
}

.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer .footer-top .footer-logo {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
}

.footer .footer-top .footer-nav {
  display: flex;
  gap: 40px;
}

.footer .footer-top .footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s;
}

.footer .footer-top .footer-nav a:hover, .footer .footer-top .footer-nav a.active {
  color: #fff;
}

.footer .footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #2c53b3;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #1e3c8a;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpShort {
  0% {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-80px, 0, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(80px, 0, 0);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes clipUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes maskReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8) translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  }
}

@keyframes rotateInUp {
  0% {
    opacity: 0;
    transform-origin: center bottom;
    transform: rotate3d(0, 0, 1, -15deg) translate3d(0, 50px, 0);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform-origin: center bottom;
    transform: none;
    filter: blur(0);
  }
}

.wow {
  visibility: hidden;
  animation-play-state: paused;
}

.animated {
  visibility: visible;
  animation-fill-mode: both;
  animation-play-state: running;
}

.fadeInUpShort {
  animation-name: fadeInUpShort;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.clipUp {
  animation-name: clipUp;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.maskReveal {
  animation-name: maskReveal;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.zoomInUp {
  animation-name: zoomInUp;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

.rotateInUp {
  animation-name: rotateInUp;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 992px) {
  /* Header Mobile Styles */
  .header {
    width: 100%;
    max-width: 100vw;
    left: 0;
    overflow: hidden;
    background: #1e3c8a;
    height: 70px;
  }
  .header .container {
    height: 70px;
  }
  .header .header-right {
    display: none;
  }
  .header .logo-main {
    font-size: 20px;
    padding: 4px 10px;
  }
  .header .logo-main img {
    height: 48px;
  }
  .header .logo-sub {
    font-size: 9px;
  }
  .mobile-menu-btn {
    display: flex !important;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
  }
  .mobile-menu-btn span {
    background: #fff !important;
  }
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .nav .nav-link.nav-talent {
    display: block;
  }
  .header .nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    z-index: 1001;
    overflow-y: auto;
    border-top: 1px solid #eee;
  }
  .header .nav.open {
    display: flex;
  }
  .header .nav .nav-link {
    color: #333 !important;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
    text-align: left;
    padding-left: 10px;
  }
  .header .nav .nav-link:hover, .header .nav .nav-link.active {
    color: #2c53b3 !important;
  }
  .header .nav .nav-link::after {
    display: none;
  }
  .dropdown {
    display: block;
    width: 100%;
    height: auto;
  }
  .dropdown .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding-right: 10px;
  }
  .dropdown .dropdown-toggle::after {
    background-image: url("../images/down.png");
    filter: invert(1);
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: #f9f9f9;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transform: none;
  }
  .dropdown-menu a {
    text-align: left;
    padding-left: 30px;
  }
  .dropdown.open .dropdown-menu,
  .dropdown.open .mega-menu {
    display: block;
  }
  .mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: #f9f9f9;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .mega-menu .menu-content {
    flex-direction: column;
    padding: 0;
  }
  .mega-menu .menu-links {
    border: none;
    padding: 0;
  }
  .mega-menu .menu-links a {
    padding-left: 30px;
  }
  .mega-menu .menu-featured {
    display: none;
  }
  /* Banner Mobile */
  .contact-banner {
    height: 250px;
    margin-top: 70px;
  }
  .contact-banner .banner-content h1 {
    font-size: 32px;
  }
  .contact-banner .banner-content .subline {
    font-size: 14px;
  }
  /* Contact Card Mobile */
  .contact-section {
    margin-top: 30px;
    padding: 0 0 30px 0;
  }
  .contact-card {
    flex-direction: column;
  }
  .contact-card .card-left {
    width: 100%;
    padding: 30px 20px;
  }
  .contact-card .card-left .info-header h2 {
    font-size: 24px;
  }
  .contact-card .card-left .info-list .info-item {
    margin-bottom: 20px;
  }
  .contact-card .card-left .info-list .info-item .icon-box {
    margin-right: 15px;
  }
  .contact-card .card-left .info-list .info-item .info-text p {
    font-size: 14px;
  }
  .contact-card .card-left .qr-section {
    justify-content: center;
  }
  .contact-card .card-left .card-footer-slogan {
    text-align: center;
  }
  .contact-card .card-right {
    width: 100%;
    padding: 30px 20px;
  }
  .contact-card .card-right h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .contact-card .card-right .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact-card .card-right .contact-form .role-group .radio-options {
    gap: 20px;
  }
  .contact-card .card-right .contact-form .form-submit {
    text-align: center;
  }
  .contact-card .card-right .contact-form .form-submit .btn-submit {
    width: 100%;
  }
  /* Footer Mobile */
  .footer {
    padding: 40px 0 20px;
  }
  .footer .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer .footer-top .footer-nav {
    flex-direction: column;
    gap: 15px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
