
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hidden { display: none !important; }

:root {
  --brand-primary: #1B98D9;
  --brand-primary-light: #4FB3E0;
  --brand-primary-dark: #1577AE;
  --brand-primary-bg: #E8F5FC;
  --brand-primary-tint: #F2FAFE;

  --brand-green: #5BA72A;
  --brand-green-light: #7DC44B;
  --brand-green-dark: #478820;
  --brand-green-bg: #EEF7E5;

  
  --brand-orange: #F39A1F;
  --brand-orange-light: #F7B659;
  --brand-orange-dark: #C97A0E;
  --brand-orange-bg: #FDF3E2;

  
  --brand-pink: #E66B6B;
  --brand-pink-light: #F09898;
  --brand-pink-bg: #FCEDED;

  
  --color-text: #1F2937;
  --color-text-sub: #4B5563;
  --color-text-muted: #9CA3AF;
  --color-border: #E5E7EB;
  --color-bg-soft: #F9FAFB;
  --color-bg-white: #FFFFFF;
  --color-bg-dark: #1F2937;

  
  --gradient-brand: var(--brand-primary);
  --gradient-primary: var(--brand-primary);
  --gradient-green: var(--brand-green);
  --gradient-orange: var(--brand-orange);
  --gradient-cta: var(--brand-primary-dark);
  --gradient-soft: var(--brand-primary-bg);
}

body {
  color: var(--color-text);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0 !important;
  }
  .advantages-section,
  .services-section,
  .brand-section,
  .team-section,
  .flow-section,
  .cta-section,
  .hero,
  .about-intro,
  .contact-section,
  .news-section,
  .article-container,
  .solution-layout,
  .sport-hero-layout,
  .sport-modules-layout {
    padding: 60px 0 !important;
  }
  .sport-hero-layout,
  .sport-modules-layout {
    padding: 30px 0 !important;
  }
}

@media (max-width: 576px) {
  section {
    padding: 45px 0 !important;
  }
  .advantages-section,
  .services-section,
  .brand-section,
  .team-section,
  .flow-section,
  .cta-section,
  .hero,
  .about-intro,
  .contact-section,
  .news-section,
  .article-container,
  .solution-layout,
  .sport-hero-layout,
  .sport-modules-layout {
    padding: 45px 0 !important;
  }
  .sport-hero-layout,
  .sport-modules-layout {
    padding: 20px 0 !important;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 26px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
  position: relative;
  display: inline-block;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  border: none;
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 5px 15px rgba(27, 152, 217, 0.3);
}

.btn-primary:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(27, 152, 217, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  margin-left: 15px;
}

.btn-secondary:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-3px);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

header.sticky .navbar {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.nav-open {
  overflow: hidden;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 1px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.logo-link:hover .logo-text {
  color: var(--brand-primary);
}

.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #333;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--brand-primary);
  position: relative;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 2px;
}

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url("../images/hero.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}

@media (max-width: 768px) {
  .hero,
  .hero-carousel .slide-bg {
    background-attachment: scroll;
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInDown 1s;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s;
}

.hero-buttons {
  animation: fadeIn 1.5s;
}

.services {
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card-disabled {
  cursor: default;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--brand-primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.service-icon i {
  font-size: 2rem;
  color: var(--brand-primary);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}

.service-card p {
  color: #666;
}

.about {
  background-color: #f9f9f9;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  
  letter-spacing: 0.15em;
  color: #666;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  height: 50px;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

.about-image img {
  border-radius: 5px;
}

.btn-view {
  padding: 8px 20px;
  background-color: #fff;
  color: var(--brand-primary);
  font-weight: 600;
  border-radius: 30px;
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
}

.contact {
  background-color: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info {
  background: var(--brand-primary);
  border-radius: 10px;
  padding: 40px;
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
  color: var(--brand-primary);
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-form {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4c6ef5;
  box-shadow: 0 0 0 3px rgba(76, 110, 245, 0.1);
}

footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo a {
  font-size: 2rem;
  font-weight: 700;
}

.footer-logo p {
  margin-top: 20px;
  color: #aaa;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0 0;
}
.site-footer .footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .footer-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.site-footer .footer-brand .brand-desc {
  margin-top: 14px;
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.7;
}
.site-footer .footer-brand .brand-phone {
  margin-top: 12px;
  color: var(--brand-orange-light);
  font-size: 1.05rem;
  font-weight: 600;
}
.site-footer .footer-col h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  position: relative;
}
.site-footer .footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 1px;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 8px;
}
.site-footer .footer-col ul li a {
  color: #aaa;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s;
}
.site-footer .footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}
.site-footer .footer-bar {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer .footer-bar p {
  color: #888;
  font-size: 0.83rem;
  margin: 0;
}
.site-footer .footer-bar .bar-links a {
  color: #888;
  font-size: 0.83rem;
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.3s;
}
.site-footer .footer-bar .bar-links a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .site-footer .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .site-footer .footer-brand { grid-column: 1; }
  .site-footer .footer-bar { flex-direction: column; text-align: center; }
  .site-footer .footer-bar .bar-links a { margin: 0 8px; }
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 1px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #aaa;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #aaa;
  font-size: 0.9rem;
}

.footer-qrcode {
  margin-top: 30px;
}

.footer-qrcode .qrcode-item p {
  color: #aaa;
  margin-top: 10px;
}

.footer-qrcode .qrcode-item img {
  width: 100px;
  
  height: 100px;
  border: 2px solid var(--brand-primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    padding: 10px;
  }

  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -7px);
  }

  
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .footer-content,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-content {
    gap: 30px;
  }
}

@media screen and (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons .btn {
    display: block;
    margin: 10px 0;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .qrcode-container {
    flex-direction: column;
  }

  .qrcode-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-qrcode {
    margin-top: 20px;
  }

  .footer-qrcode .qrcode-item img {
    width: 80px;
    height: 80px;
  }

  .nav-menu {
    width: 85%;
  }

  .logo img {
    height: 30px;
  }
}

.qrcode-container {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.qrcode-item {
  text-align: center;
}

.qrcode-item img {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
  border-radius: 8px;
  background-color: #fff;
  padding: 5px;
}

.qrcode-item p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .article-header {
    margin-top: 30px;
  }
}

.float-consult-btn {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: var(--brand-primary);
  color: #fff;
  padding: 14px 10px;
  border-radius: 8px;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(27, 152, 217, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  line-height: 1.4;
}
.float-consult-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 25px rgba(27, 152, 217, 0.5);
  background: var(--brand-primary-dark);
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-carousel .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}
.hero-carousel .carousel-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-carousel .slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-carousel .slide-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}
.hero-carousel .slide-content .sub-label {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--brand-primary);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s;
}
.hero-carousel .slide-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  animation: fadeInDown 1s;
}
.hero-carousel .slide-content h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 0.95;
  animation: fadeInDown 1.1s;
}
.hero-carousel .slide-content .sub-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s;
}
.hero-carousel .slide-content .hero-buttons {
  animation: fadeIn 1.5s;
}

.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.carousel-dot {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: #fff;
  width: 60px;
}
.carousel-dot:hover {
  background: rgba(255,255,255,0.8);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.carousel-arrow:hover {
  background: rgba(27, 152, 217, 0.7);
  border-color: var(--brand-primary);
}
.carousel-arrow.prev { left: 30px; }
.carousel-arrow.next { right: 30px; }

.core-services {
  background: #fff;
  padding: 100px 0;
}
.service-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card-lg {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}
.service-card-lg:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(27,152,217,0.15);
}
.service-card-lg .card-img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.service-card-lg .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card-lg:nth-child(1) .card-img-wrap img,
.service-card-lg:nth-child(2) .card-img-wrap img,
.service-card-lg:nth-child(3) .card-img-wrap img {
  object-fit: contain;
  padding: 20px;
}
.service-card-lg:nth-child(1) .card-img-wrap img { background: var(--brand-primary-bg); }
.service-card-lg:nth-child(2) .card-img-wrap img { background: var(--brand-green-bg); }
.service-card-lg:nth-child(3) .card-img-wrap img { background: var(--brand-orange-bg); }
.service-card-lg:hover .card-img-wrap img {
  transform: scale(1.05);
}
.service-card-lg .card-body {
  padding: 25px 24px 30px;
  text-align: center;
}
.service-card-lg .card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #222;
  font-weight: 700;
}
.service-card-lg .card-body p {
  color: #666;
  line-height: 1.8;
  font-size: 0.93rem;
  margin: 0;
}
.service-card-lg h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
  font-weight: 700;
}
.service-card-lg p {
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
}

.advantages-section {
  background: #f8f9fc;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.advantage-item {
  background: #fff;
  border-radius: 16px;
  padding: 35px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}
.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(27, 152, 217, 0.12);
}

.advantage-item:nth-child(1) .adv-icon { background: var(--brand-primary-bg); }
.advantage-item:nth-child(1) .adv-icon i { color: var(--brand-primary); }
.advantage-item:nth-child(2) .adv-icon { background: var(--brand-green-bg); }
.advantage-item:nth-child(2) .adv-icon i { color: var(--brand-green); }
.advantage-item:nth-child(3) .adv-icon { background: var(--brand-orange-bg); }
.advantage-item:nth-child(3) .adv-icon i { color: var(--brand-orange); }
.advantage-item:nth-child(4) .adv-icon { background: var(--brand-pink-bg); }
.advantage-item:nth-child(4) .adv-icon i { color: var(--brand-pink); }
.advantage-item .adv-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-item .adv-icon i {
  font-size: 1.6rem;
}
.advantage-item .adv-text h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #222;
}
.advantage-item .adv-text p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}
.advantage-icons-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.advantage-icons-row .mini-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-primary-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.1rem;
}
.advantage-icons-row .mini-icon:nth-child(2) { background: var(--brand-pink-bg); color: var(--brand-pink); }
.advantage-icons-row .mini-icon:nth-child(3) { background: var(--brand-green-bg); color: var(--brand-green); }
.advantage-icons-row .mini-icon:nth-child(4) { background: var(--brand-orange-bg); color: var(--brand-orange); }

.service-flow {
  background: #fff;
  padding: 100px 0;
}
.flow-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 50px;
  flex-wrap: wrap;
}
.flow-step {
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  position: relative;
}
.flow-step .step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(27, 152, 217, 0.3);
  position: relative;
  z-index: 2;
}
.flow-step .step-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--brand-primary);
}
.flow-step .step-label {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}
.flow-step .step-arrow {
  position: absolute;
  top: 28px;
  right: -20px;
  color: #d0d5e0;
  font-size: 1.2rem;
  z-index: 1;
}
.flow-step:last-child .step-arrow { display: none; }

.flow-image-wrap {
  margin: 0 auto;
}
.flow-image-wrap .flow-process-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(27,152,217,0.08);
}

.cta-section {
  background: var(--brand-primary-dark);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section .cta-badge {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.85);
}
.cta-section h2 {
  font-size: 1.7rem;
  margin-bottom: 25px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-divider {
  width: 50px;
  height: 2px;
  background: var(--brand-orange-light);
  margin: 30px auto;
  border-radius: 1px;
}
.cta-section .cta-phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}
.cta-section .cta-phone-wrap i {
  font-size: 1.8rem;
  color: var(--brand-orange-light);
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.cta-section .cta-phone {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand-orange-light);
  letter-spacing: 2px;
}
.cta-section .btn {
  font-size: 1.05rem;
  padding: 14px 42px;
  background: #fff;
  color: var(--brand-primary-dark);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-section .btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.cta-section .btn:hover {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(243, 154, 31, 0.35);
}
.cta-section .btn:hover i {
  transform: translateX(4px);
}

.solution-layout {
  padding: 80px 0;
}
.solution-layout:nth-child(even) {
  background: #f8f9fc;
}
.solution-module {
  margin-bottom: 60px;
}
.solution-module:last-child { margin-bottom: 0; }
.solution-module .module-header {
  margin-bottom: 30px;
}
.solution-module .module-header h3 {
  font-size: 1.6rem;
  color: #222;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.solution-module .module-header h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: var(--brand-primary);
  border-radius: 2px;
}
.solution-module .module-header p {
  color: #666;
  line-height: 1.8;
}

.sport-hero-box {
  background: linear-gradient(135deg, #E8F5FC 0%, #F2FAFE 100%);
  border-radius: 20px;
  padding: 35px 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.sport-hero-box::after {
  content: '\f140'; 
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 10rem;
  color: rgba(27, 152, 217, 0.06);
}
.sport-hero-box h3 {
  font-size: 1.4rem;
  color: var(--brand-primary-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sport-hero-box h3 i { font-size: 1.6rem; }
.sport-hero-box p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  max-width: 700px;
}

.modules-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 20px;
}
.modules-grid-2 .module-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 22px;
  border-color: var(--brand-primary-bg);
  box-shadow: 0 8px 30px rgba(27, 152, 217, 0.08);
  transform: translateY(-3px);
}
.modules-grid-2 .module-card .mc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.modules-grid-2 .module-card .mc-head .mc-num {
  width: 36px;
  height: 36px;
  background: var(--brand-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.modules-grid-2 .module-card .mc-head h4 i {
  margin-right: 6px;
  color: var(--brand-primary);
}
.modules-grid-2 .module-card > p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

.zone-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.zone-2x2 .zone-item {
  background: #f8f9fc;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}
.zone-2x2 .zone-item:hover {
  background: var(--brand-primary-bg);
  transform: translateX(4px);
}
.zone-2x2 .zone-item .zi-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.zone-2x2 .zone-item .zi-text strong {
  display: block;
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 2px;
}
.zone-2x2 .zone-item .zi-text span {
  font-size: 0.85rem;
  color: #777;
}

.package-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.package-4col .pkg-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.package-4col .pkg-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 6px 20px rgba(27, 152, 217, 0.1);
  transform: translateY(-4px);
}
.package-4col .pkg-card .pkg-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.package-4col .pkg-card:nth-child(1) .pkg-icon { background: var(--brand-primary-bg); color: var(--brand-primary); }
.package-4col .pkg-card:nth-child(2) .pkg-icon { background: var(--brand-green-bg); color: var(--brand-green); }
.package-4col .pkg-card:nth-child(3) .pkg-icon { background: var(--brand-pink-bg); color: var(--brand-pink); }
.package-4col .pkg-card:nth-child(4) .pkg-icon { background: var(--brand-orange-bg); color: var(--brand-orange); }
.package-4col .pkg-card h5 {
  font-size: 1rem;
  color: #222;
  margin-bottom: 10px;
}
.package-4col .pkg-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.service-loop {
  background: linear-gradient(135deg, #f8f9fc, #F2FAFE);
  border-radius: 16px;
  padding: 22px 22px;
  margin-top: 15px;
}
.service-loop .loop-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-primary-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-loop .loop-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.service-loop .loop-steps .ls-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-loop .loop-steps .ls-item .ls-badge {
  width: 28px;
  height: 28px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.service-loop .loop-steps .ls-item .ls-label {
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
  white-space: nowrap;
}
.service-loop .loop-steps .ls-arrow {
  color: #d0d5e0;
  font-size: 0.9rem;
  margin: 0 8px;
}

.delivery-banner {
  background: var(--brand-primary);
  border-radius: 16px;
  padding: 30px 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 25px;
}
.delivery-banner .db-left {
  flex: 1;
}
.delivery-banner .db-left h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.delivery-banner .db-left p {
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}
.delivery-banner .db-right {
  flex-shrink: 0;
}
.delivery-banner .db-right .btn {
  background: #fff;
  color: var(--brand-primary-dark);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.delivery-banner .db-right .btn:hover {
  background: var(--brand-orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.full-module-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 15px;
}
.full-module-card:hover {
  border-color: var(--brand-primary-bg);
  box-shadow: 0 8px 30px rgba(27, 152, 217, 0.08);
}
.full-module-card .fmc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.full-module-card .fmc-head .fmc-num {
  width: 36px;
  height: 36px;
  background: var(--brand-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.full-module-card .fmc-head h4 {
  font-size: 1.1rem;
  color: #222;
  margin: 0;
}
.full-module-card > p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .package-4col { grid-template-columns: repeat(2, 1fr); }
  .delivery-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .zone-2x2 { grid-template-columns: 1fr; }
  .package-4col { grid-template-columns: 1fr; }
  .sport-hero-box { padding: 30px 25px; }
  .delivery-banner { padding: 30px 25px; }
  .service-loop .loop-steps .ls-arrow { display: none; }
  .service-loop .loop-steps { flex-direction: column; gap: 10px; align-items: flex-start; }
}
.func-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.func-card {
  background: #fff;
  border: 1px solid #eef1ff;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}
.func-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 5px 20px rgba(27, 152, 217, 0.12);
}
.func-card .func-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-primary-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--brand-primary);
  font-size: 1.2rem;
}
.func-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #333;
}
.func-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}
.delivery-highlight {
  background: var(--brand-primary-bg);
  border-radius: 16px;
  padding: 35px;
  margin-top: 30px;
  border-left: 4px solid var(--brand-primary);
}
.delivery-highlight h4 {
  color: #222;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.delivery-highlight p {
  color: #555;
  line-height: 1.7;
}

.solution-tabs {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.solution-tab {
  padding: 12px 28px;
  border: 1px solid #e1e1e1;
  background: #fff;
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.solution-tab:hover {
  border-color: #4c6ef5;
  color: #4c6ef5;
}
.solution-tab.active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.solution-panel {
  display: none;
}
.solution-panel.active {
  display: block;
}

.service-process {
  padding: 100px 0;
  background: #fff;
}
.process-timeline {
  margin: 50px auto 0;
}
.process-step-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  padding-left: 50px;
}
.process-step-item::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 45px;
  bottom: -40px;
  width: 2px;
  background: #e0e7ff;
}
.process-step-item:last-child::before { display: none; }
.process-step-item .step-badge {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 3px 10px rgba(27, 152, 217, 0.3);
}
.process-step-item .step-body {
  flex: 1;
  background: #f8f9fc;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}
.process-step-item .step-body:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.process-step-item .step-body h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #222;
}
.process-step-item .step-body p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}

.brand-section {
  padding: 80px 0;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.brand-card {
  text-align: center;
  padding: 35px 25px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.brand-card .brand-icon {
  font-size: 2.2rem;
  color: var(--brand-primary);
  margin-bottom: 20px;
}
.brand-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #222;
}
.brand-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
}
.team-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.team-showcase .showcase-item {
  background: #f8f9fc;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.team-showcase .showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.team-showcase .showcase-item i {
  font-size: 3rem;
  color: var(--brand-primary);
  margin-bottom: 15px;
}
.team-showcase .showcase-item h5 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 8px;
}
.team-showcase .showcase-item p {
  color: #666;
  font-size: 0.9rem;
}

.contact-info {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 30px;
}

.contact-form-new .form-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #222;
}
.contact-form-new .form-label {
  display: block;
  margin-bottom: 6px;
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
}
.contact-form-new .form-label .required {
  color: #e53935;
  margin-left: 3px;
  font-weight: 600;
}
.contact-form-new .form-submit {
  width: 100%;
  margin-top: 5px;
}
.contact-form-new .contact-success {
  text-align: center;
  padding: 40px 20px;
}
.contact-form-new .contact-success i {
  font-size: 3rem;
  color: #2b8a3e;
  margin-bottom: 15px;
  display: block;
}
.contact-form-new .contact-success h3 {
  color: #2b8a3e;
  margin-bottom: 10px;
}
.contact-form-new .contact-success p {
  color: #666;
}
.contact-form-new .form-group select,
.contact-form-new .form-group input,
.contact-form-new .form-group textarea {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}
.contact-form-new .form-group select {
  appearance: none;
  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 d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form-new .form-group select:focus,
.contact-form-new .form-group input:focus,
.contact-form-new .form-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(27, 152, 217, 0.12);
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 5px;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: #555;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  width: auto !important;
  margin: 0;
}
.contact-phone-highlight {
  background: var(--brand-primary-dark);
  border-radius: 12px;
  padding: 30px;
  color: #fff;
  text-align: center;
}
.contact-phone-highlight h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.contact-phone-highlight .phone-num {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-orange-light);
}
.contact-phone-highlight p {
  opacity: 0.9;
  margin-top: 10px;
  font-size: 0.95rem;
}

.footer-new .footer-column .footer-desc {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 15px;
}
.footer-new .footer-phone {
  color: var(--brand-orange-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 10px;
}
.footer-new .footer-download {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: rgba(27, 152, 217, 0.2);
  border: 1px solid rgba(27, 152, 217, 0.4);
  border-radius: 6px;
  color: #E8F5FC;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.footer-new .footer-download:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.footer-new .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-new .footer-bottom .footer-bottom-links a {
  color: #aaa;
  margin-left: 20px;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-new .footer-bottom .footer-bottom-links a:hover {
  color: #fff;
}

.about-title-left { text-align: left; }
.about-title-left h2 { display: block; }
.tech-section { padding: 80px 0; background: #fff; }
.tech-content-bottom { margin-bottom: 40px; }
.tech-subtitle { font-size: 1.3rem; margin-bottom: 20px; color: #222; }
.showcase-card { padding: 0; overflow: hidden; border: 1px solid #eee; border-radius: 12px; }
.showcase-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.showcase-body { padding: 15px; }
.showcase-body h5 { margin: 0 0 8px; font-size: 1.05rem; color: #222; }
.showcase-body p { margin: 0; color: #666; font-size: 0.9rem; }

.sport-floorplan-wrap,
.hospital-center-wrap {
  margin-bottom: 25px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sport-floorplan-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.hospital-center-wrap img {
  width: 60%;
  height: auto;
  display: block;
  margin: 20px 0px;
}
.hospital-center-wrap{
 box-shadow: none;
}

.school-img-wrap {
  margin: 25px 0px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.school-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.service-flow-wrap {
  margin-top: 40px;
  margin-bottom: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.service-flow-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 992px) {
  .hero-carousel .slide-content h1 {
    font-size: 2rem;
  }
  .hero-carousel .slide-content h2 {
    font-size: 1.2rem;
  }
  .service-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .flow-steps {
    flex-wrap: wrap;
    gap: 20px;
  }
  .flow-step {
    min-width: 120px;
  }
  .flow-step .step-arrow {
    display: none;
  }
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-showcase {
    grid-template-columns: 1fr;
  }
  .process-step-item {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .hero-carousel .slide-content h1 {
    font-size: 1.6rem;
  }
  .hero-carousel .slide-content h2 {
    font-size: 1rem;
  }
  .hero-carousel .slide-content .sub-desc {
    font-size: 0.85rem;
  }
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .carousel-arrow.prev { left: 10px; }
  .carousel-arrow.next { right: 10px; }
  .service-grid-3 {
    grid-template-columns: 1fr;
  }
  .float-consult-btn {
    right: 10px;
    padding: 10px 8px;
    font-size: 13px;
  }
  .cta-section h2 {
    font-size: 1.4rem;
  }
  .cta-section .cta-phone {
    font-size: 1.5rem;
  }
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .solution-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-new .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-new .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
  
  .page-header {
    padding: 160px 0 80px !important;
  }
  .page-header h1 {
    font-size: 2rem !important;
  }
  .page-header p {
    font-size: 0.95rem !important;
  }
  
  .service-card-lg .card-img-wrap {
    height: 180px;
  }
  .service-card-lg .card-body {
    padding: 18px 16px 22px;
  }
  .service-card-lg .card-body h3 {
    font-size: 1.1rem;
  }
  
  .flow-image-wrap {
    margin-top: 20px;
  }
  
  .sport-hero-box {
    padding: 20px 24px;
  }
  .modules-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .package-4col {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .delivery-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .service-flow-wrap {
    margin-top: 25px;
  }
}
@media screen and (max-width: 576px) {
  .hero-carousel {
    height: 90vh;
  }
  .hero-carousel .slide-content h1 {
    font-size: 1.3rem;
  }
  .advantage-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .flow-step {
    min-width: 100px;
  }
  .process-step-item {
    padding-left: 35px;
  }
  
  .page-header {
    padding: 140px 0 60px !important;
  }
  .page-header h1 {
    font-size: 1.6rem !important;
  }
  .page-header p {
    font-size: 0.85rem !important;
  }
  
  .service-card-lg .card-img-wrap {
    height: 150px;
  }
  .service-card-lg .card-body {
    padding: 14px 12px 18px;
  }
  .service-card-lg .card-body h3 {
    font-size: 1rem;
  }
  .service-card-lg .card-body p {
    font-size: 0.85rem;
  }
  
  .flow-image-wrap {
    margin-top: 15px;
  }
  
  .sport-main-title h2 {
    font-size: 1.3rem;
  }
  .sport-sub-title h2 {
    font-size: 1.15rem;
  }
  .full-module-card {
    padding: 18px;
  }
  .zone-2x2 {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .package-4col {
    grid-template-columns: 1fr;
  }
  .service-loop .loop-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .service-loop .ls-arrow {
    display: none;
  }
  
  .section-header h2 {
    font-size: 1.4rem;
  }
  .section-header p {
    font-size: 0.9rem;
  }
  
  .about-title-left h2 {
    font-size: 1.2rem;
  }
  .tech-content-bottom {
    flex-direction: column;
    gap: 20px;
  }
  .tech-content-bottom .tech-text {
    flex: none;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  input, textarea, select, button {
    font-size: 16px !important;
  }
  .contact-form-new .form-group input,
  .contact-form-new .form-group textarea,
  .contact-form-new .form-group select {
    padding: 14px 16px;
    font-size: 16px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .site-footer .footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .nav-menu li a {
    padding: 14px 20px;
    font-size: 1.05rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}
  
  .process-step-item {
    padding-left: 35px;
  }

