@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: "Arial", sans-serif;
  color: #333333;
  line-height: 1.6; }

a {
  text-decoration: none;
  color: #64748B;
  transition: color 0.3s ease; }
  a:hover {
    color: #ff6600; }

ul {
  list-style: none; }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

.site-header {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0; }
  .site-header .header-wrapper {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0 15px;
    height: 72px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 1140px; }
  .site-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    padding: 0;
    height: 100%;
    width: 100%; }
  .site-header .site-branding {
    display: flex;
    align-items: center;
    height: 100%; }
    .site-header .site-branding .site-logo {
      width: auto;
      max-height: 40px;
      height: auto;
      margin: 0;
      object-fit: contain;
      display: block;
      transition: transform 0.3s ease; }
      .site-header .site-branding .site-logo:hover {
        transform: scale(1.05); }
    .site-header .site-branding .logo-placeholder {
      display: flex;
      align-items: center;
      font-size: 24px;
      font-weight: 800;
      color: #333; }
      .site-header .site-branding .logo-placeholder .logo-text {
        font-family: "Montserrat", sans-serif; }
      .site-header .site-branding .logo-placeholder .logo-leaf {
        color: #4caf50;
        margin-left: 5px; }
  .site-header .main-navigation {
    flex: 0 0 auto;
    height: 100%; }
    .site-header .main-navigation ul {
      display: flex;
      gap: 5px;
      margin: 0;
      padding: 0;
      height: 100%;
      list-style: none; }
      .site-header .main-navigation ul li {
        height: 100%;
        display: flex; }
        .site-header .main-navigation ul li a {
          display: flex;
          align-items: center;
          position: relative;
          padding: 0 20px;
          color: #2c3e50;
          font-weight: 500;
          font-size: 16px;
          transition: all 0.3s ease;
          text-decoration: none;
          height: 100%; }
          .site-header .main-navigation ul li a:hover {
            background: linear-gradient(to top, rgba(255, 102, 0, 0.15) 0%, rgba(255, 102, 0, 0) 100%);
            color: #ff6600; }
          .site-header .main-navigation ul li a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ff9500;
            transition: all 0.3s ease; }
          .site-header .main-navigation ul li a:hover::after {
            width: 100%; }
        .site-header .main-navigation ul li.current-menu-item a, .site-header .main-navigation ul li.current_page_item a, .site-header .main-navigation ul li.current-menu-ancestor a, .site-header .main-navigation ul li.current-menu-parent a, .site-header .main-navigation ul li.current_page_parent a, .site-header .main-navigation ul li.current_page_ancestor a {
          background: linear-gradient(to top, rgba(255, 102, 0, 0.2) 0%, rgba(255, 102, 0, 0) 100%); }
          .site-header .main-navigation ul li.current-menu-item a::after, .site-header .main-navigation ul li.current_page_item a::after, .site-header .main-navigation ul li.current-menu-ancestor a::after, .site-header .main-navigation ul li.current-menu-parent a::after, .site-header .main-navigation ul li.current_page_parent a::after, .site-header .main-navigation ul li.current_page_ancestor a::after {
            width: 100%; }
  .site-header .header-actions {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 20px; }
    .site-header .header-actions .search-toggle {
      background: #ff9500;
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 5px rgba(86, 206, 138, 0.3);
      transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease; }
      .site-header .header-actions .search-toggle:hover {
        background: #e68600;
        transform: scale(1.05); }
      .site-header .header-actions .search-toggle svg {
        width: 22px;
        height: 22px; }
  .site-header .menu-toggle {
    display: none !important;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #2c3e50;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .site-header .menu-toggle svg {
      width: 28px;
      height: 28px; }
  .site-header.is-sticky {
    top: 0;
    backdrop-filter: blur(5px); }
    .site-header.is-sticky .header-wrapper {
      margin: 0 auto;
      max-width: 100%;
      border-radius: 0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      height: 64px; }
  .site-header .mobile-nav-header,
  .site-header .menu-overlay {
    display: none; }

@media (max-width: 768px) {
  .site-header {
    top: 0; }
    .site-header .header-wrapper {
      margin: 10px 15px;
      border-radius: 12px;
      height: 60px;
      max-width: calc(100% - 30px);
      padding: 0 15px; } }
    @media (max-width: 768px) and (max-width: 576px) {
      .site-header .header-wrapper {
        padding: 0 10px; } }
@media (max-width: 768px) {
    .site-header .header-content {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 0 10px; } }
    @media (max-width: 768px) and (max-width: 576px) {
      .site-header .header-content {
        padding: 0; } }
@media (max-width: 768px) {
    .site-header .menu-toggle {
      display: flex !important;
      grid-column: 1;
      justify-self: start; }
    .site-header .site-branding {
      grid-column: 2;
      justify-self: center;
      height: 100%;
      display: flex;
      align-items: center; }
      .site-header .site-branding .site-logo {
        max-height: 32px; }
    .site-header .header-actions {
      grid-column: 3;
      justify-self: end;
      margin-left: 0; }
      .site-header .header-actions .search-toggle {
        width: 36px;
        height: 36px;
        border-radius: 10px; }
        .site-header .header-actions .search-toggle svg {
          width: 20px;
          height: 20px; }
    .site-header .main-navigation {
      position: fixed;
      top: 0;
      left: -100%;
      width: 75vw;
      height: 100vh;
      background: #fff;
      z-index: 2000;
      padding: 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: block;
      box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1); }
      .site-header .main-navigation .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 5px; }
        .site-header .main-navigation .mobile-nav-header .site-branding {
          grid-column: auto;
          justify-self: start; }
          .site-header .main-navigation .mobile-nav-header .site-branding .site-logo {
            max-height: 35px; }
        .site-header .main-navigation .mobile-nav-header .menu-close-toggle {
          background: transparent;
          border: none;
          padding: 0;
          cursor: pointer;
          color: #2c3e50;
          width: 32px;
          height: 32px;
          display: flex;
          justify-content: center;
          align-items: center; }
      .site-header .main-navigation ul {
        flex-direction: column;
        height: auto;
        gap: 0; }
        .site-header .main-navigation ul li {
          width: 100%;
          height: auto;
          padding: 5px 5px; }
          .site-header .main-navigation ul li a {
            padding: 12px 10px;
            font-size: 16px;
            color: #2c3e50;
            border-bottom: 1px solid #f1f1f1;
            width: 100%;
            transition: all 0.3s ease;
            border-radius: 8px; }
            .site-header .main-navigation ul li a::after {
              display: none; }
            .site-header .main-navigation ul li a:hover {
              background: #00a84d;
              color: #fff;
              border-bottom-color: transparent; }
          .site-header .main-navigation ul li.current-menu-item a, .site-header .main-navigation ul li.current_page_item a, .site-header .main-navigation ul li.current-menu-ancestor a, .site-header .main-navigation ul li.current-menu-parent a, .site-header .main-navigation ul li.current_page_parent a, .site-header .main-navigation ul li.current_page_ancestor a {
            background: #00a84d;
            color: #fff;
            border-bottom-color: transparent; }
    .site-header.toggled .main-navigation {
      left: 0; }
    .site-header .menu-overlay {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease; }
      .site-header .menu-overlay.active {
        opacity: 1;
        visibility: visible; } }
body.menu-open {
  overflow: hidden; }

.contact-section {
  position: relative;
  padding-bottom: 100px;
  background: transparent;
  margin-bottom: 100px; }
  @media (max-width: 576px) {
    .contact-section {
      padding-bottom: 250px;
      margin-bottom: 250px; } }
  .contact-section .contact-header {
    text-align: center;
    margin-bottom: 80px; }
    .contact-section .contact-header .contact-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #27364B;
      text-transform: uppercase; }
      @media (max-width: 992px) {
        .contact-section .contact-header .contact-title {
          font-size: 24px; } }
      @media (max-width: 576px) {
        .contact-section .contact-header .contact-title {
          font-size: 16px; } }
    .contact-section .contact-header .contact-subtitle {
      font-size: 16px;
      max-width: 800px;
      margin: 0 auto;
      color: #64748B;
      line-height: 1.6; }
      @media (max-width: 992px) {
        .contact-section .contact-header .contact-subtitle {
          font-size: 14px; } }
      @media (max-width: 576px) {
        .contact-section .contact-header .contact-subtitle {
          padding: 0 20px; } }
  .contact-section .contact-box {
    position: relative;
    padding: 0;
    height: 500px;
    background-image: url("../images/img-home/img-contact.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: visible; }
    @media (max-width: 992px) {
      .contact-section .contact-box {
        height: 350px;
        margin: 0 10px; } }
    @media (max-width: 576px) {
      .contact-section .contact-box {
        height: 200px;
        margin: 0 10px; } }
    .contact-section .contact-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 24px;
      z-index: 1; }
      @media (max-width: 992px) {
        .contact-section .contact-box::before {
          padding: 0 10px; } }
  .contact-section .contact-form-container {
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(100px);
    margin-top: -50px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto; }
    @media (max-width: 992px) {
      .contact-section .contact-form-container {
        max-width: 615px;
        transform: translateY(55px); } }
    @media (max-width: 576px) {
      .contact-section .contact-form-container {
        max-width: 330px;
        transform: translateY(55px);
        padding: 15px; } }
  .contact-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px; }
    .contact-section .contact-form .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px; }
      @media (max-width: 768px) {
        .contact-section .contact-form .form-row {
          grid-template-columns: 1fr; } }
    .contact-section .contact-form .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px; }
      .contact-section .contact-form .form-group label {
        font-size: 14px;
        font-weight: 600;
        color: #27364B; }
        .contact-section .contact-form .form-group label .required {
          color: #E53E3E;
          margin-left: 2px; }
      .contact-section .contact-form .form-group input, .contact-section .contact-form .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        background-color: #F8FAFC;
        border: 1px solid #E2E8F0;
        border-radius: 8px;
        font-size: 15px;
        color: #1A202C;
        transition: all 0.2s ease; }
        .contact-section .contact-form .form-group input::placeholder, .contact-section .contact-form .form-group textarea::placeholder {
          color: #A0AEC0; }
        .contact-section .contact-form .form-group input:focus, .contact-section .contact-form .form-group textarea:focus {
          outline: none;
          border-color: #2BBD6A;
          background-color: #fff;
          box-shadow: 0 0 0 3px rgba(43, 189, 106, 0.1); }
    .contact-section .contact-form .form-submit {
      margin-top: 10px; }
      .contact-section .contact-form .form-submit .btn-submit {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        background: linear-gradient(to right, #2BBD6A, #00682D);
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease; }
        .contact-section .contact-form .form-submit .btn-submit:hover {
          transform: translateY(-2px);
          filter: brightness(1.1); }
        .contact-section .contact-form .form-submit .btn-submit:disabled {
          opacity: 0.7;
          cursor: not-allowed; }
        .contact-section .contact-form .form-submit .btn-submit .btn-icon {
          display: flex;
          align-items: center; }
    .contact-section .contact-form .form-privacy {
      text-align: center;
      font-size: 13px;
      color: #718096;
      margin-top: 5px; }
      .contact-section .contact-form .form-privacy a {
        color: #2BBD6A;
        text-decoration: none;
        font-weight: 500; }
        .contact-section .contact-form .form-privacy a:hover {
          text-decoration: underline; }

.home-page .hero-banner {
  position: relative;
  min-height: 800px;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 50px; }
  @media (max-width: 992px) {
    .home-page .hero-banner {
      padding-top: 80px;
      min-height: 470px; } }
  @media (max-width: 576px) {
    .home-page .hero-banner {
      padding-top: 100px; } }
  .home-page .hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    pointer-events: none; }
  .home-page .hero-banner .hero-container {
    position: relative;
    z-index: 10; }
  .home-page .hero-banner .hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px; }
    @media (max-width: 992px) {
      .home-page .hero-banner .hero-content-wrapper {
        gap: 0; } }
  .home-page .hero-banner .hero-left {
    flex: 0 0 48%;
    color: white;
    padding-left: 40px; }
    @media (max-width: 992px) {
      .home-page .hero-banner .hero-left {
        flex: 0 0 58%; } }
    @media (max-width: 768px) {
      .home-page .hero-banner .hero-left {
        padding-left: 30px; }
        .home-page .hero-banner .hero-left .hero-title {
          font-size: 32px; }
        .home-page .hero-banner .hero-left .hero-description {
          font-size: 16px; } }
    @media (max-width: 576px) {
      .home-page .hero-banner .hero-left {
        padding-left: 0;
        flex: 0 0 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center; }
        .home-page .hero-banner .hero-left .hero-title {
          font-size: 24px;
          padding: 0 15px; }
        .home-page .hero-banner .hero-left .hero-description {
          font-size: 14px;
          padding: 0 15px; }
        .home-page .hero-banner .hero-left .btn-discover {
          padding: 8px 15px;
          font-size: 12px;
          margin: 0 auto; } }
    .home-page .hero-banner .hero-left .hero-title {
      font-size: 52px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 25px;
      text-transform: uppercase;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
      @media (max-width: 992px) {
        .home-page .hero-banner .hero-left .hero-title {
          font-size: 26px; } }
      @media (max-width: 576px) {
        .home-page .hero-banner .hero-left .hero-title {
          font-size: 20px;
          margin-bottom: 10px;
          padding: 0 15px; } }
    .home-page .hero-banner .hero-left .hero-description {
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 40px;
      max-width: 100%;
      position: relative;
      z-index: 1;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
      line-height: 1.6; }
      .home-page .hero-banner .hero-left .hero-description::before {
        content: "";
        position: absolute;
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        background: rgba(0, 0, 0, 0.4);
        filter: blur(20px);
        z-index: -1;
        border-radius: 50%;
        pointer-events: none; }
      @media (max-width: 992px) {
        .home-page .hero-banner .hero-left .hero-description {
          font-size: 14px; } }
      @media (max-width: 576px) {
        .home-page .hero-banner .hero-left .hero-description {
          font-size: 14px;
          margin-bottom: 20px;
          padding: 0 15px; } }
    .home-page .hero-banner .hero-left .btn-discover {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 10px 20px;
      background: linear-gradient(to right, #2bbd6a, #00682d);
      color: white;
      text-decoration: none;
      border-radius: 12px;
      border: 1px solid #56CE8A;
      font-weight: 500;
      font-size: 14px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 0 15px rgba(86, 206, 138, 0.5), 0 0 30px rgba(86, 206, 138, 0.3); }
      .home-page .hero-banner .hero-left .btn-discover:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 25px rgba(86, 206, 138, 0.7), 0 0 50px rgba(86, 206, 138, 0.4); }
      .home-page .hero-banner .hero-left .btn-discover .btn-icon {
        width: 20px;
        height: auto; }
  .home-page .hero-banner .hero-right {
    flex: 0 0 50%;
    position: relative; }
    @media (max-width: 992px) {
      .home-page .hero-banner .hero-right {
        padding-right: 40px; } }
    .home-page .hero-banner .hero-right .feature-boxes {
      position: relative;
      width: 100%;
      height: 550px; }
      .home-page .hero-banner .hero-right .feature-boxes .hero-connectors {
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        pointer-events: none; }
        @media (max-width: 992px) {
          .home-page .hero-banner .hero-right .feature-boxes .hero-connectors {
            top: -40px;
            left: -45px; } }
    @media (max-width: 768px) {
      .home-page .hero-banner .hero-right {
        height: 400px; }
        .home-page .hero-banner .hero-right .feature-boxes {
          height: 400px;
          transform: scale(0.75);
          transform-origin: center center; } }
    @media (max-width: 576px) {
      .home-page .hero-banner .hero-right {
        display: none; } }
    .home-page .hero-banner .hero-right .feature-box {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(12px);
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 24px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      transition: all 0.4s ease;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      position: absolute;
      z-index: 2;
      color: white; }
      .home-page .hero-banner .hero-right .feature-box:hover {
        transform: translateY(-5px) scale(1.02);
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.4); }
      .home-page .hero-banner .hero-right .feature-box.box-1 {
        top: 70px;
        left: 105px;
        width: 150px;
        height: 150px; }
        .home-page .hero-banner .hero-right .feature-box.box-1 .feature-text {
          font-size: 20px; }
          @media (max-width: 992px) {
            .home-page .hero-banner .hero-right .feature-box.box-1 .feature-text {
              font-size: 10px; } }
        .home-page .hero-banner .hero-right .feature-box.box-1 .feature-icon {
          width: 50px;
          height: 50px; }
          @media (max-width: 992px) {
            .home-page .hero-banner .hero-right .feature-box.box-1 .feature-icon {
              width: 32px;
              height: 32px; } }
        @media (max-width: 992px) {
          .home-page .hero-banner .hero-right .feature-box.box-1 {
            width: 100px;
            height: 100px;
            top: -10px;
            left: -5px;
            padding: 15px; } }
      .home-page .hero-banner .hero-right .feature-box.box-2 {
        top: 210px;
        right: 20px;
        width: 200px;
        height: 200px; }
        .home-page .hero-banner .hero-right .feature-box.box-2 .feature-text {
          font-size: 24px; }
          @media (max-width: 992px) {
            .home-page .hero-banner .hero-right .feature-box.box-2 .feature-text {
              font-size: 16px; } }
        .home-page .hero-banner .hero-right .feature-box.box-2 .feature-icon {
          width: 60px;
          height: 60px; }
          @media (max-width: 992px) {
            .home-page .hero-banner .hero-right .feature-box.box-2 .feature-icon {
              width: 40px;
              height: 40px; } }
        @media (max-width: 992px) {
          .home-page .hero-banner .hero-right .feature-box.box-2 {
            width: 150px;
            height: 150px;
            top: 90px;
            right: 10px;
            padding: 15px; } }
      .home-page .hero-banner .hero-right .feature-box.box-3 {
        bottom: 20px;
        left: 180px;
        width: 120px;
        height: 120px; }
        .home-page .hero-banner .hero-right .feature-box.box-3 .feature-text {
          font-size: 18px; }
          @media (max-width: 992px) {
            .home-page .hero-banner .hero-right .feature-box.box-3 .feature-text {
              font-size: 12px; } }
        .home-page .hero-banner .hero-right .feature-box.box-3 .feature-icon {
          width: 40px;
          height: 40px; }
          @media (max-width: 992px) {
            .home-page .hero-banner .hero-right .feature-box.box-3 .feature-icon {
              width: 32px;
              height: 32px; } }
        @media (max-width: 992px) {
          .home-page .hero-banner .hero-right .feature-box.box-3 {
            width: 100px;
            height: 100px;
            bottom: 90px;
            left: 25px;
            padding: 15px; } }
      .home-page .hero-banner .hero-right .feature-box .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: center; }
        .home-page .hero-banner .hero-right .feature-box .feature-icon img {
          max-width: 100%;
          max-height: 100%;
          filter: brightness(0) invert(1); }
      .home-page .hero-banner .hero-right .feature-box .feature-text {
        font-size: 20px;
        font-weight: 500;
        color: #ffffff;
        text-transform: capitalize;
        line-height: 1.3;
        max-width: 120px; }
  .home-page .hero-banner .hero-contact-block {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50px;
    padding: 10px 15px;
    width: max-content;
    margin: 40px auto 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 20px;
    position: relative;
    z-index: 20; }
    @media (max-width: 992px) {
      .home-page .hero-banner .hero-contact-block {
        margin-top: 30px; } }
    @media (max-width: 576px) {
      .home-page .hero-banner .hero-contact-block {
        padding: 10px;
        border-radius: 8px;
        width: 100%;
        max-width: 340px;
        gap: 15px; } }
    .home-page .hero-banner .hero-contact-block .hero-contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: #27364b;
      font-weight: 500;
      font-size: 18px;
      transition: color 0.3s ease; }
      .home-page .hero-banner .hero-contact-block .hero-contact-item:hover {
        color: #00ad4b; }
      .home-page .hero-banner .hero-contact-block .hero-contact-item .icon-wrapper {
        width: 40px;
        height: 40px;
        background: #f4f5f6;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center; }
        @media (max-width: 576px) {
          .home-page .hero-banner .hero-contact-block .hero-contact-item .icon-wrapper {
            width: 32px;
            height: 32px; } }
        .home-page .hero-banner .hero-contact-block .hero-contact-item .icon-wrapper img {
          width: 20px;
          height: 20px;
          object-fit: contain; }
          @media (max-width: 576px) {
            .home-page .hero-banner .hero-contact-block .hero-contact-item .icon-wrapper img {
              width: 16px;
              height: 16px; } }
      @media (max-width: 576px) {
        .home-page .hero-banner .hero-contact-block .hero-contact-item {
          font-size: 12px;
          gap: 8px; }
          .home-page .hero-banner .hero-contact-block .hero-contact-item .contact-divider {
            display: none; }
          .home-page .hero-banner .hero-contact-block .hero-contact-item .contact-number:last-of-type {
            display: block; } }
    .home-page .hero-banner .hero-contact-block .hero-contact-divider {
      width: 1px;
      height: 30px;
      background: #e2e8f0; }

.featured-products-section {
  position: relative;
  min-height: 700px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  /* ── Treatment Slider ── */ }
  @media (max-width: 992px) {
    .featured-products-section {
      min-height: 480px; } }
  .featured-products-section .featured-products-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none; }
  .featured-products-section .featured-products-container {
    position: relative;
    z-index: 2;
    width: 100%; }
    @media (max-width: 992px) {
      .featured-products-section .featured-products-container {
        padding-top: 30px;
        padding-bottom: 30px; } }
    @media (max-width: 576px) {
      .featured-products-section .featured-products-container {
        padding-left: 10px;
        padding-right: 10px; } }
  .featured-products-section .featured-products-header {
    text-align: center;
    margin-bottom: 50px; }
    @media (max-width: 576px) {
      .featured-products-section .featured-products-header {
        margin-bottom: 20px; } }
    .featured-products-section .featured-products-header .section-title {
      font-size: 32px;
      font-weight: 700;
      color: #27364b;
      position: relative;
      display: inline-block;
      text-transform: uppercase; }
      @media (max-width: 992px) {
        .featured-products-section .featured-products-header .section-title {
          font-size: 24px; } }
      @media (max-width: 576px) {
        .featured-products-section .featured-products-header .section-title {
          font-size: 18px; } }
  .featured-products-section .featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; }
    @media (max-width: 1199px) {
      .featured-products-section .featured-products-grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 576px) {
      .featured-products-section .featured-products-grid {
        grid-template-columns: 1fr; } }
  .featured-products-section .treatment-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px; }
    @media (max-width: 576px) {
      .featured-products-section .treatment-slider-wrapper.has-slider {
        flex-direction: column;
        gap: 20px; }
        .featured-products-section .treatment-slider-wrapper.has-slider .slider-arrow {
          display: none; } }
  .featured-products-section .treatment-slider-viewport {
    flex: 1;
    overflow: hidden;
    padding: 20px 5px;
    margin: -20px -5px; }
    @media (max-width: 576px) {
      .featured-products-section .treatment-slider-viewport {
        flex: none;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; }
        .featured-products-section .treatment-slider-viewport::-webkit-scrollbar {
          display: none; } }
  .featured-products-section .treatment-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform; }
    @media (max-width: 992px) {
      .featured-products-section .treatment-slider-track {
        gap: 16px; } }
    @media (max-width: 576px) {
      .featured-products-section .treatment-slider-track {
        gap: 10px;
        transition: none; } }
    .featured-products-section .treatment-slider-track.no-slider-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      width: 100%; }
      @media (max-width: 576px) {
        .featured-products-section .treatment-slider-track.no-slider-grid {
          display: flex; } }
  .featured-products-section .treatment-card {
    flex: 0 0 calc((100% - (24px * 3)) / 4);
    min-width: 0; }
    @media (max-width: 1199px) and (min-width: 577px) {
      .featured-products-section .treatment-card {
        flex: 0 0 calc((100% - (16px * 3)) / 4); }
        .featured-products-section .treatment-card .fp-card__body {
          padding: 8px;
          gap: 6px; }
        .featured-products-section .treatment-card .fp-card__title {
          font-size: 16px;
          height: calc(16px * 1.4 * 2); }
        .featured-products-section .treatment-card .fp-card__desc {
          font-size: 13px;
          height: calc(13px * 1.6 * 4); } }
    @media (max-width: 576px) {
      .featured-products-section .treatment-card {
        flex: 0 0 calc((100% - 10px) / 2);
        scroll-snap-align: start; }
        .featured-products-section .treatment-card .fp-card__title {
          font-size: 16px; }
        .featured-products-section .treatment-card .fp-card__desc {
          font-size: 13px; }
        .featured-products-section .treatment-card .fp-card__body {
          padding: 12px; } }
  .featured-products-section .treatment-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 36px; }
    .featured-products-section .treatment-slider-dots .slider-dot {
      width: 24px;
      height: 8px;
      border-radius: 4px;
      background: rgba(39, 54, 75, 0.15);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.3s ease; }
      .featured-products-section .treatment-slider-dots .slider-dot:hover {
        background: rgba(39, 54, 75, 0.3); }
      .featured-products-section .treatment-slider-dots .slider-dot.active {
        background: #2bbd6a;
        width: 58px;
        box-shadow: 0 0 12px rgba(43, 189, 106, 0.4); }
  .featured-products-section .slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 30px;
    background: #fff;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
    @media (max-width: 992px) {
      .featured-products-section .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 17px;
        margin: 0 10px; } }
    .featured-products-section .slider-arrow:hover:not(:disabled) {
      border-color: #2bbd6a;
      color: #2bbd6a;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(43, 189, 106, 0.25); }
  .featured-products-section .fp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01); }
    .featured-products-section .fp-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08); }
      .featured-products-section .fp-card:hover .fp-card__image img {
        transform: scale(1.08); }
    .featured-products-section .fp-card .fp-card__badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 10;
      background: linear-gradient(to right, #2bbd6a, #00a84d);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 4px 10px;
      border-radius: 20px;
      box-shadow: 0 2px 10px rgba(43, 189, 106, 0.5); }
    .featured-products-section .fp-card .fp-card__image {
      width: 100%;
      aspect-ratio: 4 / 3.75;
      overflow: hidden;
      background: #f0f4f8; }
      .featured-products-section .fp-card .fp-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block; }
    .featured-products-section .fp-card .fp-card__body {
      padding: 10px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 10px; }
      @media (max-width: 992px) {
        .featured-products-section .fp-card .fp-card__body {
          gap: 8px; } }
    .featured-products-section .fp-card .fp-card__title {
      font-size: 20px;
      font-weight: 700;
      color: #27364b;
      line-height: 1.4;
      margin: 0;
      height: calc(20px * 1.4 * 2);
      white-space: normal;
      word-break: break-word;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
      @media (max-width: 992px) {
        .featured-products-section .fp-card .fp-card__title {
          font-size: 16px;
          line-height: 1.3;
          height: calc(16px * 1.3 * 2); } }
    .featured-products-section .fp-card .fp-card__desc {
      font-size: 16px;
      color: #27364b;
      line-height: 1.6;
      margin: 0;
      height: calc(16px * 1.6 * 4);
      white-space: normal;
      word-break: break-word;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden; }
      @media (max-width: 992px) {
        .featured-products-section .fp-card .fp-card__desc {
          font-size: 14px;
          line-height: 1.3;
          height: calc(14px * 1.3 * 2);
          -webkit-line-clamp: 2; } }
    .featured-products-section .fp-card.fp-card--featured {
      border-color: rgba(43, 189, 106, 0.3);
      box-shadow: 0 4px 24px rgba(43, 189, 106, 0.15); }

.topics-section {
  padding: 72px 0 80px;
  background: #fff;
  /* ── Tabs ── */
  /* ── Panels ── */
  /* ── Slider wrapper ── */
  /* ── Card ── */
  /* ── Arrow buttons ── */
  /* ── Dot navigation ── */ }
  @media (max-width: 992px) {
    .topics-section {
      padding: 30px 0 0; } }
  @media (max-width: 576px) {
    .topics-section .container {
      padding-left: 10px;
      padding-right: 10px; } }
  .topics-section .topics-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #27364b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    position: relative; }
    @media (max-width: 992px) {
      .topics-section .topics-title {
        font-size: 24px; } }
    @media (max-width: 576px) {
      .topics-section .topics-title {
        font-size: 18px; } }
  .topics-section .topic-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    padding-left: 60px; }
    @media (max-width: 992px) {
      .topics-section .topic-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 15px 15px 20px 60px;
        margin: 0 0 24px;
        scroll-behavior: smooth; }
        .topics-section .topic-tabs::-webkit-scrollbar {
          display: none; } }
    @media (max-width: 576px) {
      .topics-section .topic-tabs {
        padding-left: 0px;
        justify-content: flex-start !important; } }
  .topics-section .topic-tab {
    flex-shrink: 0;
    padding: 8px 22px;
    border-radius: 8px;
    border: 1.5px solid #d1d5db;
    background: transparent;
    color: #27364b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    line-height: 1;
    outline: none; }
    .topics-section .topic-tab:hover:not(.active) {
      border-color: #2bbd6a;
      color: #2bbd6a; }
    .topics-section .topic-tab.active {
      background: linear-gradient(to right, #2bbd6a, #00682d);
      border-color: #2bbd6a;
      color: #fff;
      box-shadow: 0 0 10px rgba(43, 189, 106, 0.5), 0 0 10px rgba(43, 189, 106, 0.2); }
      .topics-section .topic-tab.active:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 15px rgba(43, 189, 106, 0.3), 0 0 15px rgba(43, 189, 106, 0.3); }
  .topics-section .topic-panel {
    display: none; }
    .topics-section .topic-panel.active {
      display: block; }
  .topics-section .topic-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px; }
    @media (max-width: 576px) {
      .topics-section .topic-slider-wrapper .slider-arrow {
        display: none; } }
  .topics-section .topic-slider-viewport {
    flex: 1;
    overflow: hidden;
    padding: 16px 4px;
    margin: -16px -4px; }
  .topics-section .topic-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform; }
    @media (max-width: 992px) {
      .topics-section .topic-slider-track {
        gap: 16px; } }
    @media (max-width: 576px) {
      .topics-section .topic-slider-track {
        gap: 10px; } }
  .topics-section .topic-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04), 0 4px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease; }
    @media (max-width: 992px) {
      .topics-section .topic-card {
        flex: 0 0 calc((100% - 24px) / 2); } }
    @media (max-width: 576px) {
      .topics-section .topic-card {
        flex: 0 0 calc((100% - 10px) / 2); } }
    .topics-section .topic-card:hover {
      transform: translateY(-5px); }
      .topics-section .topic-card:hover .topic-card__img img {
        transform: scale(1.05); }
    .topics-section .topic-card .topic-card__img {
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      border-radius: 0; }
      .topics-section .topic-card .topic-card__img--placeholder {
        aspect-ratio: 16 / 10;
        background: linear-gradient(135deg, #e2efd9, #c8e0b8); }
      .topics-section .topic-card .topic-card__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.45s ease; }
    .topics-section .topic-card .topic-card__text {
      padding: 18px 20px 22px;
      background: #fff; }
      @media (max-width: 576px) {
        .topics-section .topic-card .topic-card__text {
          padding: 10px; } }
    .topics-section .topic-card .topic-card__title {
      font-size: 17px;
      font-weight: 700;
      color: #1a2b3c;
      line-height: 1.45;
      margin: 0 0 10px;
      white-space: normal;
      word-break: break-word;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
    .topics-section .topic-card .topic-card__desc {
      font-size: 14px;
      color: #5a6a7e;
      line-height: 1.7;
      margin: 0;
      white-space: normal;
      word-break: break-word;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden; }
  .topics-section .slider-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #27364b;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0; }
    @media (max-width: 992px) {
      .topics-section .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 17px;
        margin: 0 10px; } }
    .topics-section .slider-arrow:hover:not(:disabled) {
      border-color: #2bbd6a;
      color: #2bbd6a;
      box-shadow: 0 4px 16px rgba(43, 189, 106, 0.2); }
    .topics-section .slider-arrow:disabled {
      opacity: 0.28;
      cursor: not-allowed; }
  .topics-section .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px; }
    .topics-section .slider-dots .slider-dot {
      width: 28px;
      height: 6px;
      border-radius: 3px;
      background: #d1d5db;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: width 0.25s ease, background 0.25s ease; }
      .topics-section .slider-dots .slider-dot.active {
        background: #2bbd6a;
        width: 44px; }
  .topics-section .topic-empty {
    text-align: center;
    color: #9ca3af;
    font-size: 15px;
    padding: 48px 0; }

.news-section {
  padding: 72px 0 0px;
  background: #fff;
  /* ── Bài nổi bật (trái) ── */
  /* ── Danh sách nhỏ (phải) ── */
  /* ── Date badge dùng chung ── */
  /* ── Placeholder ── */
  /* ── Responsive ── */ }
  .news-section .news-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #27364b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 40px; }
    @media (max-width: 992px) {
      .news-section .news-title {
        font-size: 24px;
        margin-bottom: 20px; } }
    @media (max-width: 576px) {
      .news-section .news-title {
        font-size: 18px; } }
  .news-section .news-layout {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 28px;
    align-items: stretch; }
    @media (max-width: 992px) {
      .news-section .news-layout {
        gap: 10px;
        padding: 0 10px;
        grid-template-columns: 60fr 40fr; } }
  .news-section .news-featured {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07); }
    .news-section .news-featured .news-featured__img-wrap {
      display: block;
      width: 100%;
      aspect-ratio: 3 / 2;
      overflow: hidden; }
      .news-section .news-featured .news-featured__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.45s ease; }
      .news-section .news-featured .news-featured__img-wrap:hover img {
        transform: scale(1.04); }
    .news-section .news-featured .news-featured__body {
      padding: 10px 10px 10px; }
    .news-section .news-featured .news-featured__title {
      font-size: 20px;
      font-weight: 700;
      color: #1a2b3c;
      line-height: 1.4; }
      .news-section .news-featured .news-featured__title a {
        color: inherit;
        text-decoration: none; }
    .news-section .news-featured .news-featured__desc {
      font-size: 14px;
      color: #5a6a7e;
      line-height: 1.7;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      white-space: normal; }
  .news-section .news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%; }
  .news-section .news-card {
    display: flex;
    gap: 14px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex: 1;
    min-height: 0; }
    .news-section .news-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); }
    .news-section .news-card .news-card__img {
      flex-shrink: 0;
      width: 170px;
      overflow: hidden;
      align-self: stretch; }
      @media (max-width: 992px) {
        .news-section .news-card .news-card__img {
          width: 120px; } }
      .news-section .news-card .news-card__img img,
      .news-section .news-card .news-card__img .news-placeholder-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block; }
    .news-section .news-card .news-card__body {
      flex: 1;
      padding: 12px 16px 12px 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      min-width: 0; }
    .news-section .news-card .news-card__title {
      font-size: 15px;
      font-weight: 700;
      color: #1a2b3c;
      line-height: 1.45;
      margin: 0 0 4px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      white-space: normal;
      word-break: break-word; }
    .news-section .news-card .news-card__desc {
      font-size: 13px;
      color: #5a6a7e;
      line-height: 1.6;
      margin: 0 0 6px;
      height: calc(13px * 1.6 * 2);
      white-space: normal;
      word-break: break-word;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
  .news-section .news-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #8a96a3;
    margin-top: auto; }
    .news-section .news-date svg {
      flex-shrink: 0; }
  .news-section .news-placeholder-img {
    background: linear-gradient(135deg, #e8f0e4, #d0e4c8);
    width: 100%;
    height: 100%; }
  @media (max-width: 992px) {
    .news-section .news-card__img {
      width: 140px; } }
  @media (max-width: 576px) {
    .news-section .news-layout {
      grid-template-columns: 1fr; }
    .news-section .news-card__img {
      width: 120px; } }

.product-page .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px; }
.product-page .product-card {
  background: white;
  padding: 20px;
  border: 1px solid #dddddd;
  text-align: center; }
  .product-page .product-card .product-image {
    margin-bottom: 15px; }
  .product-page .product-card .product-title {
    font-size: 18px;
    margin-bottom: 15px; }
  .product-page .product-card .button {
    display: inline-block;
    background: #00468c;
    color: white;
    padding: 10px 20px;
    border-radius: 4px; }

.news-page .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px; }
.news-page .news-card {
  background: white;
  border-bottom: 3px solid #00468c;
  padding-bottom: 20px; }
  .news-page .news-card .post-content {
    padding: 15px; }
  .news-page .news-card .post-title {
    font-size: 20px;
    margin: 10px 0; }

.about-section {
  padding: 80px 0 100px;
  background-color: #fff;
  /* Responsive */ }
  .about-section .about-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #27364b;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px; }
    @media (max-width: 992px) {
      .about-section .about-title {
        font-size: 24px;
        margin-bottom: 20px; } }
    @media (max-width: 576px) {
      .about-section .about-title {
        font-size: 18px; } }
  .about-section .about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; }
    @media (max-width: 992px) {
      .about-section .about-grid {
        gap: 10px;
        padding: 0 10px; } }
  .about-section .about-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease; }
    .about-section .about-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); }
    .about-section .about-card .about-card__img {
      aspect-ratio: 10 / 14;
      overflow: hidden;
      background: #f0f4f0; }
      .about-section .about-card .about-card__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease; }
    .about-section .about-card:hover .about-card__img img {
      transform: scale(1.05); }
    .about-section .about-card .about-card__body {
      padding: 10px 10px 10px;
      text-align: left; }
    .about-section .about-card .about-card__title {
      font-size: 24px;
      font-weight: 700;
      color: #27364b;
      margin: 0 0 10px;
      line-height: 1.4; }
      @media (max-width: 576px) {
        .about-section .about-card .about-card__title {
          font-size: 16px; } }
    .about-section .about-card .about-card__desc {
      font-size: 14px;
      color: #5a6a7e;
      line-height: 1.6;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden; }
      @media (max-width: 576px) {
        .about-section .about-card .about-card__desc {
          line-height: normal; } }
  @media (max-width: 992px) {
    .about-section .about-grid {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 576px) {
    .about-section .about-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px; } }

.search-results-page .search-banner {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px; }
  @media (max-width: 576px) {
    .search-results-page .search-banner {
      height: 250px !important; } }
  @media (max-width: 992px) {
    .search-results-page .search-banner {
      height: 300px; } }
  .search-results-page .search-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); }
  .search-results-page .search-banner .search-banner-container {
    margin-top: 100px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px; }
    @media (max-width: 576px) {
      .search-results-page .search-banner .search-banner-container {
        margin-top: 80px; } }
  .search-results-page .search-banner .search-banner-title {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); }
    @media (max-width: 768px) {
      .search-results-page .search-banner .search-banner-title {
        font-size: 36px; } }
    @media (max-width: 576px) {
      .search-results-page .search-banner .search-banner-title {
        font-size: 24px;
        margin-bottom: 10px; } }
.search-results-page .search-form-wrap {
  max-width: 800px;
  margin: 0 auto; }
  @media (max-width: 992px) {
    .search-results-page .search-form-wrap {
      max-width: 600px; }
      .search-results-page .search-form-wrap .search-input-group {
        padding: 4px; }
      .search-results-page .search-form-wrap .search-icon-left {
        width: 32px;
        height: 32px;
        margin-left: 5px; }
        .search-results-page .search-form-wrap .search-icon-left svg {
          width: 18px;
          height: 18px; }
      .search-results-page .search-form-wrap .search-field {
        padding: 8px 12px;
        font-size: 14px; }
      .search-results-page .search-form-wrap .btn-search-page {
        height: 40px;
        padding: 0 18px;
        font-size: 14px; } }
  @media (max-width: 576px) {
    .search-results-page .search-form-wrap {
      max-width: 350px; } }
  .search-results-page .search-form-wrap .search-main-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; }
  .search-results-page .search-form-wrap .search-input-group {
    background: #fff;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 5px; }
    @media (max-width: 576px) {
      .search-results-page .search-form-wrap .search-input-group {
        height: 40px;
        padding: 2px 4px; } }
  .search-results-page .search-form-wrap .search-icon-left {
    background: #ff9500;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 10px; }
    @media (max-width: 576px) {
      .search-results-page .search-form-wrap .search-icon-left {
        width: 32px;
        height: 32px;
        margin-left: 5px; } }
    .search-results-page .search-form-wrap .search-icon-left svg {
      width: 22px;
      height: 22px;
      stroke: #fff; }
      @media (max-width: 576px) {
        .search-results-page .search-form-wrap .search-icon-left svg {
          width: 18px;
          height: 18px; } }
  .search-results-page .search-form-wrap .search-field {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 10px;
    font-size: 16px;
    color: #333;
    background: transparent;
    min-width: 0; }
    .search-results-page .search-form-wrap .search-field::placeholder {
      color: #999; }
  .search-results-page .search-form-wrap .btn-search-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    background: linear-gradient(to right, #2bbd6a, #00682d);
    color: #fff;
    border: 1px solid #56CE8A;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(86, 206, 138, 0.3);
    flex-shrink: 0;
    height: 52px; }
    .search-results-page .search-form-wrap .btn-search-page:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(43, 189, 106, 0.8); }
    .search-results-page .search-form-wrap .btn-search-page svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0; }
      .search-results-page .search-form-wrap .btn-search-page svg path,
      .search-results-page .search-form-wrap .btn-search-page svg circle,
      .search-results-page .search-form-wrap .btn-search-page svg line {
        stroke: currentColor; }
    @media (max-width: 576px) {
      .search-results-page .search-form-wrap .btn-search-page {
        height: 40px;
        padding: 0 12px; }
        .search-results-page .search-form-wrap .btn-search-page span {
          display: inline-block !important;
          font-size: 13px; }
        .search-results-page .search-form-wrap .btn-search-page svg {
          display: none !important; } }
.search-results-page .breadcrumb-wrapper {
  padding: 20px 0;
  margin-bottom: 0; }
  @media (max-width: 992px) {
    .search-results-page .breadcrumb-wrapper {
      padding: 15px 0; } }
  .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #5a6a7e; }
    @media (max-width: 576px) {
      .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs {
        font-size: 14px;
        padding: 0 10px; } }
    .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link {
      color: #64748b;
      text-decoration: none;
      transition: color 0.3s ease; }
      .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link:hover {
        color: #00ad4b; }
    .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-sep {
      color: #cbd5e1;
      font-size: 14px; }
    .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-current {
      color: #27364b;
      font-weight: 600; }
.search-results-page .section-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px; }
  .search-results-page .section-heading__title {
    font-size: 24px;
    font-weight: 600;
    color: #27364b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0; }
    @media (max-width: 576px) {
      .search-results-page .section-heading__title {
        font-size: 16px; } }
  .search-results-page .section-heading__line {
    width: 410px;
    height: 3px;
    background: #00ad4b;
    border-radius: 2px; }
    @media (max-width: 576px) {
      .search-results-page .section-heading__line {
        width: 280px; } }
.search-results-page .top-searched-section {
  padding: 64px 0 40px; }
  @media (max-width: 992px) {
    .search-results-page .top-searched-section {
      padding: 40px 10px 20px; } }
  @media (max-width: 576px) {
    .search-results-page .top-searched-section {
      padding: 20px 10px; } }
.search-results-page .top-searched-dots {
  display: none; }
  @media (max-width: 576px) {
    .search-results-page .top-searched-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 16px; }
      .search-results-page .top-searched-dots .slider-dot {
        width: 28px;
        height: 6px;
        border-radius: 3px;
        background: #d1d5db;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: width 0.25s ease, background 0.25s ease; }
        .search-results-page .top-searched-dots .slider-dot.active {
          background: #2bbd6a;
          width: 44px; } }
.search-results-page .top-searched-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px; }
  @media (max-width: 1024px) {
    .search-results-page .top-searched-grid {
      gap: 8px; } }
  @media (max-width: 640px) {
    .search-results-page .top-searched-grid {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 576px) {
    .search-results-page .top-searched-grid {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 10px;
      padding-bottom: 0;
      scrollbar-width: none;
      -ms-overflow-style: none; }
      .search-results-page .top-searched-grid::-webkit-scrollbar {
        display: none; }
      .search-results-page .top-searched-grid .ts-card {
        flex: 0 0 calc((100% - 10px) / 2);
        scroll-snap-align: start; } }
.search-results-page .ts-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .search-results-page .ts-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14); }
    .search-results-page .ts-card:hover .ts-card__image img {
      transform: scale(1.06); }
    .search-results-page .ts-card:hover .ts-card__link {
      color: #00682d; }
  .search-results-page .ts-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f4f8; }
    .search-results-page .ts-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease; }
  .search-results-page .ts-card__badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 20px;
    backdrop-filter: blur(4px); }
    .search-results-page .ts-card__badge svg {
      stroke: #fff; }
  .search-results-page .ts-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px; }
    @media (max-width: 992px) {
      .search-results-page .ts-card__body {
        padding: 10px 10px; } }
  .search-results-page .ts-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #27364b;
    line-height: 1.4;
    margin: 0;
    height: calc(16px * 1.4 * 2);
    white-space: normal;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .search-results-page .ts-card__desc {
    font-size: 13px;
    color: #5a6a7e;
    line-height: 1.6;
    margin: 0;
    height: calc(13px * 1.6 * 4);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .search-results-page .ts-card__link {
    display: none; }
.search-results-page .search-content-section {
  padding: 60px 0 80px;
  background: #fff; }
  @media (max-width: 992px) {
    .search-results-page .search-content-section {
      padding: 40px 10px 60px; } }
.search-results-page .search-result-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f0f0f0; }
.search-results-page .search-result-label {
  font-size: 17px;
  color: #27364b;
  margin: 0; }
  .search-results-page .search-result-label strong {
    color: #2bbd6a; }
  .search-results-page .search-result-label .search-result-count {
    font-size: 14px;
    color: #8a96a3;
    margin-left: 6px; }
.search-results-page .product-list-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 28px; }
  .search-results-page .product-list-heading__title {
    font-size: 32px;
    font-weight: 700;
    color: #27364b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0; }
    @media (max-width: 576px) {
      .search-results-page .product-list-heading__title {
        font-size: 16px; } }
  .search-results-page .product-list-heading__line {
    width: 360px;
    height: 3px;
    background: #00ad4b;
    border-radius: 2px; }
    @media (max-width: 576px) {
      .search-results-page .product-list-heading__line {
        width: 200px; } }
.search-results-page .search-result-info {
  font-size: 15px;
  color: #5a6a7e;
  margin: 8px 0 0; }
  .search-results-page .search-result-info strong {
    color: #27364b; }
.search-results-page .search-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start; }
  @media (max-width: 1199px) {
    .search-results-page .search-layout {
      grid-template-columns: 1fr 280px;
      gap: 20px; } }
  @media (max-width: 991px) {
    .search-results-page .search-layout {
      grid-template-columns: 1fr 200px;
      gap: 15px; } }
  @media (max-width: 767px) {
    .search-results-page .search-layout {
      grid-template-columns: 1fr; }
      .search-results-page .search-layout .search-sidebar-col {
        order: 1; } }
.search-results-page .search-products-col {
  min-width: 0; }
.search-results-page .sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }
  @media (max-width: 1199px) {
    .search-results-page .sp-grid {
      gap: 12px; } }
  @media (max-width: 767px) {
    .search-results-page .sp-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px; } }
  @media (max-width: 576px) {
    .search-results-page .sp-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px; } }
.search-results-page .sp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ececec;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease; }
  .search-results-page .sp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12); }
    .search-results-page .sp-card:hover .sp-card__image img {
      transform: scale(1.05); }
  .search-results-page .sp-card__image {
    width: 100%;
    aspect-ratio: 4 / 3.75;
    overflow: hidden;
    background: #f5f7f5; }
    .search-results-page .sp-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease; }
  .search-results-page .sp-card__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px; }
  .search-results-page .sp-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #27364b;
    line-height: 1.4;
    margin: 0;
    height: calc(15px * 1.4 * 2);
    white-space: normal;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .search-results-page .sp-card__desc {
    font-size: 13px;
    color: #5a6a7e;
    line-height: 1.6;
    margin: 0;
    height: calc(13px * 1.6 * 4);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .search-results-page .sp-card__link {
    display: none; }
.search-results-page .sp-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px; }
  .search-results-page .sp-no-results__img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 24px; }
  .search-results-page .sp-no-results__title {
    font-size: 20px;
    font-weight: 700;
    color: #27364b;
    margin: 0 0 12px; }
    @media (max-width: 992px) {
      .search-results-page .sp-no-results__title {
        font-size: 16px;
        margin: 0 0 8px; } }
  .search-results-page .sp-no-results__desc {
    font-size: 16px;
    color: #5a6a7e;
    line-height: 1.7;
    max-width: 420px;
    margin: 0; }
    @media (max-width: 992px) {
      .search-results-page .sp-no-results__desc {
        font-size: 14px; } }
.search-results-page .search-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center; }
  .search-results-page .search-pagination .page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    align-items: center; }
    .search-results-page .search-pagination .page-numbers li a,
    .search-results-page .search-pagination .page-numbers li span {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 36px;
      padding: 0 8px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      border: 1.5px solid #e2e8f0;
      color: #27364b;
      background: #fff;
      transition: all 0.2s ease;
      cursor: pointer; }
      .search-results-page .search-pagination .page-numbers li a svg,
      .search-results-page .search-pagination .page-numbers li span svg {
        display: block;
        stroke: currentColor; }
    .search-results-page .search-pagination .page-numbers li a:hover {
      border-color: #2bbd6a;
      color: #2bbd6a;
      background: #f0fdf4; }
    .search-results-page .search-pagination .page-numbers li .current {
      background: #2bbd6a;
      border-color: #2bbd6a;
      color: #fff;
      box-shadow: 0 2px 8px rgba(43, 189, 106, 0.35); }
    .search-results-page .search-pagination .page-numbers li .dots {
      border-color: transparent;
      background: transparent;
      color: #94a3b8;
      min-width: auto;
      cursor: default; }
.search-results-page .search-sidebar-col {
  position: sticky;
  top: 100px; }
.search-results-page .sidebar-widget {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ececec;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  overflow: hidden; }
  .search-results-page .sidebar-widget__title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 16px 20px;
    background: linear-gradient(to right, #2bbd6a, #00682d);
    letter-spacing: 0.3px; }
    @media (max-width: 992px) {
      .search-results-page .sidebar-widget__title {
        font-size: 16px;
        padding: 10px; } }
.search-results-page .sidebar-category-list {
  list-style: none;
  margin: 0;
  padding: 8px 0; }
.search-results-page .sidebar-category-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 16px;
  color: #27364b;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-left: 3px solid transparent; }
  .search-results-page .sidebar-category-item a:hover {
    background: rgba(43, 189, 106, 0.07);
    color: #2bbd6a;
    border-left-color: #2bbd6a; }
.search-results-page .sidebar-category-item.active a {
  background: rgba(43, 189, 106, 0.1);
  color: #2bbd6a;
  font-weight: 600;
  border-left-color: #2bbd6a; }
.search-results-page .sidebar-category-item .cat-count {
  display: none; }
.search-results-page .sidebar-category-item + .sidebar-category-item a {
  border-top: 1px solid #f5f5f5; }

.search-results-page .search-banner {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px; }
  @media (max-width: 576px) {
    .search-results-page .search-banner {
      height: 250px !important; } }
  @media (max-width: 992px) {
    .search-results-page .search-banner {
      height: 300px; } }
  .search-results-page .search-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); }
  .search-results-page .search-banner .search-banner-container {
    margin-top: 100px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px; }
    @media (max-width: 576px) {
      .search-results-page .search-banner .search-banner-container {
        margin-top: 80px; } }
  .search-results-page .search-banner .search-banner-title {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); }
    @media (max-width: 768px) {
      .search-results-page .search-banner .search-banner-title {
        font-size: 36px; } }
    @media (max-width: 576px) {
      .search-results-page .search-banner .search-banner-title {
        font-size: 24px;
        margin-bottom: 10px; } }
.search-results-page .search-form-wrap {
  max-width: 800px;
  margin: 0 auto; }
  @media (max-width: 992px) {
    .search-results-page .search-form-wrap {
      max-width: 600px; }
      .search-results-page .search-form-wrap .search-input-group {
        padding: 4px; }
      .search-results-page .search-form-wrap .search-icon-left {
        width: 32px;
        height: 32px;
        margin-left: 5px; }
        .search-results-page .search-form-wrap .search-icon-left svg {
          width: 18px;
          height: 18px; }
      .search-results-page .search-form-wrap .search-field {
        padding: 8px 12px;
        font-size: 14px; }
      .search-results-page .search-form-wrap .btn-search-page {
        height: 40px;
        padding: 0 18px;
        font-size: 14px; } }
  @media (max-width: 576px) {
    .search-results-page .search-form-wrap {
      max-width: 350px; } }
  .search-results-page .search-form-wrap .search-main-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; }
  .search-results-page .search-form-wrap .search-input-group {
    background: #fff;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    gap: 5px; }
    @media (max-width: 576px) {
      .search-results-page .search-form-wrap .search-input-group {
        height: 40px;
        padding: 2px 4px; } }
  .search-results-page .search-form-wrap .search-icon-left {
    background: #ff9500;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 10px; }
    @media (max-width: 576px) {
      .search-results-page .search-form-wrap .search-icon-left {
        width: 32px;
        height: 32px;
        margin-left: 5px; } }
    .search-results-page .search-form-wrap .search-icon-left svg {
      width: 22px;
      height: 22px;
      stroke: #fff; }
      @media (max-width: 576px) {
        .search-results-page .search-form-wrap .search-icon-left svg {
          width: 18px;
          height: 18px; } }
  .search-results-page .search-form-wrap .search-field {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 10px;
    font-size: 16px;
    color: #333;
    background: transparent;
    min-width: 0; }
    .search-results-page .search-form-wrap .search-field::placeholder {
      color: #999; }
  .search-results-page .search-form-wrap .btn-search-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    background: linear-gradient(to right, #2bbd6a, #00682d);
    color: #fff;
    border: 1px solid #56CE8A;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(86, 206, 138, 0.3);
    flex-shrink: 0;
    height: 52px; }
    .search-results-page .search-form-wrap .btn-search-page:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(43, 189, 106, 0.8); }
    .search-results-page .search-form-wrap .btn-search-page svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0; }
      .search-results-page .search-form-wrap .btn-search-page svg path,
      .search-results-page .search-form-wrap .btn-search-page svg circle,
      .search-results-page .search-form-wrap .btn-search-page svg line {
        stroke: currentColor; }
    @media (max-width: 576px) {
      .search-results-page .search-form-wrap .btn-search-page {
        height: 40px;
        padding: 0 12px; }
        .search-results-page .search-form-wrap .btn-search-page span {
          display: inline-block !important;
          font-size: 13px; }
        .search-results-page .search-form-wrap .btn-search-page svg {
          display: none !important; } }
.search-results-page .breadcrumb-wrapper {
  padding: 20px 0;
  margin-bottom: 0; }
  @media (max-width: 992px) {
    .search-results-page .breadcrumb-wrapper {
      padding: 15px 0; } }
  .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #5a6a7e; }
    @media (max-width: 576px) {
      .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs {
        font-size: 14px;
        padding: 0 10px; } }
    .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link {
      color: #64748b;
      text-decoration: none;
      transition: color 0.3s ease; }
      .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link:hover {
        color: #00ad4b; }
    .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-sep {
      color: #cbd5e1;
      font-size: 14px; }
    .search-results-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-current {
      color: #27364b;
      font-weight: 600; }
.search-results-page .section-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px; }
  .search-results-page .section-heading__title {
    font-size: 24px;
    font-weight: 600;
    color: #27364b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0; }
    @media (max-width: 576px) {
      .search-results-page .section-heading__title {
        font-size: 16px; } }
  .search-results-page .section-heading__line {
    width: 410px;
    height: 3px;
    background: #00ad4b;
    border-radius: 2px; }
    @media (max-width: 576px) {
      .search-results-page .section-heading__line {
        width: 280px; } }
.search-results-page .top-searched-section {
  padding: 64px 0 40px; }
  @media (max-width: 992px) {
    .search-results-page .top-searched-section {
      padding: 40px 10px 20px; } }
  @media (max-width: 576px) {
    .search-results-page .top-searched-section {
      padding: 20px 10px; } }
.search-results-page .top-searched-dots {
  display: none; }
  @media (max-width: 576px) {
    .search-results-page .top-searched-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 16px; }
      .search-results-page .top-searched-dots .slider-dot {
        width: 28px;
        height: 6px;
        border-radius: 3px;
        background: #d1d5db;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: width 0.25s ease, background 0.25s ease; }
        .search-results-page .top-searched-dots .slider-dot.active {
          background: #2bbd6a;
          width: 44px; } }
.search-results-page .top-searched-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px; }
  @media (max-width: 1024px) {
    .search-results-page .top-searched-grid {
      gap: 8px; } }
  @media (max-width: 640px) {
    .search-results-page .top-searched-grid {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 576px) {
    .search-results-page .top-searched-grid {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 10px;
      padding-bottom: 0;
      scrollbar-width: none;
      -ms-overflow-style: none; }
      .search-results-page .top-searched-grid::-webkit-scrollbar {
        display: none; }
      .search-results-page .top-searched-grid .ts-card {
        flex: 0 0 calc((100% - 10px) / 2);
        scroll-snap-align: start; } }
.search-results-page .ts-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .search-results-page .ts-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14); }
    .search-results-page .ts-card:hover .ts-card__image img {
      transform: scale(1.06); }
    .search-results-page .ts-card:hover .ts-card__link {
      color: #00682d; }
  .search-results-page .ts-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f4f8; }
    .search-results-page .ts-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease; }
  .search-results-page .ts-card__badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 20px;
    backdrop-filter: blur(4px); }
    .search-results-page .ts-card__badge svg {
      stroke: #fff; }
  .search-results-page .ts-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px; }
    @media (max-width: 992px) {
      .search-results-page .ts-card__body {
        padding: 10px 10px; } }
  .search-results-page .ts-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #27364b;
    line-height: 1.4;
    margin: 0;
    height: calc(16px * 1.4 * 2);
    white-space: normal;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .search-results-page .ts-card__desc {
    font-size: 13px;
    color: #5a6a7e;
    line-height: 1.6;
    margin: 0;
    height: calc(13px * 1.6 * 4);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .search-results-page .ts-card__link {
    display: none; }
.search-results-page .search-content-section {
  padding: 60px 0 80px;
  background: #fff; }
  @media (max-width: 992px) {
    .search-results-page .search-content-section {
      padding: 40px 10px 60px; } }
.search-results-page .search-result-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f0f0f0; }
.search-results-page .search-result-label {
  font-size: 17px;
  color: #27364b;
  margin: 0; }
  .search-results-page .search-result-label strong {
    color: #2bbd6a; }
  .search-results-page .search-result-label .search-result-count {
    font-size: 14px;
    color: #8a96a3;
    margin-left: 6px; }
.search-results-page .product-list-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 28px; }
  .search-results-page .product-list-heading__title {
    font-size: 32px;
    font-weight: 700;
    color: #27364b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0; }
    @media (max-width: 576px) {
      .search-results-page .product-list-heading__title {
        font-size: 16px; } }
  .search-results-page .product-list-heading__line {
    width: 360px;
    height: 3px;
    background: #00ad4b;
    border-radius: 2px; }
    @media (max-width: 576px) {
      .search-results-page .product-list-heading__line {
        width: 200px; } }
.search-results-page .search-result-info {
  font-size: 15px;
  color: #5a6a7e;
  margin: 8px 0 0; }
  .search-results-page .search-result-info strong {
    color: #27364b; }
.search-results-page .search-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start; }
  @media (max-width: 1199px) {
    .search-results-page .search-layout {
      grid-template-columns: 1fr 280px;
      gap: 20px; } }
  @media (max-width: 991px) {
    .search-results-page .search-layout {
      grid-template-columns: 1fr 200px;
      gap: 15px; } }
  @media (max-width: 767px) {
    .search-results-page .search-layout {
      grid-template-columns: 1fr; }
      .search-results-page .search-layout .search-sidebar-col {
        order: 1; } }
.search-results-page .search-products-col {
  min-width: 0; }
.search-results-page .sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; }
  @media (max-width: 1199px) {
    .search-results-page .sp-grid {
      gap: 12px; } }
  @media (max-width: 767px) {
    .search-results-page .sp-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px; } }
  @media (max-width: 576px) {
    .search-results-page .sp-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px; } }
.search-results-page .sp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ececec;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease; }
  .search-results-page .sp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12); }
    .search-results-page .sp-card:hover .sp-card__image img {
      transform: scale(1.05); }
  .search-results-page .sp-card__image {
    width: 100%;
    aspect-ratio: 4 / 3.75;
    overflow: hidden;
    background: #f5f7f5; }
    .search-results-page .sp-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease; }
  .search-results-page .sp-card__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px; }
  .search-results-page .sp-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #27364b;
    line-height: 1.4;
    margin: 0;
    height: calc(15px * 1.4 * 2);
    white-space: normal;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .search-results-page .sp-card__desc {
    font-size: 13px;
    color: #5a6a7e;
    line-height: 1.6;
    margin: 0;
    height: calc(13px * 1.6 * 4);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .search-results-page .sp-card__link {
    display: none; }
.search-results-page .sp-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px; }
  .search-results-page .sp-no-results__img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 24px; }
  .search-results-page .sp-no-results__title {
    font-size: 20px;
    font-weight: 700;
    color: #27364b;
    margin: 0 0 12px; }
    @media (max-width: 992px) {
      .search-results-page .sp-no-results__title {
        font-size: 16px;
        margin: 0 0 8px; } }
  .search-results-page .sp-no-results__desc {
    font-size: 16px;
    color: #5a6a7e;
    line-height: 1.7;
    max-width: 420px;
    margin: 0; }
    @media (max-width: 992px) {
      .search-results-page .sp-no-results__desc {
        font-size: 14px; } }
.search-results-page .search-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center; }
  .search-results-page .search-pagination .page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    align-items: center; }
    .search-results-page .search-pagination .page-numbers li a,
    .search-results-page .search-pagination .page-numbers li span {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 36px;
      padding: 0 8px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      border: 1.5px solid #e2e8f0;
      color: #27364b;
      background: #fff;
      transition: all 0.2s ease;
      cursor: pointer; }
      .search-results-page .search-pagination .page-numbers li a svg,
      .search-results-page .search-pagination .page-numbers li span svg {
        display: block;
        stroke: currentColor; }
    .search-results-page .search-pagination .page-numbers li a:hover {
      border-color: #2bbd6a;
      color: #2bbd6a;
      background: #f0fdf4; }
    .search-results-page .search-pagination .page-numbers li .current {
      background: #2bbd6a;
      border-color: #2bbd6a;
      color: #fff;
      box-shadow: 0 2px 8px rgba(43, 189, 106, 0.35); }
    .search-results-page .search-pagination .page-numbers li .dots {
      border-color: transparent;
      background: transparent;
      color: #94a3b8;
      min-width: auto;
      cursor: default; }
.search-results-page .search-sidebar-col {
  position: sticky;
  top: 100px; }
.search-results-page .sidebar-widget {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ececec;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  overflow: hidden; }
  .search-results-page .sidebar-widget__title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 16px 20px;
    background: linear-gradient(to right, #2bbd6a, #00682d);
    letter-spacing: 0.3px; }
    @media (max-width: 992px) {
      .search-results-page .sidebar-widget__title {
        font-size: 16px;
        padding: 10px; } }
.search-results-page .sidebar-category-list {
  list-style: none;
  margin: 0;
  padding: 8px 0; }
.search-results-page .sidebar-category-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 16px;
  color: #27364b;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-left: 3px solid transparent; }
  .search-results-page .sidebar-category-item a:hover {
    background: rgba(43, 189, 106, 0.07);
    color: #2bbd6a;
    border-left-color: #2bbd6a; }
.search-results-page .sidebar-category-item.active a {
  background: rgba(43, 189, 106, 0.1);
  color: #2bbd6a;
  font-weight: 600;
  border-left-color: #2bbd6a; }
.search-results-page .sidebar-category-item .cat-count {
  display: none; }
.search-results-page .sidebar-category-item + .sidebar-category-item a {
  border-top: 1px solid #f5f5f5; }

/**
 * SINGLE PRODUCT PAGE STYLES
 */
.single-product-page {
  background-color: #fff;
  padding-bottom: 80px; }
  @media (max-width: 576px) {
    .single-product-page {
      padding-bottom: 0px; } }
  .single-product-page .breadcrumb-wrapper {
    padding: 20px 0;
    margin-bottom: 0; }
    @media (max-width: 992px) {
      .single-product-page .breadcrumb-wrapper {
        padding: 15px 0; } }
    .single-product-page .breadcrumb-wrapper .vimicro-breadcrumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      color: #5a6a7e; }
      .single-product-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link {
        color: #64748b;
        text-decoration: none;
        transition: color 0.3s ease; }
        .single-product-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link:hover {
          color: #00ad4b; }
      .single-product-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-sep {
        color: #cbd5e1;
        font-size: 14px; }
      .single-product-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-current {
        color: #27364b;
        font-weight: 600; }
  .single-product-page .product-top-row {
    display: flex;
    gap: 60px;
    margin-bottom: 80px; }
    @media (max-width: 1199px) {
      .single-product-page .product-top-row {
        gap: 20px;
        padding: 0 15px; } }
    @media (max-width: 767px) {
      .single-product-page .product-top-row {
        flex-direction: column;
        gap: 40px; } }
  .single-product-page .product-gallery-col {
    flex: 1;
    min-width: 0; }
    .single-product-page .product-gallery-col .product-gallery {
      display: flex;
      flex-direction: column; }
      .single-product-page .product-gallery-col .product-gallery .product-gallery__thumbs {
        margin-top: 20px;
        display: flex;
        gap: 12px; }
        .single-product-page .product-gallery-col .product-gallery .product-gallery__thumbs .gallery-thumb {
          position: relative;
          flex-shrink: 0;
          width: calc((100% - 24px) / 3);
          height: auto;
          aspect-ratio: 170 / 185;
          border-radius: 8px;
          border: none;
          background: #fff;
          overflow: hidden;
          cursor: pointer;
          padding: 4px;
          transition: box-shadow 0.2s ease; }
          .single-product-page .product-gallery-col .product-gallery .product-gallery__thumbs .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: contain; }
          .single-product-page .product-gallery-col .product-gallery .product-gallery__thumbs .gallery-thumb .gallery-thumb-more {
            position: absolute;
            inset: 0;
            background: rgba(39, 54, 75, 0.5);
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            letter-spacing: -0.5px; }
          .single-product-page .product-gallery-col .product-gallery .product-gallery__thumbs .gallery-thumb.is-active {
            box-shadow: 0 0 0 3px rgba(0, 173, 75, 0.8); }
    .single-product-page .product-gallery-col .product-gallery__main-image {
      position: relative;
      width: 100%;
      max-width: 550px;
      height: auto;
      aspect-ratio: 550 / 600;
      flex-shrink: 0;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); }
      .single-product-page .product-gallery-col .product-gallery__main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .single-product-page .product-gallery-col .product-gallery__main-image .gallery-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 4px;
        border: 1.5px solid rgba(255, 255, 255, 0.7);
        background: rgba(255, 255, 255, 0.85);
        color: #27364b;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
        backdrop-filter: blur(4px);
        z-index: 2; }
        @media (max-width: 992px) {
          .single-product-page .product-gallery-col .product-gallery__main-image .gallery-arrow {
            width: 32px;
            height: 32px; } }
        .single-product-page .product-gallery-col .product-gallery__main-image .gallery-arrow.gallery-arrow--prev {
          left: 14px; }
        .single-product-page .product-gallery-col .product-gallery__main-image .gallery-arrow.gallery-arrow--next {
          right: 14px; }
        .single-product-page .product-gallery-col .product-gallery__main-image .gallery-arrow:hover {
          background: #27364b;
          border-color: #27364b;
          color: #fff;
          box-shadow: 0 4px 14px rgba(39, 54, 75, 0.25); }
        .single-product-page .product-gallery-col .product-gallery__main-image .gallery-arrow svg {
          display: block; }
  .single-product-page .product-summary-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column; }
    .single-product-page .product-summary-col .product-category-label {
      margin-bottom: 12px; }
      .single-product-page .product-summary-col .product-category-label a {
        display: inline-block;
        padding: 4px 12px;
        background: rgba(43, 189, 106, 0.1);
        color: #2bbd6a;
        font-size: 13px;
        font-weight: 600;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease; }
        .single-product-page .product-summary-col .product-category-label a:hover {
          background: #2bbd6a;
          color: #fff; }
    .single-product-page .product-summary-col .product-title {
      font-size: 36px;
      font-weight: 700;
      color: #27364b;
      line-height: 1.2;
      margin-top: 0;
      margin-bottom: 24px;
      max-width: 500px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      text-transform: uppercase; }
      @media (max-width: 768px) {
        .single-product-page .product-summary-col .product-title {
          font-size: 28px;
          max-width: 100%; } }
      @media (max-width: 576px) {
        .single-product-page .product-summary-col .product-title {
          font-size: 18px;
          margin-bottom: 10px; } }
    .single-product-page .product-summary-col .product-divider {
      width: 60px;
      height: 4px;
      background: #2bbd6a;
      border-radius: 2px;
      margin-bottom: 30px; }
    .single-product-page .product-summary-col .product-short-desc {
      font-size: 16px;
      line-height: 1.7;
      color: #5a6a7e;
      margin-bottom: 20px; }
    .single-product-page .product-summary-col .product-attributes {
      margin-bottom: 24px; }
      .single-product-page .product-summary-col .product-attributes__label {
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: #27364b;
        margin-bottom: 8px; }
      .single-product-page .product-summary-col .product-attributes__list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px; }
      .single-product-page .product-summary-col .product-attributes__item {
        display: inline-block;
        padding: 4px 8px;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        color: #475569;
        background: #fff;
        transition: all 0.2s ease;
        cursor: pointer; }
        .single-product-page .product-summary-col .product-attributes__item.is-active {
          background: #00ad4b;
          color: #fff;
          border-color: #00ad4b; }
        .single-product-page .product-summary-col .product-attributes__item:hover {
          border-color: #00ad4b;
          color: #FFFFFF; }
    .single-product-page .product-summary-col .product-price-row {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 30px; }
      .single-product-page .product-summary-col .product-price-row .product-price-label {
        color: #f39c12; }
      .single-product-page .product-summary-col .product-price-row .product-price-value {
        color: #f39c12; }
      @media (max-width: 576px) {
        .single-product-page .product-summary-col .product-price-row {
          font-size: 20px; } }
    .single-product-page .product-summary-col .product-actions {
      margin-top: auto; }
      .single-product-page .product-summary-col .product-actions .btn-contact-quote {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, #2bbd6a, #008137);
        color: #fff;
        padding: 16px 32px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(43, 189, 106, 0.3); }
        .single-product-page .product-summary-col .product-actions .btn-contact-quote:hover {
          transform: translateY(-3px);
          box-shadow: 0 15px 30px rgba(43, 189, 106, 0.4);
          filter: brightness(1.1); }
        .single-product-page .product-summary-col .product-actions .btn-contact-quote svg {
          width: 20px;
          height: 20px; }
  .single-product-page .product-bottom-content {
    margin-top: 40px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.03), 0 6px 8px rgba(0, 0, 0, 0.03); }
    @media (max-width: 768px) {
      .single-product-page .product-bottom-content {
        padding: 10px;
        margin: 0 10px; } }
    .single-product-page .product-bottom-content .product-content-heading {
      margin-bottom: 40px; }
      .single-product-page .product-bottom-content .product-content-heading__title {
        font-size: 24px;
        font-weight: 600;
        color: #27364b;
        text-transform: uppercase; }
      .single-product-page .product-bottom-content .product-content-heading__line {
        width: 220px;
        height: 3px;
        background: #2bbd6a;
        border-radius: 2px; }
    .single-product-page .product-bottom-content .product-entry-content {
      font-size: 16px;
      line-height: 1.8;
      color: #b0bec5; }
      .single-product-page .product-bottom-content .product-entry-content p {
        margin-bottom: 20px;
        font-size: 16px;
        color: #27364b; }
      .single-product-page .product-bottom-content .product-entry-content h2,
      .single-product-page .product-bottom-content .product-entry-content h3,
      .single-product-page .product-bottom-content .product-entry-content h4 {
        color: #27364b;
        margin: 40px 0 20px; }
      .single-product-page .product-bottom-content .product-entry-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px; }
      .single-product-page .product-bottom-content .product-entry-content a {
        color: #2bbd6a;
        text-decoration: none; }
        .single-product-page .product-bottom-content .product-entry-content a:hover {
          text-decoration: underline; }
  .single-product-page .related-products-section {
    margin-top: 100px; }
    @media (max-width: 1199px) {
      .single-product-page .related-products-section {
        padding: 0 15px; } }
    .single-product-page .related-products-section .section-heading {
      margin-bottom: 50px;
      text-align: left; }
      @media (max-width: 576px) {
        .single-product-page .related-products-section .section-heading {
          margin-bottom: 20px; } }
    .single-product-page .related-products-section .sp-grid--related {
      grid-template-columns: repeat(4, 1fr); }
      @media (max-width: 1199px) {
        .single-product-page .related-products-section .sp-grid--related {
          grid-template-columns: repeat(4, 1fr); } }
      @media (max-width: 767px) {
        .single-product-page .related-products-section .sp-grid--related {
          grid-template-columns: repeat(2, 1fr); } }
      @media (max-width: 576px) {
        .single-product-page .related-products-section .sp-grid--related {
          display: flex;
          flex-wrap: nowrap;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          gap: 10px;
          scrollbar-width: none;
          -ms-overflow-style: none; }
          .single-product-page .related-products-section .sp-grid--related::-webkit-scrollbar {
            display: none; }
          .single-product-page .related-products-section .sp-grid--related .sp-card {
            flex: 0 0 calc((100% - 10px) / 2);
            scroll-snap-align: start; } }
    .single-product-page .related-products-section .related-dots {
      display: none; }
      @media (max-width: 576px) {
        .single-product-page .related-products-section .related-dots {
          display: flex;
          justify-content: center;
          gap: 8px;
          margin-top: 16px; }
          .single-product-page .related-products-section .related-dots .slider-dot {
            width: 28px;
            height: 6px;
            border-radius: 3px;
            background: #d1d5db;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: width 0.25s ease, background 0.25s ease; }
            .single-product-page .related-products-section .related-dots .slider-dot.active {
              background: #2bbd6a;
              width: 44px; } }
  .single-product-page .contact-section {
    padding: 80px 0; }
    @media (max-width: 992px) {
      .single-product-page .contact-section {
        padding: 100px 0; } }
    @media (max-width: 576px) {
      .single-product-page .contact-section {
        padding: 0;
        margin-top: 50px; } }

.blog-page,
.single-blog-page,
.faq-page {
  background-color: #fff;
  padding-bottom: 80px; }
  @media (max-width: 576px) {
    .blog-page,
    .single-blog-page,
    .faq-page {
      padding-bottom: 0; } }
  .blog-page .kt-banner,
  .single-blog-page .kt-banner,
  .faq-page .kt-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    @media (max-width: 992px) {
      .blog-page .kt-banner,
      .single-blog-page .kt-banner,
      .faq-page .kt-banner {
        height: 300px; } }
    @media (max-width: 576px) {
      .blog-page .kt-banner,
      .single-blog-page .kt-banner,
      .faq-page .kt-banner {
        padding-top: 70px;
        height: 250px; } }
    .blog-page .kt-banner::before,
    .single-blog-page .kt-banner::before,
    .faq-page .kt-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4); }
    .blog-page .kt-banner__container,
    .single-blog-page .kt-banner__container,
    .faq-page .kt-banner__container {
      margin-top: 100px;
      position: relative;
      z-index: 2; }
      @media (max-width: 991px) {
        .blog-page .kt-banner__container,
        .single-blog-page .kt-banner__container,
        .faq-page .kt-banner__container {
          margin-top: 0; } }
    .blog-page .kt-banner__title,
    .single-blog-page .kt-banner__title,
    .faq-page .kt-banner__title {
      color: #fff;
      font-size: 52px;
      font-weight: 700;
      text-transform: uppercase;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      margin: 0;
      text-align: center; }
      @media (max-width: 768px) {
        .blog-page .kt-banner__title,
        .single-blog-page .kt-banner__title,
        .faq-page .kt-banner__title {
          font-size: 36px; } }
      @media (max-width: 576px) {
        .blog-page .kt-banner__title,
        .single-blog-page .kt-banner__title,
        .faq-page .kt-banner__title {
          font-size: 24px !important; } }
  .blog-page .breadcrumb-wrapper,
  .single-blog-page .breadcrumb-wrapper,
  .faq-page .breadcrumb-wrapper {
    padding: 20px 0;
    margin-bottom: 0; }
    @media (max-width: 992px) {
      .blog-page .breadcrumb-wrapper,
      .single-blog-page .breadcrumb-wrapper,
      .faq-page .breadcrumb-wrapper {
        padding: 15px 0; } }
    .blog-page .breadcrumb-wrapper .vimicro-breadcrumbs,
    .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs,
    .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      color: #5a6a7e; }
      @media (max-width: 576px) {
        .blog-page .breadcrumb-wrapper .vimicro-breadcrumbs,
        .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs,
        .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs {
          font-size: 14px;
          padding: 0 10px; } }
      .blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link,
      .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link,
      .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link {
        color: #64748b;
        text-decoration: none;
        transition: color 0.3s ease; }
        .blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link:hover,
        .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link:hover,
        .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link:hover {
          color: #00ad4b; }
      .blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-sep,
      .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-sep,
      .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-sep {
        color: #cbd5e1;
        font-size: 14px; }
      .blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-current,
      .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-current,
      .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-current {
        color: #27364b;
        font-weight: 600; }
  .blog-page .faq-searched-section,
  .single-blog-page .faq-searched-section,
  .faq-page .faq-searched-section {
    padding: 160px 0; }
    @media (max-width: 992px) {
      .blog-page .faq-searched-section,
      .single-blog-page .faq-searched-section,
      .faq-page .faq-searched-section {
        padding: 150px 15px; } }
    @media (max-width: 576px) {
      .blog-page .faq-searched-section,
      .single-blog-page .faq-searched-section,
      .faq-page .faq-searched-section {
        padding: 450px 15px 50px; } }
    .blog-page .faq-searched-section .kt-grid,
    .single-blog-page .faq-searched-section .kt-grid,
    .faq-page .faq-searched-section .kt-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px; }
      @media (max-width: 992px) {
        .blog-page .faq-searched-section .kt-grid,
        .single-blog-page .faq-searched-section .kt-grid,
        .faq-page .faq-searched-section .kt-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 10px; } }
      @media (max-width: 576px) {
        .blog-page .faq-searched-section .kt-grid,
        .single-blog-page .faq-searched-section .kt-grid,
        .faq-page .faq-searched-section .kt-grid {
          display: flex;
          flex-wrap: nowrap;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          gap: 10px;
          scrollbar-width: none;
          -ms-overflow-style: none; }
          .blog-page .faq-searched-section .kt-grid::-webkit-scrollbar,
          .single-blog-page .faq-searched-section .kt-grid::-webkit-scrollbar,
          .faq-page .faq-searched-section .kt-grid::-webkit-scrollbar {
            display: none; }
          .blog-page .faq-searched-section .kt-grid .kt-card,
          .single-blog-page .faq-searched-section .kt-grid .kt-card,
          .faq-page .faq-searched-section .kt-grid .kt-card {
            flex: 0 0 calc((100% - 10px) / 2);
            scroll-snap-align: start; } }
    .blog-page .faq-searched-section .related-dots,
    .single-blog-page .faq-searched-section .related-dots,
    .faq-page .faq-searched-section .related-dots {
      display: none; }
      @media (max-width: 576px) {
        .blog-page .faq-searched-section .related-dots,
        .single-blog-page .faq-searched-section .related-dots,
        .faq-page .faq-searched-section .related-dots {
          display: flex;
          justify-content: center;
          gap: 8px;
          margin-top: 16px; }
          .blog-page .faq-searched-section .related-dots .slider-dot,
          .single-blog-page .faq-searched-section .related-dots .slider-dot,
          .faq-page .faq-searched-section .related-dots .slider-dot {
            width: 28px;
            height: 6px;
            border-radius: 3px;
            background: #d1d5db;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: width 0.25s ease, background 0.25s ease; }
            .blog-page .faq-searched-section .related-dots .slider-dot.active,
            .single-blog-page .faq-searched-section .related-dots .slider-dot.active,
            .faq-page .faq-searched-section .related-dots .slider-dot.active {
              background: #2bbd6a;
              width: 44px; } }
    .blog-page .faq-searched-section .kt-heading,
    .single-blog-page .faq-searched-section .kt-heading,
    .faq-page .faq-searched-section .kt-heading {
      font-size: 26px;
      color: #27364b;
      margin-bottom: 40px;
      border-bottom: 3px solid #00ad4b;
      display: inline-block;
      padding-bottom: 10px;
      text-transform: uppercase;
      font-weight: 700; }
      @media (max-width: 576px) {
        .blog-page .faq-searched-section .kt-heading,
        .single-blog-page .faq-searched-section .kt-heading,
        .faq-page .faq-searched-section .kt-heading {
          font-size: 16px; } }
  .blog-page .kt-content-section,
  .single-blog-page .kt-content-section,
  .faq-page .kt-content-section {
    padding: 50px 0 80px; }
    @media (max-width: 992px) {
      .blog-page .kt-content-section,
      .single-blog-page .kt-content-section,
      .faq-page .kt-content-section {
        padding: 30px 10px 50px; } }
  .blog-page .kt-heading,
  .single-blog-page .kt-heading,
  .faq-page .kt-heading {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 36px; }
    .blog-page .kt-heading__title,
    .single-blog-page .kt-heading__title,
    .faq-page .kt-heading__title {
      font-size: 32px;
      font-weight: 700;
      color: #27364b;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin: 0; }
      @media (max-width: 992px) {
        .blog-page .kt-heading__title,
        .single-blog-page .kt-heading__title,
        .faq-page .kt-heading__title {
          font-size: 24px; } }
      @media (max-width: 576px) {
        .blog-page .kt-heading__title,
        .single-blog-page .kt-heading__title,
        .faq-page .kt-heading__title {
          font-size: 16px; } }
    .blog-page .kt-heading__line,
    .single-blog-page .kt-heading__line,
    .faq-page .kt-heading__line {
      width: 305px;
      height: 3px;
      background: #00ad4b;
      border-radius: 2px; }
      @media (max-width: 992px) {
        .blog-page .kt-heading__line,
        .single-blog-page .kt-heading__line,
        .faq-page .kt-heading__line {
          width: 230px; } }
      @media (max-width: 576px) {
        .blog-page .kt-heading__line,
        .single-blog-page .kt-heading__line,
        .faq-page .kt-heading__line {
          width: 160px; } }
  .blog-page .kt-layout,
  .single-blog-page .kt-layout,
  .faq-page .kt-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start; }
    @media (max-width: 1199px) {
      .blog-page .kt-layout,
      .single-blog-page .kt-layout,
      .faq-page .kt-layout {
        grid-template-columns: 1fr 250px;
        gap: 20px; } }
    @media (max-width: 992px) {
      .blog-page .kt-layout,
      .single-blog-page .kt-layout,
      .faq-page .kt-layout {
        grid-template-columns: 1fr 190px;
        gap: 10px; } }
    @media (max-width: 767px) {
      .blog-page .kt-layout,
      .single-blog-page .kt-layout,
      .faq-page .kt-layout {
        grid-template-columns: 1fr; }
        .blog-page .kt-layout .kt-sidebar-col,
        .single-blog-page .kt-layout .kt-sidebar-col,
        .faq-page .kt-layout .kt-sidebar-col {
          order: 1;
          padding-top: 50px; } }
  .blog-page .kt-posts-col,
  .single-blog-page .kt-posts-col,
  .faq-page .kt-posts-col {
    min-width: 0; }
  .blog-page .kt-grid,
  .single-blog-page .kt-grid,
  .faq-page .kt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px; }
    @media (max-width: 1199px) {
      .blog-page .kt-grid,
      .single-blog-page .kt-grid,
      .faq-page .kt-grid {
        gap: 15px; } }
    @media (max-width: 767px) {
      .blog-page .kt-grid,
      .single-blog-page .kt-grid,
      .faq-page .kt-grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 576px) {
      .blog-page .kt-grid,
      .single-blog-page .kt-grid,
      .faq-page .kt-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; } }
  .blog-page .kt-card,
  .single-blog-page .kt-card,
  .faq-page .kt-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid #ececec;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease; }
    .blog-page .kt-card:hover,
    .single-blog-page .kt-card:hover,
    .faq-page .kt-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12); }
      .blog-page .kt-card:hover .kt-card__image img,
      .single-blog-page .kt-card:hover .kt-card__image img,
      .faq-page .kt-card:hover .kt-card__image img {
        transform: scale(1.05); }
      .blog-page .kt-card:hover .kt-card__title,
      .single-blog-page .kt-card:hover .kt-card__title,
      .faq-page .kt-card:hover .kt-card__title {
        color: #00ad4b; }
    .blog-page .kt-card__image,
    .single-blog-page .kt-card__image,
    .faq-page .kt-card__image {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #f5f7f5; }
      .blog-page .kt-card__image img,
      .single-blog-page .kt-card__image img,
      .faq-page .kt-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease; }
    .blog-page .kt-card__cat,
    .single-blog-page .kt-card__cat,
    .faq-page .kt-card__cat {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(0, 173, 75, 0.9);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 20px;
      backdrop-filter: blur(4px); }
    .blog-page .kt-card__body,
    .single-blog-page .kt-card__body,
    .faq-page .kt-card__body {
      padding: 10px 10px 10px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 8px; }
    .blog-page .kt-card__title,
    .single-blog-page .kt-card__title,
    .faq-page .kt-card__title {
      font-size: 18px;
      font-weight: 600;
      color: #27364b;
      text-transform: uppercase;
      line-height: 1.4;
      margin: 0;
      white-space: normal;
      word-break: break-word;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: color 0.2s ease; }
    .blog-page .kt-card__desc,
    .single-blog-page .kt-card__desc,
    .faq-page .kt-card__desc {
      font-size: 16px;
      color: #5a6a7e;
      line-height: 1.6;
      margin: 0;
      white-space: normal;
      word-break: break-word;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
    .blog-page .kt-card__meta,
    .single-blog-page .kt-card__meta,
    .faq-page .kt-card__meta {
      margin-top: auto;
      padding-top: 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px; }
    .blog-page .kt-card__date,
    .single-blog-page .kt-card__date,
    .faq-page .kt-card__date {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      color: #8a96a3; }
      .blog-page .kt-card__date svg,
      .single-blog-page .kt-card__date svg,
      .faq-page .kt-card__date svg {
        flex-shrink: 0; }
    .blog-page .kt-card__readmore,
    .single-blog-page .kt-card__readmore,
    .faq-page .kt-card__readmore {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-size: 14px;
      font-weight: 600;
      color: #ff9500;
      white-space: nowrap; }
      .blog-page .kt-card__readmore svg,
      .single-blog-page .kt-card__readmore svg,
      .faq-page .kt-card__readmore svg {
        flex-shrink: 0;
        stroke: #ff9500;
        transition: transform 0.2s ease; }
      @media (max-width: 992px) {
        .blog-page .kt-card__readmore,
        .single-blog-page .kt-card__readmore,
        .faq-page .kt-card__readmore {
          display: none; } }
    @media (max-width: 992px) {
      .blog-page .kt-card__title,
      .single-blog-page .kt-card__title,
      .faq-page .kt-card__title {
        font-size: 16px; }
      .blog-page .kt-card__desc,
      .single-blog-page .kt-card__desc,
      .faq-page .kt-card__desc {
        font-size: 14px; } }
  .blog-page .kt-no-results,
  .single-blog-page .kt-no-results,
  .faq-page .kt-no-results {
    text-align: center;
    padding: 80px 20px; }
    .blog-page .kt-no-results__title,
    .single-blog-page .kt-no-results__title,
    .faq-page .kt-no-results__title {
      font-size: 20px;
      font-weight: 700;
      color: #27364b;
      margin: 0 0 12px; }
    .blog-page .kt-no-results__desc,
    .single-blog-page .kt-no-results__desc,
    .faq-page .kt-no-results__desc {
      font-size: 15px;
      color: #5a6a7e; }
  .blog-page .kt-pagination,
  .single-blog-page .kt-pagination,
  .faq-page .kt-pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center; }
    .blog-page .kt-pagination .page-numbers,
    .single-blog-page .kt-pagination .page-numbers,
    .faq-page .kt-pagination .page-numbers {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center; }
      .blog-page .kt-pagination .page-numbers li a,
      .blog-page .kt-pagination .page-numbers li span,
      .single-blog-page .kt-pagination .page-numbers li a,
      .single-blog-page .kt-pagination .page-numbers li span,
      .faq-page .kt-pagination .page-numbers li a,
      .faq-page .kt-pagination .page-numbers li span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 28px;
        height: 28px;
        padding: 0 8px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        border: 1.5px solid #e0e0e0;
        color: #27364b;
        transition: all 0.22s ease;
        background: #fff; }
      .blog-page .kt-pagination .page-numbers li a:hover,
      .single-blog-page .kt-pagination .page-numbers li a:hover,
      .faq-page .kt-pagination .page-numbers li a:hover {
        border-color: #00ad4b;
        color: #00ad4b;
        background: rgba(0, 173, 75, 0.06); }
      .blog-page .kt-pagination .page-numbers li .current,
      .single-blog-page .kt-pagination .page-numbers li .current,
      .faq-page .kt-pagination .page-numbers li .current {
        background: #00ad4b;
        border-color: #00ad4b;
        color: #fff;
        box-shadow: 0 3px 10px rgba(0, 173, 75, 0.35); }
      .blog-page .kt-pagination .page-numbers li .dots,
      .single-blog-page .kt-pagination .page-numbers li .dots,
      .faq-page .kt-pagination .page-numbers li .dots {
        border: none;
        color: #8a96a3;
        background: transparent; }
  .blog-page .kt-sidebar-col,
  .single-blog-page .kt-sidebar-col,
  .faq-page .kt-sidebar-col {
    position: sticky;
    top: 100px; }
  .blog-page .sidebar-widget,
  .single-blog-page .sidebar-widget,
  .faq-page .sidebar-widget {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ececec;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    overflow: hidden; }
    .blog-page .sidebar-widget__title,
    .single-blog-page .sidebar-widget__title,
    .faq-page .sidebar-widget__title {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin: 0;
      padding: 16px 20px;
      background: linear-gradient(to right, #2bbd6a, #00682d);
      letter-spacing: 0.3px; }
      @media (max-width: 992px) {
        .blog-page .sidebar-widget__title,
        .single-blog-page .sidebar-widget__title,
        .faq-page .sidebar-widget__title {
          font-size: 16px;
          padding: 10px; } }
  .blog-page .sidebar-category-list,
  .single-blog-page .sidebar-category-list,
  .faq-page .sidebar-category-list {
    list-style: none;
    margin: 0;
    padding: 8px 0; }
  .blog-page .sidebar-category-item a,
  .single-blog-page .sidebar-category-item a,
  .faq-page .sidebar-category-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 15px;
    color: #27364b;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border-left: 3px solid transparent; }
    .blog-page .sidebar-category-item a:hover,
    .single-blog-page .sidebar-category-item a:hover,
    .faq-page .sidebar-category-item a:hover {
      background: rgba(0, 173, 75, 0.07);
      color: #00ad4b;
      border-left-color: #00ad4b; }
  .blog-page .sidebar-category-item.active a,
  .single-blog-page .sidebar-category-item.active a,
  .faq-page .sidebar-category-item.active a {
    background: rgba(0, 173, 75, 0.1);
    color: #00ad4b;
    font-weight: 600;
    border-left-color: #00ad4b; }
  .blog-page .sidebar-category-item + .sidebar-category-item a,
  .single-blog-page .sidebar-category-item + .sidebar-category-item a,
  .faq-page .sidebar-category-item + .sidebar-category-item a {
    border-top: 1px solid #f5f5f5; }

.single-blog-page {
  background: #fff;
  padding-bottom: 80px; }
  .single-blog-page .kt-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    @media (max-width: 992px) {
      .single-blog-page .kt-banner {
        height: 300px; } }
    @media (max-width: 576px) {
      .single-blog-page .kt-banner {
        height: 250px; } }
    .single-blog-page .kt-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4); }
    .single-blog-page .kt-banner__container {
      margin-top: 100px;
      position: relative;
      z-index: 2; }
      @media (max-width: 991px) {
        .single-blog-page .kt-banner__container {
          margin-top: 0; } }
    .single-blog-page .kt-banner__title {
      color: #fff;
      font-size: 52px;
      font-weight: 700;
      text-transform: uppercase;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      margin: 0;
      text-align: center; }
      @media (max-width: 768px) {
        .single-blog-page .kt-banner__title {
          font-size: 36px; } }
      @media (max-width: 576px) {
        .single-blog-page .kt-banner__title {
          font-size: 24px; } }
  .single-blog-page .breadcrumb-wrapper {
    padding: 20px 0;
    margin-bottom: 0; }
    @media (max-width: 992px) {
      .single-blog-page .breadcrumb-wrapper {
        padding: 15px 0; } }
    .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      color: #5a6a7e; }
      @media (max-width: 576px) {
        .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs {
          font-size: 14px; } }
      .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link {
        color: #64748b;
        text-decoration: none;
        transition: color 0.3s ease; }
        .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link:hover {
          color: #00ad4b; }
      .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-sep {
        color: #cbd5e1;
        font-size: 14px; }
      .single-blog-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-current {
        color: #27364b;
        font-weight: 600; }
  .single-blog-page .sb-article {
    padding-top: 10px; }
    @media (max-width: 576px) {
      .single-blog-page .sb-article {
        padding: 0 10px; } }
  .single-blog-page .sb-header {
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00ad4b;
    display: inline-block;
    width: auto;
    min-width: 250px; }
    @media (max-width: 992px) {
      .single-blog-page .sb-header {
        margin: 10px 10px 50px;
        font-size: 24px; } }
    @media (max-width: 576px) {
      .single-blog-page .sb-header {
        margin: 10px 10px 30px;
        font-size: 18px !important; } }
  .single-blog-page .sb-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px; }
    .single-blog-page .sb-meta__date, .single-blog-page .sb-meta__cat {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: #8a96a3; }
      .single-blog-page .sb-meta__date svg, .single-blog-page .sb-meta__cat svg {
        flex-shrink: 0; }
    .single-blog-page .sb-meta__cat {
      color: #00ad4b;
      font-weight: 600; }
  .single-blog-page .sb-title {
    font-size: 28px;
    font-weight: 700;
    color: #27364b;
    line-height: 1.35;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px; }
    @media (max-width: 768px) {
      .single-blog-page .sb-title {
        font-size: 22px; } }
    @media (max-width: 576px) {
      .single-blog-page .sb-title {
        font-size: 18px; } }
  .single-blog-page .sb-gallery {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden; }
  .single-blog-page .sb-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden; }
    @media (max-width: 992px) {
      .single-blog-page .sb-gallery__main {
        padding: 15px; } }
    @media (max-width: 576px) {
      .single-blog-page .sb-gallery__main {
        padding: 0;
        border-radius: 4px; } }
    .single-blog-page .sb-gallery__main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity 0.2s ease; }
      @media (max-width: 992px) {
        .single-blog-page .sb-gallery__main img {
          border-radius: 12px; } }
  .single-blog-page .sb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.88);
    color: #27364b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(4px);
    z-index: 2; }
    @media (max-width: 576px) {
      .single-blog-page .sb-arrow {
        width: 24px;
        height: 24px; } }
    .single-blog-page .sb-arrow--prev {
      left: 16px; }
    .single-blog-page .sb-arrow--next {
      right: 16px; }
    .single-blog-page .sb-arrow:hover {
      background: #fff;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
      transform: translateY(-50%) scale(1.06); }
    .single-blog-page .sb-arrow svg {
      display: block; }
  .single-blog-page .sb-gallery__thumbs {
    display: flex;
    gap: 20px;
    margin-top: 20px; }
    .single-blog-page .sb-gallery__thumbs .sb-thumb {
      flex: 1;
      aspect-ratio: 4 / 3;
      border: none;
      background: #f0f4f8;
      overflow: hidden;
      cursor: pointer;
      padding: 0;
      position: relative;
      transition: opacity 0.2s ease;
      border-radius: 4px; }
      .single-blog-page .sb-gallery__thumbs .sb-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease; }
      .single-blog-page .sb-gallery__thumbs .sb-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 4px;
        border: 3px solid transparent;
        transition: border-color 0.2s ease; }
      .single-blog-page .sb-gallery__thumbs .sb-thumb:hover img {
        transform: scale(1.06); }
      .single-blog-page .sb-gallery__thumbs .sb-thumb:not(.is-active) {
        opacity: 0.72; }
      .single-blog-page .sb-gallery__thumbs .sb-thumb:not(.is-active):hover {
        opacity: 1; }
  .single-blog-page .sb-content {
    font-size: 16px;
    line-height: 1.8;
    color: #3d4a5c; }
    @media (max-width: 992px) {
      .single-blog-page .sb-content {
        padding: 0 15px; } }
    .single-blog-page .sb-content p {
      margin: 0 0 20px; }
      .single-blog-page .sb-content p:last-child {
        margin-bottom: 0; }
    .single-blog-page .sb-content h2 {
      font-size: 22px;
      font-weight: 700;
      color: #27364b;
      margin: 36px 0 16px; }
    .single-blog-page .sb-content h3 {
      font-size: 19px;
      font-weight: 700;
      color: #27364b;
      margin: 28px 0 12px; }
    .single-blog-page .sb-content ul,
    .single-blog-page .sb-content ol {
      padding-left: 22px;
      margin-bottom: 20px; }
      .single-blog-page .sb-content ul li,
      .single-blog-page .sb-content ol li {
        margin-bottom: 6px; }
    .single-blog-page .sb-content img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 20px 0; }
    .single-blog-page .sb-content blockquote {
      border-left: 4px solid #00ad4b;
      padding: 12px 20px;
      margin: 24px 0;
      background: rgba(0, 173, 75, 0.05);
      border-radius: 0 8px 8px 0;
      font-style: italic;
      color: #5a6a7e; }
    .single-blog-page .sb-content a {
      color: #00ad4b;
      text-decoration: underline; }
      .single-blog-page .sb-content a:hover {
        color: #008137; }
  .single-blog-page .sb-related {
    margin-top: 60px;
    padding: 40px 0; }
    @media (max-width: 992px) {
      .single-blog-page .sb-related {
        padding: 40px 15px; } }
    .single-blog-page .sb-related .kt-heading {
      margin-bottom: 30px; }
      .single-blog-page .sb-related .kt-heading__line {
        width: 330px; }
        @media (max-width: 576px) {
          .single-blog-page .sb-related .kt-heading__line {
            width: 170px; } }
    .single-blog-page .sb-related .sb-related-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 20px; }
      @media (max-width: 1199px) {
        .single-blog-page .sb-related .sb-related-grid {
          grid-template-columns: repeat(4, 1fr); } }
      @media (max-width: 576px) {
        .single-blog-page .sb-related .sb-related-grid {
          display: flex;
          flex-wrap: nowrap;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          gap: 10px;
          scrollbar-width: none;
          -ms-overflow-style: none; }
          .single-blog-page .sb-related .sb-related-grid::-webkit-scrollbar {
            display: none; }
          .single-blog-page .sb-related .sb-related-grid .kt-card {
            flex: 0 0 calc((100% - 10px) / 2);
            scroll-snap-align: start; } }
    .single-blog-page .sb-related .related-dots {
      display: none; }
      @media (max-width: 576px) {
        .single-blog-page .sb-related .related-dots {
          display: flex;
          justify-content: center;
          gap: 8px;
          margin-top: 16px; }
          .single-blog-page .sb-related .related-dots .slider-dot {
            width: 28px;
            height: 6px;
            border-radius: 3px;
            background: #d1d5db;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: width 0.25s ease, background 0.25s ease; }
            .single-blog-page .sb-related .related-dots .slider-dot.active {
              background: #2bbd6a;
              width: 44px; } }
    .single-blog-page .sb-related .kt-card__title {
      font-size: 16px;
      -webkit-line-clamp: 2; }
  @media (max-width: 768px) {
    .single-blog-page .sb-gallery__thumbs .sb-thumb {
      flex: none;
      width: 80px; }
    .single-blog-page .sb-gallery__thumbs {
      overflow-x: auto;
      scrollbar-width: none; }
      .single-blog-page .sb-gallery__thumbs::-webkit-scrollbar {
        display: none; } }

.faq-page {
  padding-bottom: 80px; }
  @media (max-width: 576px) {
    .faq-page {
      padding-bottom: 0; } }
  .faq-page .kt-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    @media (max-width: 992px) {
      .faq-page .kt-banner {
        height: 300px; } }
    @media (max-width: 576px) {
      .faq-page .kt-banner {
        height: 250px; } }
    .faq-page .kt-banner::before {
      content: "";
      position: absolute;
      inset: 0; }
    .faq-page .kt-banner__container {
      margin-top: 100px;
      position: relative;
      z-index: 2; }
      @media (max-width: 991px) {
        .faq-page .kt-banner__container {
          margin-top: 0; } }
    .faq-page .kt-banner__title {
      color: #fff;
      font-size: 52px;
      font-weight: 700;
      text-transform: uppercase;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      margin: 0;
      text-align: center; }
      @media (max-width: 768px) {
        .faq-page .kt-banner__title {
          font-size: 36px; } }
  .faq-page .breadcrumb-wrapper {
    padding: 20px 0;
    margin-bottom: 0; }
    @media (max-width: 992px) {
      .faq-page .breadcrumb-wrapper {
        padding: 15px 0; } }
    .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      color: #5a6a7e; }
      @media (max-width: 576px) {
        .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs {
          font-size: 14px;
          padding: 0 15px; } }
      .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link {
        color: #64748b;
        text-decoration: none;
        transition: color 0.3s ease; }
        .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link:hover {
          color: #00ad4b; }
      .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-sep {
        color: #cbd5e1;
        font-size: 14px; }
      .faq-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-current {
        color: #27364b;
        font-weight: 600; }
  .faq-page .faq-content-section {
    padding: 50px 0 80px; }
    @media (max-width: 992px) {
      .faq-page .faq-content-section {
        padding: 0; } }
  .faq-page .faq-main {
    font-size: 16px;
    line-height: 1.8;
    color: #3d4a5c; }
    .faq-page .faq-main p {
      margin-bottom: 20px; }
    .faq-page .faq-main h2 {
      font-size: 24px;
      color: #27364b;
      margin: 30px 0 15px;
      border-bottom: 2px solid #00ad4b;
      display: inline-block;
      padding-bottom: 5px; }
  .faq-page .faq-interact {
    position: relative;
    padding: 60px 0;
    background: #fff; }
    @media (max-width: 576px) {
      .faq-page .faq-interact {
        padding: 0; } }
    .faq-page .faq-interact .container--faq-interact {
      max-width: 1200px; }
    .faq-page .faq-interact__box {
      position: relative;
      background-size: auto;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 12px;
      overflow: visible;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 480px; }
      @media (max-width: 992px) {
        .faq-page .faq-interact__box {
          margin: 0 15px;
          min-height: 350px; } }
      @media (max-width: 576px) {
        .faq-page .faq-interact__box {
          max-height: 200px;
          background-size: cover;
          background-position: center;
          border-radius: 12px;
          margin-top: 50px; } }
      .faq-page .faq-interact__box::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 8px;
        z-index: 1; }
  .faq-page .faq-form-card {
    position: relative;
    z-index: 10;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 750px;
    transform: translateY(130px); }
    @media (max-width: 992px) {
      .faq-page .faq-form-card {
        max-width: 620px;
        border-radius: 10px; } }
    @media (max-width: 576px) {
      .faq-page .faq-form-card {
        padding: 12px;
        max-width: 330px;
        border-radius: 10px;
        transform: translateY(250px); } }
  .faq-page .faq-form__group {
    margin-bottom: 24px; }
    @media (max-width: 576px) {
      .faq-page .faq-form__group {
        margin-bottom: 10px; } }
    .faq-page .faq-form__group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #27364b;
      margin-bottom: 8px; }
      .faq-page .faq-form__group label .required {
        color: #e53e3e; }
    .faq-page .faq-form__group input,
    .faq-page .faq-form__group textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      background: #f8fafc;
      font-size: 15px;
      color: #2d3748;
      transition: all 0.2s ease; }
      .faq-page .faq-form__group input::placeholder,
      .faq-page .faq-form__group textarea::placeholder {
        color: #a0aec0; }
      .faq-page .faq-form__group input:focus,
      .faq-page .faq-form__group textarea:focus {
        outline: none;
        border-color: #00ad4b;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(0, 173, 75, 0.1); }
  .faq-page .faq-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; }
    @media (max-width: 576px) {
      .faq-page .faq-form__row {
        grid-template-columns: 1fr;
        gap: 0; } }
  .faq-page .faq-form__submit {
    margin-top: 32px; }
    .faq-page .faq-form__submit .btn-faq-submit {
      width: 100%;
      height: 48px;
      background: linear-gradient(to right, #2bbd6a, #00682d);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      box-shadow: 0 0 10px rgba(43, 189, 106, 0.4);
      animation: softGlow 3s infinite alternate; }
      .faq-page .faq-form__submit .btn-faq-submit:hover {
        background: linear-gradient(to right, #32d377, #008137);
        box-shadow: 0 0 20px rgba(43, 189, 106, 0.7);
        transform: translateY(-2px); }
      .faq-page .faq-form__submit .btn-faq-submit:active {
        transform: translateY(0); }
      .faq-page .faq-form__submit .btn-faq-submit:disabled {
        background: #a0aec0;
        box-shadow: none;
        cursor: not-allowed; }
      .faq-page .faq-form__submit .btn-faq-submit svg {
        transition: transform 0.3s ease; }
      .faq-page .faq-form__submit .btn-faq-submit:hover svg {
        transform: translate(3px, -3px); }
  .faq-page .faq-form .faq-privacy {
    margin-top: 24px;
    font-size: 13px;
    color: #718096;
    text-align: center; }
    .faq-page .faq-form .faq-privacy a {
      color: #00ad4b;
      font-weight: 600;
      text-decoration: none; }
      .faq-page .faq-form .faq-privacy a:hover {
        text-decoration: underline; }

@keyframes softGlow {
  from {
    box-shadow: 0 0 8px rgba(43, 189, 106, 0.3); }
  to {
    box-shadow: 0 0 16px rgba(43, 189, 106, 0.6); } }
.recruitment-page,
.recruitment-detail-page {
  padding-bottom: 80px; }
  @media (max-width: 576px) {
    .recruitment-page,
    .recruitment-detail-page {
      padding-bottom: 0px; } }
  @media (max-width: 992px) {
    .recruitment-page .container,
    .recruitment-detail-page .container {
      padding-left: 15px;
      padding-right: 15px; } }
  .recruitment-page .kt-banner,
  .recruitment-detail-page .kt-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    @media (max-width: 992px) {
      .recruitment-page .kt-banner,
      .recruitment-detail-page .kt-banner {
        height: 300px; } }
    @media (max-width: 576px) {
      .recruitment-page .kt-banner,
      .recruitment-detail-page .kt-banner {
        height: 250px; } }
    .recruitment-page .kt-banner::before,
    .recruitment-detail-page .kt-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4); }
    .recruitment-page .kt-banner__container,
    .recruitment-detail-page .kt-banner__container {
      margin-top: 100px;
      position: relative;
      z-index: 2; }
      @media (max-width: 991px) {
        .recruitment-page .kt-banner__container,
        .recruitment-detail-page .kt-banner__container {
          margin-top: 0; } }
    .recruitment-page .kt-banner__title,
    .recruitment-detail-page .kt-banner__title {
      color: #fff;
      font-size: 52px;
      font-weight: 700;
      text-transform: uppercase;
      text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      margin: 0;
      text-align: center; }
      @media (max-width: 768px) {
        .recruitment-page .kt-banner__title,
        .recruitment-detail-page .kt-banner__title {
          font-size: 36px; } }
      @media (max-width: 576px) {
        .recruitment-page .kt-banner__title,
        .recruitment-detail-page .kt-banner__title {
          padding-top: 70px;
          font-size: 24px !important; } }
  .recruitment-page .breadcrumb-wrapper,
  .recruitment-detail-page .breadcrumb-wrapper {
    padding: 20px 0;
    margin-bottom: 0; }
    @media (max-width: 992px) {
      .recruitment-page .breadcrumb-wrapper,
      .recruitment-detail-page .breadcrumb-wrapper {
        padding: 15px 0; } }
    .recruitment-page .breadcrumb-wrapper .vimicro-breadcrumbs,
    .recruitment-detail-page .breadcrumb-wrapper .vimicro-breadcrumbs {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      color: #5a6a7e; }
      .recruitment-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link,
      .recruitment-detail-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link {
        color: #64748b;
        text-decoration: none;
        transition: color 0.3s ease; }
        .recruitment-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link:hover,
        .recruitment-detail-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-link:hover {
          color: #00ad4b; }
      .recruitment-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-sep,
      .recruitment-detail-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-sep {
        color: #cbd5e1;
        font-size: 14px; }
      .recruitment-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-current,
      .recruitment-detail-page .breadcrumb-wrapper .vimicro-breadcrumbs .breadcrumb-current {
        color: #27364b;
        font-weight: 600; }
  .recruitment-page .recruitment-content-section,
  .recruitment-detail-page .recruitment-content-section {
    padding: 50px 0 80px; }
    @media (max-width: 992px) {
      .recruitment-page .recruitment-content-section,
      .recruitment-detail-page .recruitment-content-section {
        padding: 30px 0 60px; } }
  .recruitment-page .recruitment-list-heading,
  .recruitment-detail-page .recruitment-list-heading {
    margin-bottom: 35px;
    display: inline-block; }
    .recruitment-page .recruitment-list-heading__title,
    .recruitment-detail-page .recruitment-list-heading__title {
      font-size: 28px;
      font-weight: 700;
      color: #27364b;
      margin: 0;
      position: relative;
      padding-bottom: 12px;
      text-transform: uppercase; }
      @media (max-width: 992px) {
        .recruitment-page .recruitment-list-heading__title,
        .recruitment-detail-page .recruitment-list-heading__title {
          font-size: 24px;
          padding-bottom: 0; } }
      @media (max-width: 576px) {
        .recruitment-page .recruitment-list-heading__title,
        .recruitment-detail-page .recruitment-list-heading__title {
          font-size: 18px !important; } }
    .recruitment-page .recruitment-list-heading__line,
    .recruitment-detail-page .recruitment-list-heading__line {
      height: 3px;
      background: #00ad4b;
      width: 100%;
      border-radius: 2px; }
  .recruitment-page .job-grid,
  .recruitment-detail-page .job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; }
    @media (max-width: 992px) {
      .recruitment-page .job-grid,
      .recruitment-detail-page .job-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px; } }
    @media (max-width: 640px) {
      .recruitment-page .job-grid,
      .recruitment-detail-page .job-grid {
        grid-template-columns: 1fr; } }
  .recruitment-page .job-card,
  .recruitment-detail-page .job-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .recruitment-page .job-card:hover,
    .recruitment-detail-page .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
    .recruitment-page .job-card--expired,
    .recruitment-detail-page .job-card--expired {
      opacity: 0.7;
      filter: grayscale(0.5);
      background: #f8fafc;
      border-color: #e2e8f0; }
      .recruitment-page .job-card--expired:hover,
      .recruitment-detail-page .job-card--expired:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); }
      .recruitment-page .job-card--expired .btn-view-job,
      .recruitment-detail-page .job-card--expired .btn-view-job {
        background: #94a3b8;
        cursor: not-allowed;
        pointer-events: none; }
    .recruitment-page .job-card__header,
    .recruitment-detail-page .job-card__header {
      margin-bottom: 10px; }
    .recruitment-page .job-card__title,
    .recruitment-detail-page .job-card__title {
      font-size: 18px;
      font-weight: 700;
      color: #27364b;
      margin: 0 0 4px;
      line-height: 1.4; }
    .recruitment-page .job-card__dept,
    .recruitment-detail-page .job-card__dept {
      font-size: 14px;
      color: #64748b;
      margin: 0; }
    .recruitment-page .job-card__info,
    .recruitment-detail-page .job-card__info {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-bottom: 24px; }
    .recruitment-page .job-card__footer,
    .recruitment-detail-page .job-card__footer {
      margin-top: auto; }
  .recruitment-page .job-info-item,
  .recruitment-detail-page .job-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px; }
    .recruitment-page .job-info-item .job-info-icon,
    .recruitment-detail-page .job-info-item .job-info-icon {
      color: #64748b;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px; }
    .recruitment-page .job-info-item .job-info-label,
    .recruitment-detail-page .job-info-item .job-info-label {
      color: #27364b;
      font-weight: 500;
      white-space: nowrap; }
    .recruitment-page .job-info-item .job-info-value,
    .recruitment-detail-page .job-info-item .job-info-value {
      color: #5a6a7e;
      line-height: 1.5; }
      .recruitment-page .job-info-item .job-info-value--highlight,
      .recruitment-detail-page .job-info-item .job-info-value--highlight {
        color: #ff9500;
        font-weight: 600; }
      .recruitment-page .job-info-item .job-info-value--expired,
      .recruitment-detail-page .job-info-item .job-info-value--expired {
        color: #d83232;
        font-weight: 600; }
    .recruitment-page .job-info-item--deadline .job-info-value,
    .recruitment-detail-page .job-info-item--deadline .job-info-value {
      margin-left: auto;
      text-align: right; }
  .recruitment-page .btn-view-job,
  .recruitment-detail-page .btn-view-job {
    background: #00ad4b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease; }
    .recruitment-page .btn-view-job svg,
    .recruitment-detail-page .btn-view-job svg {
      transition: transform 0.3s ease; }
    .recruitment-page .btn-view-job:hover,
    .recruitment-detail-page .btn-view-job:hover {
      background: #008137;
      box-shadow: 0 5px 15px rgba(0, 173, 75, 0.3); }
      .recruitment-page .btn-view-job:hover svg,
      .recruitment-detail-page .btn-view-job:hover svg {
        transform: translateX(5px); }
  .recruitment-page .no-jobs,
  .recruitment-detail-page .no-jobs {
    text-align: center;
    padding: 100px 0;
    color: #64748b;
    font-size: 16px; }
  .recruitment-page .search-pagination,
  .recruitment-detail-page .search-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center; }
    .recruitment-page .search-pagination .page-numbers,
    .recruitment-detail-page .search-pagination .page-numbers {
      list-style: none;
      display: flex;
      gap: 10px;
      padding: 0; }
      .recruitment-page .search-pagination .page-numbers li,
      .recruitment-detail-page .search-pagination .page-numbers li {
        display: flex;
        align-items: center;
        justify-content: center; }
        .recruitment-page .search-pagination .page-numbers li .page-numbers,
        .recruitment-detail-page .search-pagination .page-numbers li .page-numbers {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          border: 1px solid #e2e8f0;
          border-radius: 8px;
          color: #27364b;
          text-decoration: none;
          font-weight: 600;
          transition: all 0.3s ease; }
          .recruitment-page .search-pagination .page-numbers li .page-numbers:hover,
          .recruitment-detail-page .search-pagination .page-numbers li .page-numbers:hover {
            border-color: #00ad4b;
            color: #00ad4b;
            background: rgba(0, 173, 75, 0.05); }
          .recruitment-page .search-pagination .page-numbers li .page-numbers.current,
          .recruitment-detail-page .search-pagination .page-numbers li .page-numbers.current {
            background: #00ad4b;
            border-color: #00ad4b;
            color: #fff;
            box-shadow: 0 5px 15px rgba(0, 173, 75, 0.3); }
  .recruitment-page .recruitment-detail-section,
  .recruitment-detail-page .recruitment-detail-section {
    padding: 60px 0 80px; }
    @media (max-width: 992px) {
      .recruitment-page .recruitment-detail-section,
      .recruitment-detail-page .recruitment-detail-section {
        padding: 40px 0 60px; } }
    .recruitment-page .recruitment-detail-section .job-summary-card,
    .recruitment-detail-page .recruitment-detail-section .job-summary-card {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
      border: 1px solid #f0f4f8;
      margin-bottom: 40px; }
      @media (max-width: 576px) {
        .recruitment-page .recruitment-detail-section .job-summary-card,
        .recruitment-detail-page .recruitment-detail-section .job-summary-card {
          padding: 15px !important; } }
      .recruitment-page .recruitment-detail-section .job-summary-card__header,
      .recruitment-detail-page .recruitment-detail-section .job-summary-card__header {
        margin-bottom: 25px; }
      .recruitment-page .recruitment-detail-section .job-summary-card__title,
      .recruitment-detail-page .recruitment-detail-section .job-summary-card__title {
        font-size: 24px;
        font-weight: 700;
        color: #27364b;
        margin: 0 0 5px; }
        @media (max-width: 576px) {
          .recruitment-page .recruitment-detail-section .job-summary-card__title,
          .recruitment-detail-page .recruitment-detail-section .job-summary-card__title {
            font-size: 16px !important; } }
      .recruitment-page .recruitment-detail-section .job-summary-card__dept,
      .recruitment-detail-page .recruitment-detail-section .job-summary-card__dept {
        font-size: 16px;
        color: #64748b;
        margin: 0; }
        @media (max-width: 576px) {
          .recruitment-page .recruitment-detail-section .job-summary-card__dept,
          .recruitment-detail-page .recruitment-detail-section .job-summary-card__dept {
            font-size: 14px !important; } }
    .recruitment-page .recruitment-detail-section .job-summary-grid,
    .recruitment-detail-page .recruitment-detail-section .job-summary-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 25px; }
      @media (max-width: 640px) {
        .recruitment-page .recruitment-detail-section .job-summary-grid,
        .recruitment-detail-page .recruitment-detail-section .job-summary-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px; } }
    .recruitment-page .recruitment-detail-section .job-summary-item,
    .recruitment-detail-page .recruitment-detail-section .job-summary-item {
      background: #f6f8fc;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      padding: 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: all 0.3s ease; }
      .recruitment-page .recruitment-detail-section .job-summary-item:hover,
      .recruitment-detail-page .recruitment-detail-section .job-summary-item:hover {
        border-color: #00ad4b;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }
      .recruitment-page .recruitment-detail-section .job-summary-item__header,
      .recruitment-detail-page .recruitment-detail-section .job-summary-item__header {
        display: flex;
        align-items: center;
        gap: 8px; }
      .recruitment-page .recruitment-detail-section .job-summary-item__icon,
      .recruitment-detail-page .recruitment-detail-section .job-summary-item__icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #64748b;
        flex-shrink: 0; }
        .recruitment-page .recruitment-detail-section .job-summary-item__icon img,
        .recruitment-detail-page .recruitment-detail-section .job-summary-item__icon img {
          width: 100%;
          height: 100%;
          object-fit: contain; }
      .recruitment-page .recruitment-detail-section .job-summary-item__label,
      .recruitment-detail-page .recruitment-detail-section .job-summary-item__label {
        font-size: 14px;
        color: #27364B;
        font-weight: 500;
        letter-spacing: 0.5px; }
      .recruitment-page .recruitment-detail-section .job-summary-item__value,
      .recruitment-detail-page .recruitment-detail-section .job-summary-item__value {
        font-size: 16px;
        color: #27364b;
        font-weight: 700;
        line-height: 1.2; }
        .recruitment-page .recruitment-detail-section .job-summary-item__value--highlight,
        .recruitment-detail-page .recruitment-detail-section .job-summary-item__value--highlight {
          color: #ff9500; }
    .recruitment-page .recruitment-detail-section .job-summary-footer,
    .recruitment-detail-page .recruitment-detail-section .job-summary-footer {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      padding-top: 20px;
      border-top: 1px solid #f1f5f9; }
      .recruitment-page .recruitment-detail-section .job-summary-footer .job-footer-item,
      .recruitment-detail-page .recruitment-detail-section .job-summary-footer .job-footer-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #64748b;
        text-transform: lowercase; }
        .recruitment-page .recruitment-detail-section .job-summary-footer .job-footer-item svg,
        .recruitment-detail-page .recruitment-detail-section .job-summary-footer .job-footer-item svg {
          color: #94a3b8; }
        .recruitment-page .recruitment-detail-section .job-summary-footer .job-footer-item .status-expired,
        .recruitment-detail-page .recruitment-detail-section .job-summary-footer .job-footer-item .status-expired {
          color: #d83232;
          font-weight: 700;
          text-transform: none; }
    .recruitment-page .recruitment-detail-section .recruitment-description-card,
    .recruitment-detail-page .recruitment-detail-section .recruitment-description-card {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px; }
      .recruitment-page .recruitment-detail-section .recruitment-description-card .card-header,
      .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-header {
        margin-bottom: 25px;
        text-align: left; }
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-header .card-title,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-header .card-title {
          font-size: 24px;
          font-weight: 700;
          color: #27364b;
          margin: 0; }
          @media (max-width: 576px) {
            .recruitment-page .recruitment-detail-section .recruitment-description-card .card-header .card-title,
            .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-header .card-title {
              font-size: 16px !important; } }
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-header .title-underline,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-header .title-underline {
          height: 4px;
          background: #00ad4b;
          width: 200px;
          margin-top: 12px;
          border-radius: 2px; }
          @media (max-width: 576px) {
            .recruitment-page .recruitment-detail-section .recruitment-description-card .card-header .title-underline,
            .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-header .title-underline {
              margin-top: 10px;
              width: 150px; } }
      .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content,
      .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content {
        font-size: 16px;
        line-height: 1.8;
        color: #4a5568; }
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h1,
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h2,
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h3,
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h4,
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h5,
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h6,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h1,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h2,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h3,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h4,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h5,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content h6 {
          color: #27364b;
          margin: 25px 0 15px; }
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content p,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content p {
          margin-bottom: 20px; }
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content ul,
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content ol,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content ul,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content ol {
          margin-bottom: 20px;
          padding-left: 20px; }
          .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content ul li,
          .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content ol li,
          .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content ul li,
          .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content ol li {
            margin-bottom: 10px; }
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content strong,
        .recruitment-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content b,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content strong,
        .recruitment-detail-page .recruitment-detail-section .recruitment-description-card .card-body .entry-content b {
          color: #2d3748; }
    .recruitment-page .recruitment-detail-section .job-application-card,
    .recruitment-detail-page .recruitment-detail-section .job-application-card {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      margin-bottom: 50px; }
      @media (max-width: 576px) {
        .recruitment-page .recruitment-detail-section .job-application-card,
        .recruitment-detail-page .recruitment-detail-section .job-application-card {
          padding: 15px !important; } }
      .recruitment-page .recruitment-detail-section .job-application-card .card-header,
      .recruitment-detail-page .recruitment-detail-section .job-application-card .card-header {
        margin-bottom: 30px;
        text-align: left; }
        .recruitment-page .recruitment-detail-section .job-application-card .card-header .card-title,
        .recruitment-detail-page .recruitment-detail-section .job-application-card .card-header .card-title {
          font-size: 24px;
          font-weight: 700;
          color: #27364b;
          margin: 0; }
          @media (max-width: 576px) {
            .recruitment-page .recruitment-detail-section .job-application-card .card-header .card-title,
            .recruitment-detail-page .recruitment-detail-section .job-application-card .card-header .card-title {
              font-size: 16px !important; } }
        .recruitment-page .recruitment-detail-section .job-application-card .card-header .title-underline,
        .recruitment-detail-page .recruitment-detail-section .job-application-card .card-header .title-underline {
          height: 4px;
          background: #00ad4b;
          width: 200px;
          margin-top: 12px;
          border-radius: 2px; }
          @media (max-width: 576px) {
            .recruitment-page .recruitment-detail-section .job-application-card .card-header .title-underline,
            .recruitment-detail-page .recruitment-detail-section .job-application-card .card-header .title-underline {
              margin-top: 10px;
              width: 150px; } }
      .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-grid,
      .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 25px; }
        @media (max-width: 640px) {
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-grid,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-grid {
            grid-template-columns: 1fr;
            gap: 10px; } }
      .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group,
      .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group {
        margin-bottom: 20px; }
        @media (max-width: 576px) {
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group {
            margin-bottom: 10px; } }
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group.full-width,
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group.full-width {
          grid-column: span 2; }
          @media (max-width: 640px) {
            .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group.full-width,
            .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group.full-width {
              grid-column: span 1; } }
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group label,
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group label {
          display: block;
          font-size: 14px;
          font-weight: 600;
          color: #4a5568;
          margin-bottom: 8px; }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group label .required,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group label .required {
            color: #e53e3e; }
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="text"],
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="email"],
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="tel"],
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group textarea,
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="text"],
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="email"],
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="tel"],
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group textarea {
          width: 100%;
          padding: 12px 16px;
          border: 1px solid #e2e8f0;
          border-radius: 8px;
          background: #f8fafc;
          font-size: 15px;
          color: #2d3748;
          transition: all 0.3s ease; }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="text"]::placeholder,
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="email"]::placeholder,
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="tel"]::placeholder,
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group textarea::placeholder,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="text"]::placeholder,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="email"]::placeholder,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="tel"]::placeholder,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group textarea::placeholder {
            color: #a0aec0; }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="text"]:focus,
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="email"]:focus,
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="tel"]:focus,
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group textarea:focus,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="text"]:focus,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="email"]:focus,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="tel"]:focus,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group textarea:focus {
            outline: none;
            border-color: #00ad4b;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(0, 173, 75, 0.1); }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="text"][readonly],
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="email"][readonly],
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="tel"][readonly],
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-group textarea[readonly],
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="text"][readonly],
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="email"][readonly],
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group input[type="tel"][readonly],
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-group textarea[readonly] {
            background: #f1f5f9;
            cursor: not-allowed; }
      .recruitment-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone,
      .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone {
        position: relative;
        border: 2px dashed #e2e8f0;
        border-radius: 12px;
        padding: 40px 20px;
        text-align: center;
        background: #f8fafc;
        transition: all 0.3s ease;
        cursor: pointer; }
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone:hover, .recruitment-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone.drag-over,
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone:hover,
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone.drag-over {
          border-color: #00ad4b;
          background: #f0fff4; }
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone input[type="file"],
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone input[type="file"] {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          opacity: 0;
          cursor: pointer;
          z-index: 10; }
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content,
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content {
          position: relative;
          z-index: 5; }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content .upload-icon,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content .upload-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: #edf2f7;
            color: #4a5568;
            border-radius: 12px;
            margin-bottom: 15px; }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content .upload-title,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content .upload-title {
            font-size: 16px;
            font-weight: 700;
            color: #2d3748;
            margin: 0 0 5px; }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content .upload-status,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content .upload-status {
            font-size: 14px;
            color: #718096;
            margin: 0 0 10px; }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content .upload-hint,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content .upload-hint {
            font-size: 13px;
            color: #a0aec0;
            margin: 0 0 20px; }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content .btn-select-file,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .file-upload-zone .upload-content .btn-select-file {
            background: #fff;
            color: #00ad4b;
            border: 1px solid #00ad4b;
            padding: 8px 24px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            pointer-events: none; }
      .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-submit,
      .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-submit {
        margin-top: 30px;
        text-align: center; }
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-submit .btn-submit,
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-submit .btn-submit {
          background: #00ad4b;
          color: #fff;
          border: none;
          padding: 14px 40px;
          border-radius: 10px;
          font-size: 16px;
          font-weight: 700;
          display: inline-flex;
          align-items: center;
          gap: 12px;
          cursor: pointer;
          transition: all 0.3s ease;
          box-shadow: 0 4px 14px rgba(0, 173, 75, 0.4); }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-submit .btn-submit:hover,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-submit .btn-submit:hover {
            background: #008f3d;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 173, 75, 0.5); }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-submit .btn-submit:disabled,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-submit .btn-submit:disabled {
            background: #a0aec0;
            cursor: not-allowed;
            box-shadow: none;
            transform: none; }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-submit .btn-submit svg,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-submit .btn-submit svg {
            transition: transform 0.3s ease; }
          .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-submit .btn-submit:hover svg,
          .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-submit .btn-submit:hover svg {
            transform: translateX(3px) translateY(-3px); }
      .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-response,
      .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-response {
        margin-top: 20px;
        padding: 15px;
        border-radius: 8px;
        font-size: 15px;
        display: none; }
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-response.success,
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-response.success {
          display: block;
          background: #f0fff4;
          color: #22543d;
          border: 1px solid #c6f6d5; }
        .recruitment-page .recruitment-detail-section .job-application-card .application-form .form-response.error,
        .recruitment-detail-page .recruitment-detail-section .job-application-card .application-form .form-response.error {
          display: block;
          background: #fff5f5;
          color: #822727;
          border: 1px solid #fed7d7; }
    @media (max-width: 991px) {
      .recruitment-page .recruitment-detail-section .recruitment-sidebar,
      .recruitment-detail-page .recruitment-detail-section .recruitment-sidebar {
        margin-top: 50px; } }
    .recruitment-page .recruitment-detail-section .sidebar-box,
    .recruitment-detail-page .recruitment-detail-section .sidebar-box {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid #f0f0f0;
      position: sticky;
      top: 100px; }
      .recruitment-page .recruitment-detail-section .sidebar-box-title,
      .recruitment-detail-page .recruitment-detail-section .sidebar-box-title {
        font-size: 20px;
        font-weight: 700;
        color: #27364b;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #00ad4b;
        display: inline-block; }
    .recruitment-page .recruitment-detail-section .job-summary-list,
    .recruitment-detail-page .recruitment-detail-section .job-summary-list {
      list-style: none;
      padding: 0;
      margin: 0; }
      .recruitment-page .recruitment-detail-section .job-summary-list li,
      .recruitment-detail-page .recruitment-detail-section .job-summary-list li {
        padding: 12px 0;
        border-bottom: 1px solid #f8fafc;
        font-size: 15px;
        color: #5a6a7e;
        display: flex;
        flex-direction: column;
        gap: 5px; }
        .recruitment-page .recruitment-detail-section .job-summary-list li strong,
        .recruitment-detail-page .recruitment-detail-section .job-summary-list li strong {
          color: #27364b;
          font-weight: 600; }
        .recruitment-page .recruitment-detail-section .job-summary-list li:last-child,
        .recruitment-detail-page .recruitment-detail-section .job-summary-list li:last-child {
          border-bottom: none; }

/*# sourceMappingURL=styles.css.map */
