:root {
  --primary-color: #006d44;
  --secondary-color: #000000;
  --third-color: rgba(3, 86, 55, 1);
  --gradient-background: linear-gradient(180deg, #9b2929 0%, #000 100%);
  --text-dark: #000; /* Màu chữ tối cơ bản */
  --text-light: #fff; /* Màu chữ sáng */
  --bg-light-gray: #f8f9fa; /* Màu nền xám nhạt */
  --font-primary: "Be Vietnam Pro", "Lato", sans-serif; /* Font chữ chính từ Figma */
  --font-secondary: "Be Vietnam Pro", "Lato", sans-serif; /* Font chữ phụ nếu có */
  --white-color: #fff;
  --black-color: #000;
  /* Spacing variables (example - adjust based on Figma) */
  --space-xs: 0.5rem; /* 8px */
  --space-sm: 1rem; /* 16px */
  --space-md: 1.5rem; /* 24px */
  --space-lg: 2rem; /* 32px */
  --space-xl: 3rem; /* 48px */
}

/* Map Section Styles */
.jina-contact-map-section {
    position: relative;
    background: var(--bg-light-gray);
    overflow: hidden;
}

.jina-map-wrapper {
    position: relative;
    height: 600px;
    min-height: 100%;
}

.jina-map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.jina-map-container iframe {
    position: relative;
    z-index: 1;
    width: 100%;  
    height: 100%;
    object-fit: cover;
    pointer-events: all !important;
}

.jina-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(246, 137, 30, 0.1), transparent);
    z-index: 2;
    pointer-events: none;
}

/* Social Links Styles */
.jina-social-links-wrapper {
    height: 100%;
    background: var(--white-color);
    padding: 3rem;
    display: flex;
    align-items: center;
}

.jina-social-content {
    width: 100%;
}

.jina-social-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.jina-social-description {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.jina-social-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.jina-social-item {
    position: relative;
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.jina-social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), rgba(246, 137, 30, 0.8));
    opacity: 0;
    z-index: 1;
}

.jina-social-item:hover::before {
    opacity: 1;
}

.jina-social-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(246, 137, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.jina-social-item:hover .jina-social-icon {
    background: rgba(255, 255, 255, 0.2);
}

.jina-social-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 2;
}

.jina-social-item:hover .jina-social-icon i {
    color: var(--white-color);
}

.jina-social-info {
    position: relative;
    z-index: 2;
    flex: 1;
}

.jina-social-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.jina-social-handle {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.jina-social-item:hover .jina-social-name,
.jina-social-item:hover .jina-social-handle {
    color: var(--white-color);
}

.jina-social-arrow {
    position: relative;
    z-index: 2;
}

.jina-social-arrow i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.jina-social-item:hover .jina-social-arrow i {
    color: var(--white-color);
}

.jina-social-decoration {
    position: absolute;
    bottom: -2rem;
    left: 0;
    width: 100%;
}

.jina-deco-line {
    width: 100%;
    height: 2px;
    background: rgba(246, 137, 30, 0.1);
}

.jina-deco-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .jina-map-wrapper {
        height: 400px;
    }
    
    .jina-social-links-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .jina-social-title {
        font-size: 1.75rem;
    }
    
    .jina-social-grid {
        gap: 1rem;
    }
    
    .jina-social-item {
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .jina-map-wrapper {
        height: 300px;
    }
    
    .jina-social-links-wrapper {
        padding: 1.5rem;
    }
    
    .jina-social-icon {
        width: 35px;
        height: 35px;
    }
}
.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  /* Performance optimizations */
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* --- Header Styles --- */
.hydro-smiling-monkey-header {
  background-color: var(--white-color);
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  /* Performance optimizations */
  contain: layout style;
  will-change: transform;
  transform: translateZ(0);
}

/* ĐẢM BẢO HEADER ĐÈ LÊN CÁC CONTENT KHÁC */
.wrapper, 
.wrapper-detail, 
.wrapper-main,
#slider-content,
.hydro-smiling-monkey-hero-slider {
  /* position: relative;
  z-index: 1; */
  /* Performance optimizations */
}

/* Đảm bảo slider không che header */


.hydro-smiling-monkey-header-top {
  background-color: var(--primary-color); /* Thanh top màu đỏ */
  padding: var(--space-xs) 0;
  font-size: 0.875rem; /* 14px */
  color: var(--text-light);
}

.hydro-smiling-monkey-header-top a {
  color: var(--text-light);
  text-decoration: none; /* Bỏ gạch chân mặc định */
}
.hydro-smiling-monkey-header-top a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.hydro-smiling-monkey-header-top .contact-info span,
.hydro-smiling-monkey-header-top .contact-info a {
  margin-right: var(--space-md);
  display: inline-flex; /* Căn icon và text */
  align-items: center;
}
.hydro-smiling-monkey-header-top .contact-info a:last-child {
  margin-right: 0;
}

.hydro-smiling-monkey-header-top .contact-info img {
  width: 16px; /* Kích thước icon */
  height: auto;
  margin-right: var(--space-xs);
  /* vertical-align: middle; /* Đã có flex align-items */
}

/* Main Navigation Bar */
.hydro-smiling-monkey-nav-menu.navbar {
  padding-top: 7px; /* Thêm padding cho thanh nav chính */
  padding-bottom: 7px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.hydro-smiling-monkey-logo img {
  max-height: 100px;
  max-width: 150px;
  width: auto;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.hydro-smiling-monkey-nav-menu .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500; /* Bold từ Figma */
  font-size: 1rem; /* 16px */
  padding: 10px 15px;
  text-transform: uppercase; /* CHỮ HOA */
  position: relative; /* Cho hiệu ứng hover */
  transition: color 0.3s ease; /* Thêm transition */
}

.hydro-smiling-monkey-nav-menu .navbar-nav .nav-link:hover,
  .hydro-smiling-monkey-nav-menu .navbar-nav .nav-item.show > .nav-link, /* Khi dropdown mở (Bootstrap 5) */
  .hydro-smiling-monkey-nav-menu .navbar-nav .nav-link.active /* Link active */ {
  color: var(--third-color); /* Màu hover/active */
  /* Thêm hiệu ứng gạch chân hoặc nền nếu có trong Figma */
}

/* Style cho mũi tên dropdown */
.hydro-smiling-monkey-nav-menu .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.15em; /* Điều chỉnh vị trí dọc */
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: transform 0.2s ease-in-out; /* Animation xoay mũi tên */
}

/* Xoay mũi tên khi dropdown mở (sử dụng class 'show' của Bootstrap 5) */
.hydro-smiling-monkey-nav-menu .nav-item.show > .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* --- Dropdown Menu Styles --- */
.hydro-smiling-monkey-dropdown-menu {
  background-color: var(--white-color); /* Nền dropdown giống header */
  border: 1px solid var(--primary-color); /* Thêm viền nhẹ, mờ hơn */
  border-radius: 0; /* Bỏ bo góc */
  padding: var(--space-xs) 0;
  margin-top: 0; /* Xóa khoảng cách mặc định */
  /* display: none; Bootstrap sẽ xử lý việc ẩn/hiện */
}
/* Submenu Dropend */
.hydro-smiling-monkey-dropdown-menu .dropend .dropdown-menu {
  margin-left: 1px; /* Khoảng cách nhỏ giữa menu cha và con */
  margin-top: -1px; /* Căn chỉnh với viền */
  left: 100%; /* Đảm bảo menu con xuất hiện bên phải */
}

.hydro-smiling-monkey-dropdown-menu .dropdown-item {
  font-family: var(--font-primary);
  color: var(--text-dark);
  padding: var(--space-xs) var(--space-md);
  font-size: 0.9rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hydro-smiling-monkey-dropdown-menu .dropdown-item:hover,
.hydro-smiling-monkey-dropdown-menu .dropdown-item:focus {
  /* Thêm focus state */
  background-color: var(--primary-color); /* Màu nền hover item */
  color: var(--white-color);
}

/* Style mũi tên cho submenu dropend */
.hydro-smiling-monkey-dropdown-menu .dropend > .dropdown-toggle::after {
  display: inline-block;
  margin-left: auto; /* Đẩy sang phải */
  vertical-align: 0.15em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid; /* Mũi tên chỉ sang phải */
  transition: transform 0.2s ease-in-out;
}

/* Utility Icons */
.hydro-smiling-monkey-utility-icons a {
  color: var(--text-light);
  font-size: 1.2rem; /* Kích thước icon */
  margin-left: var(--space-md); /* Khoảng cách giữa các icon */
  transition: color 0.3s ease;
  display: inline-flex; /* Để căn chỉnh badge */
  align-items: center;
}

.hydro-smiling-monkey-utility-icons a:first-child {
  margin-left: 0; /* Icon đầu tiên không cần cách trái */
}

.hydro-smiling-monkey-utility-icons a:hover {
  color: var(--primary-color); /* Màu hover icon */
  text-decoration: none; /* Bỏ gạch chân khi hover icon */
}

.hydro-smiling-monkey-utility-icons .badge {
  font-size: 0.65rem; /* Chỉnh size badge nhỏ hơn */
  padding: 0.2em 0.4em; /* Padding badge */
}

.hydro-smiling-monkey-utility-icons img {
  height: 20px; /* Chuẩn hóa chiều cao icon */
  width: auto;
}

/* --- Mobile Header Styles --- */
/* Wrapper chung cho mobile header để căn giữa logo và nút toggle */
.hydro-smiling-monkey-mobile-header {
  background-color: var(--white-color); /* Nền giống desktop */
  padding: var(--space-sm) 0;
}

.hydro-smiling-monkey-mobile-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hydro-smiling-monkey-mobile-toggle.navbar-toggler {
  /* Style nút hamburger */
  border: 1px solid rgba(255, 255, 255, 0.5); /* Viền mờ */
  padding: 0.25rem 0.5rem;
}

.hydro-smiling-monkey-mobile-toggle .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.2em;
  height: 1.2em;
}

/* --- Offcanvas Menu Styles --- */
.hydro-smiling-monkey-offcanvas-menu.offcanvas {
  background-color: var(--secondary-color);
  color: var(--text-light);
  width: 300px !important;
  border-right: 1px solid rgba(155, 41, 41, 0.5);
  visibility: hidden;
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
/* Lớp phủ nền khi offcanvas mở */
.offcanvas-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.offcanvas-backdrop.show {
  opacity: 1;
}

.hydro-smiling-monkey-offcanvas-menu .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-md); /* Tăng padding */
}
.hydro-smiling-monkey-offcanvas-menu .offcanvas-title {
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.2rem;
}

.hydro-smiling-monkey-offcanvas-menu .btn-close {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  padding: var(--space-sm); /* Tăng vùng click */
  margin: calc(-0.5 * var(--space-sm)); /* Bù lại padding */
}
.hydro-smiling-monkey-offcanvas-menu .btn-close:hover {
  opacity: 1;
}

.hydro-smiling-monkey-offcanvas-menu .offcanvas-body {
  padding: var(--space-md);
}

.hydro-smiling-monkey-mobile-nav .nav-link {
  color: var(--text-light);
  padding: var(--space-sm) 0; /* Tăng padding */
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; /* Để căn chỉnh mũi tên */
  justify-content: space-between;
  align-items: center;
}
.hydro-smiling-monkey-mobile-nav .nav-item:last-child .nav-link {
  border-bottom: none; /* Bỏ border cho item cuối */
}

.hydro-smiling-monkey-mobile-nav .nav-link:hover,
.hydro-smiling-monkey-mobile-nav .nav-link.active {
  color: var(--primary-color);
}
.hydro-smiling-monkey-mobile-nav .dropdown-menu {
  background-color: transparent;
  border: none;
  padding-left: var(--space-md); /* Thụt lề menu con */
  margin-top: 0;
  margin-bottom: var(--space-sm); /* Khoảng cách dưới menu con */
}
.hydro-smiling-monkey-mobile-nav .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xs) 0;
  font-size: 1rem;
}
.hydro-smiling-monkey-mobile-nav .dropdown-item:hover,
.hydro-smiling-monkey-mobile-nav .dropdown-item:focus {
  color: var(--primary-color);
  background-color: transparent;
}

/* Style mũi tên dropdown mobile */
.hydro-smiling-monkey-mobile-nav .nav-link.dropdown-toggle::after {
  /* Bootstrap đã có style cơ bản, chỉ cần đảm bảo màu */
  border-top-color: var(--text-light);
  margin-left: var(--space-sm); /* Khoảng cách với text */
  transition: transform 0.2s ease-in-out;
}
.hydro-smiling-monkey-mobile-nav
  .nav-link.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.navbar-brand {
  padding: 0;
}
.hydro-smiling-monkey-search-icon {
  background: var(--primary-color);
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  width: 40px;
  height: 40px;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform-origin: center;
  border-top-right-radius: 14px !important;
  border-bottom-left-radius: 14px !important;
}
.hydro-smiling-monkey-search-icon:hover {
  background: var(--text-dark);
  color: var(--text-light);
}
.input-group-search {
  background: rgba(222, 222, 222, 0.31);
  justify-content: space-between;
  border-radius: 5px 14px 5px 5px;
  -webkit-border-radius: 5px 14px 5px 5px;
  -moz-border-radius: 5px 14px 5px 5px;
  -ms-border-radius: 5px 14px 5px 5px;
  -o-border-radius: 5px 14px 5px 2px;
  overflow: hidden;
}
.input-group-search .form-control {
  border-radius: 0;

  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 150px;
}
header .navbar-expand-lg .navbar-nav .navbar-nav {
  justify-content: space-evenly;
}
.hydro-smiling-monkey-nav-menu .navbar-nav .nav-link {
  font-size: clamp(0.85rem, 0.4457rem + 0.6522vw, 1rem);
}
.dropdown-item {
  font-family: "Montserrat", sans-serif;
}

/* Sticky header style (thêm class 'sticky' bằng JS) */
.hydro-smiling-monkey-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030; /* Bootstrap's default z-index for fixed elements */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
  /* Đảm bảo nền không bị trong suốt khi sticky */
  /* background-color: var(--secondary-color); Đã có ở .hydro-smiling-monkey-header */
}

/* Cần ẩn header-top khi sticky */
.hydro-smiling-monkey-header.sticky .hydro-smiling-monkey-header-top {
  display: none !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.hydro-smiling-monkey-header.active {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hydro-smiling-monkey-header.active .hydro-smiling-monkey-logo img {
  max-height: 70px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hydro-smiling-monkey-header.scrolled .hydro-smiling-monkey-logo img {
  max-width: 80px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.index .hydro-smiling-monkey-header {
  /* opacity: 0; */
  
}
 .hydro-smiling-monkey-header.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
 }
/* header end */

/* ===== CUSTOM MOBILE MENU (NO BOOTSTRAP OFFCANVAS) ===== */
.jina-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: none;
}

.jina-mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.jina-modern-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    background: #ffffff;
    border-right: none;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    transform: translateX(-100%);
    visibility: hidden;
    transition: none !important;
    overflow-y: auto;
    overflow-x: hidden;
}

.jina-modern-mobile-menu.active {
    visibility: visible;
    transform: translateX(0);
}

.jina-modern-mobile-menu.gsap-animating {
    transition: none !important;
}

/* Custom scrollbar cho mobile menu */
.jina-modern-mobile-menu::-webkit-scrollbar {
    width: 4px;
}

.jina-modern-mobile-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.jina-modern-mobile-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.jina-modern-mobile-menu::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Legacy slider styles - Hidden for modern redesign */
.hydro-smiling-monkey-hero-slider {
  display: none !important; /* Hide legacy slider */
}

/* Modern Jina Slider will override with inline styles */

/* --- About Us Section --- */
.hydro-smiling-monkey-about-us {
  color: var(--text-light);
  position: relative;
}

.hydro-smiling-monkey-section-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  font-size: 1rem; /* Điều chỉnh theo Figma */
  position: relative;
  /* display: inline-block; */
}
/* .hydro-smiling-monkey-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-50%);
  z-index: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.hydro-smiling-monkey-section-subtitle-text {
  position: relative;
  z-index: 5;
} */

.hydro-smiling-monkey-section-title {
  font-size: clamp(2rem, 1.5385rem + 2.3077vw, 3.5rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px #035637; /* Viền cam */
  text-transform: uppercase;
  letter-spacing: 4px;
}

.hydro-smiling-monkey-about-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: var(--space-md);
  margin-top: var(--space-lg);
  color: var(--text-dark);
}
.hydro-smiling-monkey-section-description {
  line-height: 1.8;
  color: var(--text-dark);
}
.hydro-smiling-monkey-about-contact img {
  height: 40px; /* Điều chỉnh size icon */
  width: auto;
}

.hydro-smiling-monkey-phone-number {
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
}
.hydro-smiling-monkey-call-text {
  font-size: 1.2rem;
  opacity: 0.8;
  text-transform: uppercase;
}
.hydro-smiling-monkey-experience-box {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: -5%;
  padding: 0 20px;
}
.hydro-smiling-monkey-experience {
  font-size: clamp(4rem, 2.7692rem + 6.1538vw, 8rem);
  font-weight: 900;
  background: var(--background-experience) center/cover no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-attachment: fixed;
  transform: translateY(30%);
  -webkit-transform: translateY(30%);
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  -o-transform: translateY(30%);
}
.hydro-smiling-monkey-experience-text {
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
}
.hydro-smiling-monkey-about-img-1 {
  /* Position image 1 */
  position: relative;
  z-index: 2;
}
.hydro-smiling-monkey-about-img-2 {
  /* Position image 2 */
  position: absolute;
  bottom: 0; /* Điều chỉnh vị trí */
  right: 0; /* Điều chỉnh vị trí */
  max-width: 50%; /* Điều chỉnh kích thước */
  z-index: 1;
}
.hydro-smiling-monkey-about-shape {
  position: absolute;
  /* Position shape */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.2;
}

.hydro-smiling-monkey-about-us-image {
  overflow: hidden;
  --bs-aspect-ratio: 140%;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.hydro-smiling-monkey-about-us-image a,
.hydro-smiling-monkey-about-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.svg-title {
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
}
.hydero-smiling-monkey-title-box {
  position: relative;
  z-index: 1;
  padding: 30px;
  width: max-content;
  min-width: 300px;
}
.hydero-smiling-monkey-title-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  z-index: -1;
  clip-path: url(#title-clip-path);
}
.hydro-smiling-monkey-section-subtitle {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--text-light);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
}

.vanhiep-title {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.vanhiep-title .letter,.vanhiep-title .letters {
  display: inline-flex;
  overflow: hidden;
}

.hydro-smiling-monkey-about-us-icon-la {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  z-index: 1;
  object-fit: contain;
  pointer-events: none;
}
.hydro-smiling-monkey-about-us-image:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
/* about us end */

/* fresh produce start */
/* --- Fresh Produce Section --- */
.hydro-smiling-monkey-fresh-produce {
  /* Styles for padding, background color */
}

.hydro-smiling-monkey-produce-item {
  position: relative;
  text-align: center;
}

.hydro-smiling-monkey-produce-img-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.hydro-smiling-monkey-produce-img-wrapper img {
  width: 150px; /* Điều chỉnh theo Figma */
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.hydro-smiling-monkey-produce-border {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px; /* Lớn hơn ảnh 1 chút */
  height: 170px;
  border: 2px dashed var(--primary-color); /* Hoặc style border từ Figma */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: rotateBorder 10s linear infinite; /* Animation xoay */
}

@keyframes rotateBorder {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hydro-smiling-monkey-produce-title {
  font-weight: 700;
  font-size: 1.2rem; /* Điều chỉnh theo Figma */
  margin-bottom: var(--space-xs);
  color: var(--text-light);
}

.hydro-smiling-monkey-produce-desc {
  font-size: 0.9rem; /* Điều chỉnh theo Figma */
  color: var(--text-light); /* Màu text phụ */
  max-width: 220px;
  margin: 0 auto;
}
.hydro-smiling-monkey-fresh-produce-content-circle {
  width: 100%;
  margin: 0 auto;
  background-image: var(--background-fresh-produce);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  padding: 10%;
  background-attachment: fixed;
}
.hydro-smiling-monkey-fresh-produce-content-box {
  /* border: 2px dashed var(--text-light); */
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hydro-smiling-monkey-fresh-produce-content-box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 2px dashed var(--text-light);
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  animation: rotateBorder 10s linear infinite;
  -webkit-animation: rotateBorder 10s linear infinite;
  -moz-animation: rotateBorder 10s linear infinite;
  -ms-animation: rotateBorder 10s linear infinite;
  -o-animation: rotateBorder 10s linear infinite;
}
.hydro-smiling-monkey-fresh-produce-content-box-child {
  width: 100%;
  height: 100%;
  /* background: #fbefdc; */
  /* overflow: hidden; */
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hydro-smiling-monkey-fresh-produce-content-box-child a,
.hydro-smiling-monkey-fresh-produce-content-box-child img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  /* border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.hydro-smiling-monkey-fresh-produce-content-item {
  position: absolute;
  z-index: 3;
}
.hydro-smiling-monkey-fresh-produce-content-item-child-content-title {
  font-weight: 600;
  font-size: clamp(1.2rem, 0.5881rem + 0.9552vw, 1.4rem);
}
.hydro-smiling-monkey-fresh-produce-content-item-child-content-desc {
  font-size: clamp(0.9rem, 0.594rem + 0.4776vw, 1rem);
  line-height: 1.2;
}
.hydro-smiling-monkey-fresh-produce-content-item.item-1 {
  top: 85px;
  left: 9px;
}
.hydro-smiling-monkey-fresh-produce-content-item.item-2 {
  top: 85px;
  right: 9px;
}
.hydro-smiling-monkey-fresh-produce-content-item.item-3 {
  bottom: 85px;
  left: 9px;
}
.hydro-smiling-monkey-fresh-produce-content-item.item-4 {
  bottom: 85px;
  right: 9px;
}
.hydro-smiling-monkey-fresh-produce-content-box
  .hydro-smiling-monkey-fresh-produce-content-item:nth-child(odd)
  .hydro-smiling-monkey-fresh-produce-content-item-child-content {
  align-items: start;
  padding-left: 10px;
  left: 100%;
  text-align: left;
}
.hydro-smiling-monkey-fresh-produce-content-box
  .hydro-smiling-monkey-fresh-produce-content-item:nth-child(even)
  .hydro-smiling-monkey-fresh-produce-content-item-child-content {
  left: -300px;
  align-items: end;
  padding-right: 10px;
  text-align: right;
}
.hydro-smiling-monkey-fresh-produce-content-item-child-content {
  position: absolute;
  top: 50%;
  z-index: 3;
  color: var(--text-light);
  width: 300px;
  max-width: 300px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.hydro-smiling-monkey-fresh-produce-content-item-child {
}
.hydro-smiling-monkey-fresh-produce-content-item-child-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: var(--text-light);
  padding: 10px;
}
.hydro-smiling-monkey-fresh-produce-content-item-child-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hydro-smiling-monkey-fresh-produce-content-mobile {
  display: none;
  margin-top: 50px;
}
.hydro-smiling-monkey-fresh-produce .hydro-smiling-monkey-section-title {
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-light);
}
.hydro-smiling-monkey-fresh-produce .hydro-smiling-monkey-section-subtitle {
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
  font-weight: 600;
}
.hydro-smiling-monkey-fresh-produce {
  position: relative;
}
.hydro-smiling-monkey-fresh-produce .container {
  position: relative;
  z-index: 5;
}
.hydro-smiling-monkey-fresh-produce-bg-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top-left-radius: 40%;
  border-bottom-left-radius: 40%;
}
.hydro-smiling-monkey-fresh-produce-bg-child-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: var(--background-fresh-produce-child);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-left-radius: 40%;
  border-bottom-left-radius: 40%;
  opacity: 1;
  mix-blend-mode: multiply;
}
/* fresh produce end */

/* --- Featured Products Section --- */
.hydro-smiling-monkey-featured-products {
  /* Styles for padding, background */
}

.hydro-smiling-monkey-featured-item {
  /* Margin giữa các item đã có mb-5 */
}

.hydro-smiling-monkey-featured-item img.img-fluid {
  /* Figma có thể yêu cầu ảnh chiếm full height hoặc có tỉ lệ cụ thể */
  /* max-height: 400px; */ /* Ví dụ giới hạn chiều cao */
  object-fit: cover;
}

.hydro-smiling-monkey-featured-shape {
  height: 30px; /* Điều chỉnh theo Figma */
  width: auto;
  margin-bottom: var(--space-sm);
}

.hydro-smiling-monkey-featured-title {
  font-weight: 700;
  font-size: 1.5rem; /* Điều chỉnh theo Figma */
  margin-bottom: var(--space-sm);
}

.hydro-smiling-monkey-featured-desc {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  color: #555;
  margin-bottom: var(--space-md);
  line-height: 1.8;
  text-align: justify;
}

.hydro-smiling-monkey-btn-more {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: var(--space-xs) var(--space-lg);
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.hydro-smiling-monkey-btn-more img {
  margin-left: var(--space-xs);
  height: 1em;
  width: auto;
}

.hydro-smiling-monkey-btn-more:hover {
  background-color: #822323; /* Màu tối hơn của primary */
  color: var(--text-light);
  transform: scale(1.05);
}
.hydro-smiling-monkey-featured-item-content {
  background: #f8f7f1;
  padding: 100px 150px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hydro-smiling-monkey-featured-item-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-item);
  z-index: -1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-size: auto 100%;
  background-position: center;
  background-repeat: repeat;
}
.hydro-smiling-monkey-featured-item:nth-child(odd)
  .hydro-smiling-monkey-featured-item-content {
  border-top-right-radius: 0% !important;
  border-bottom-right-radius: 0% !important;
}
.hydro-smiling-monkey-featured-item:nth-child(even)
  .hydro-smiling-monkey-featured-item-content {
  border-top-left-radius: 0% !important;
  border-bottom-left-radius: 0% !important;
}
.hydro-smiling-monkey-featured-item-mockup {
  position: absolute;
  z-index: 3;
  width: 48%;
  height: auto;
  object-fit: contain;
  top: 50%;
  transform: translateY(-50%) translateX(-60%) rotateY(180deg);
  -webkit-transform: translateY(-50%) translateX(-60%) rotateY(180deg);
  -moz-transform: translateY(-50%) translateX(-60%) rotateY(180deg);
  -ms-transform: translateY(-50%) translateX(-60%) rotateY(180deg);
  -o-transform: translateY(-50%) translateX(-60%) rotateY(180deg);
}
.hydro-smiling-monkey-featured-item:nth-child(even)
  .hydro-smiling-monkey-featured-item-mockup {
  right: 0;
  transform: translateY(-50%) translateX(60%) rotateY(180deg);
  -webkit-transform: translateY(-50%) translateX(60%) rotateY(180deg);
  -moz-transform: translateY(-50%) translateX(60%) rotateY(180deg);
  -ms-transform: translateY(-50%) translateX(60%) rotateY(180deg);
  -o-transform: translateY(-50%) translateX(60%) rotateY(180deg);
}

.hydro-smiling-monkey-featured-item:nth-child(odd)
  .hydro-smiling-monkey-featured-item-mockup {
  left: 0;
  transform: translateY(-50%) translateX(-60%) rotateY(180deg);
  -webkit-transform: translateY(-50%) translateX(-60%) rotateY(180deg);
  -moz-transform: translateY(-50%) translateX(-60%) rotateY(180deg);
  -ms-transform: translateY(-50%) translateX(-60%) rotateY(180deg);
  -o-transform: translateY(-50%) translateX(-60%) rotateY(180deg);
}
.hydro-smiling-monkey-featured-products .hydero-smiling-monkey-title-box {
  padding-left: 100px;
}

/* on instagram start */
/* --- Instagram/Labels Section --- */
.hydro-smiling-monkey-instagram {
  /* Padding */
}

.hydro-smiling-monkey-insta-gallery a:hover img {
  transform: scale(1.1);
}

.hydro-smiling-monkey-insta-overlay-item {
  /* Đảm bảo item cuối có overlay */
}

.hydro-smiling-monkey-insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
}

.hydro-smiling-monkey-insta-image-box:hover
  .hydro-smiling-monkey-insta-image
  img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}
.hydro-smiling-monkey-insta-image-box:hover
  .hydro-smiling-monkey-insta-overlay {
  opacity: 1;
}
.hydro-smiling-monkey-insta-overlay img {
  height: 40px; /* Kích thước icon */
  width: auto;
}

.hydro-smiling-monkey-insta-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.hydro-smiling-monkey-insta-image {
  overflow: hidden;
}
.hydro-smiling-monkey-insta-image img,
.hydro-smiling-monkey-insta-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}
.hydro-smiling-monkey-instagram .hydro-smiling-monkey-section-subtitle {
  color: var(--third-color);
}
.hydro-smiling-monkey-instagram .hydro-smiling-monkey-section-title {
}
/* on instagram end */

/* footer start */
/* --- Footer --- */
.hydro-smiling-monkey-footer {
  background-color: var(--secondary-color); /* Màu nền mặc định */
  /* background-image: url(...); Thêm ảnh nền nếu có */
  background-size: cover;
  background-position: center;
  color: rgba(255, 255, 255, 0.8); /* Màu chữ hơi mờ */
}

.hydro-smiling-monkey-footer-logo img {
  max-height: 80px; /* Điều chỉnh theo Figma */
  width: auto;
}

.hydro-smiling-monkey-footer-text {
  font-size: 0.9rem;
  line-height: 1.7;
}

.hydro-smiling-monkey-footer-contact p {
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start; /* Căn đầu dòng */
}
.hydro-smiling-monkey-footer-social {
  color: var(--text-dark);
}

.hydro-smiling-monkey-footer-social span {
  margin-right: var(--space-sm);
  font-weight: 600;
}
.hydro-smiling-monkey-footer-social a {
  color: var(--text-dark);
  margin-right: var(--space-sm);
  opacity: 0.7;
  font-size: 1.3rem;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hydro-smiling-monkey-footer-social a:hover {
  opacity: 1;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hydro-smiling-monkey-footer-social img {
  height: 20px;
}

.hydro-smiling-monkey-footer-title {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
}

.hydro-smiling-monkey-footer-links li {
  margin-bottom: var(--space-xs);
}
.hydro-smiling-monkey-footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.hydro-smiling-monkey-footer-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.hydro-smiling-monkey-newsletter-form input {
  border-radius: 20px 0 0 20px; /* Bo góc input */
  border: none;
}
.hydro-smiling-monkey-newsletter-form input::placeholder {
  color: #999;
  font-size: 0.9rem;
}

.hydro-smiling-monkey-btn-send {
  background-color: var(--text-dark);
  color: var(--text-light);
  border: none;
  border-radius: 0 20px 20px 0; /* Bo góc nút */
  padding: 0 var(--space-md);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.hydro-smiling-monkey-btn-send:hover {
  background-color: #822323;
  color: var(--text-light);
}

.hydro-smiling-monkey-footer-divider {
  border-top: 1px solid rgba(0,0,0, 0.2);
}

.hydro-smiling-monkey-copyright {
  font-size: 0.8rem;
  color: rgba(0,0,0, 1);
}
.hvr-underline-from-left::before {
  background-color: var(--text-light);
  height: 1px;
}
.icon-footer {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
footer a {
  color: #ffffffcc;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  font-weight: 400;
}
footer a:hover {
  color: var(--text-light);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hydro-smiling-monkey-footer-contact-list {
  font-size: 0.9rem;
  color: #ffffffcc;
}
.hydro-smiling-monkey-footer-title {
  font-size: clamp(1.1rem, 1.0385rem + 0.3077vw, 1.3rem);
  font-weight: 900;
}
.hydro-news-letter-box {
  background: var(--primary-color);
}
.hydro-news-letter-form-box {
  background: var(--text-light);
}
.hydro-smiling-monkey-btn-send {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
/* footer end */

/* trang giới thiệu start */
/* === About Us Page Specific Styles === */

/* --- Page Banner --- */
.hydro-smiling-monkey-page-banner {
  padding: 10rem 0; /* Điều chỉnh padding */
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: var(--background-banner-image);
}

.hydro-smiling-monkey-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Lớp phủ tối */
  z-index: 1;
}

.hydro-smiling-monkey-page-banner .container {
  position: relative;
  z-index: 2;
}

.hydro-smiling-monkey-page-title {
  font-size: clamp(1.8rem, 1.4308rem + 1.8462vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.hydro-smiling-monkey-breadcrumb .breadcrumb-item a {
  color: var(--text-light);
  opacity: 0.8;
  text-decoration: none;
  font-weight: 700; /* Figma style */
  font-size: 1.1rem; /* Figma style */
}
.hydro-smiling-monkey-breadcrumb .breadcrumb-item a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hydro-smiling-monkey-breadcrumb .breadcrumb-item.active {
  color: var(--text-light);
  font-weight: 700; /* Figma style */
  font-size: 1.1rem; /* Figma style */
}

.hydro-smiling-monkey-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-light); /* Màu dấu phân cách */
  content: ">"; /* Ký tự phân cách từ Figma */
  padding: 0 var(--space-sm);
  font-weight: 500;
}

/* --- History Timeline --- */
.hydro-smiling-monkey-history {
}

.hydro-smiling-monkey-timeline {
  position: relative;
}

/* Đường kẻ dọc */
.hydro-smiling-monkey-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px; /* Độ dày đường kẻ */
  background-color: var(--primary-color); /* Màu đường kẻ */
  transform: translateX(-50%);
  z-index: 1;
}

.hydro-smiling-monkey-timeline-item {
  position: relative;
  margin-bottom: 60px; /* Khoảng cách giữa các mốc */
  z-index: 2;
}

/* Bỏ margin bottom cho item cuối */
.hydro-smiling-monkey-timeline-item:last-child {
  margin-bottom: 0;
}

.hydro-smiling-monkey-timeline-marker {
  position: relative; /* Để định vị đường kẻ và icon */
}

.hydro-smiling-monkey-timeline-year {
  font-size: 2rem; /* Kích thước năm */
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.hydro-smiling-monkey-timeline-icon {
  width: 60px; /* Kích thước vòng tròn chứa icon */
  height: 60px;
  background-color: var(--primary-color); /* Màu nền vòng tròn */
  border: 5px solid #fff; /* Viền trắng */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; /* Căn giữa */
  box-shadow: 0 0 0 4px var(--primary-color); /* Viền ngoài */
}

.hydro-smiling-monkey-timeline-icon img {
  height: 24px; /* Kích thước icon bên trong */
  width: auto;
}

.hydro-smiling-monkey-timeline-content {
  background-color: var(--bg-light-gray); /* Nền nội dung */
  padding: var(--space-md);
  border-radius: 5px;
  position: relative;
}
.hydro-smiling-monkey-timeline-content h4 {
  font-weight: 700;
  margin-bottom: var(--space-xs);
  font-size: 1.2rem;
}
.hydro-smiling-monkey-timeline-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
}

/* Mũi tên trỏ vào timeline marker */
.hydro-smiling-monkey-timeline-content::before {
  content: "";
  position: absolute;
  top: 20px; /* Điều chỉnh vị trí mũi tên */
  width: 0;
  height: 0;
  border-style: solid;
}

/* Mũi tên cho item bên trái */
.row:nth-child(odd) .hydro-smiling-monkey-timeline-content::before {
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--bg-light-gray);
}

/* Mũi tên cho item bên phải */
.row:nth-child(even) .hydro-smiling-monkey-timeline-content::before {
  left: -10px;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--bg-light-gray) transparent transparent;
}

/* --- Customers Section --- */
.hydro-smiling-monkey-customers {
  /* Background, padding */
  color: var(--text-light);
}

.hydro-smiling-monkey-customer-card {
  /* Style card */
  height: 100%; /* Đảm bảo các card cao bằng nhau nếu cần */
}

.hydro-smiling-monkey-customer-title {
  font-size: clamp(1.1rem, 0.9769rem + 0.6154vw, 1.5rem);
  font-weight: 700;
  color: var(--text-dark);
}
.hydro-smiling-monkey-customer-description {
  color: var(--text-dark);
}
.hydro-smiling-monkey-customer-logos img {
  height: 50px; /* Điều chỉnh size logo */
  width: auto;
  margin: var(--space-sm);
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.hydro-smiling-monkey-customer-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Partners Section --- */
.hydro-smiling-monkey-partners {
  /* Background, padding */
}

.hydro-smiling-monkey-partner-card {
  /* Style card */
  text-align: center;
}

.hydro-smiling-monkey-partner-card img {
  width: 100%;
  max-width: 250px; /* Giới hạn chiều rộng ảnh */
  height: auto;
  border-radius: 5px; /* Bo góc nhẹ */
  margin-bottom: var(--space-md);
}

.hydro-smiling-monkey-partner-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.hydro-smiling-monkey-partner-desc {
  font-size: 0.9rem;
  color: #666;
}
.page-introduce .hydro-smiling-monkey-section-title {
}
.hydro-smiling-monkey-history {
  padding-bottom: 200px;
}
.hydro-smiling-monkey-history-icon {
  background: var(--third-color);
  outline: 7px solid var(--primary-color);
  width: 90px;
  height: 90px;
  pointer-events: none;
}
.hydro-smiling-monkey-history-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  opacity: 0;
}
.hydro-smiling-monkey-history-text {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 0%;
}
.hydro-smiling-monkey-history-item {
  position: relative;
  z-index: 2;
}
.hydro-smiling-monkey-history-item-content-line {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 1;
  background-color: var(--primary-color);
  /* background-color: var(--third-color); */
  clip-path: url(#history-clip-path);
  opacity: 0;
}
.hydro-smiling-monkey-history-item-content {
  position: relative;
  z-index: 5;
}
.hydro-smiling-monkey-history-year {
  text-align: center;
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-dark);
  padding-left: 0%;
  position: absolute;
  bottom: -90%;
  left: 0;
  /* -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%); */
  width: 100%;
  white-space: nowrap;
}
.hydro-smiling-monkey-history-text {
  padding-right: 20%;
  opacity: 0;
}
.svg-history {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 0%;
  z-index: 0;
}
.hydro-smiling-monkey-customer-image {
  overflow: hidden;
}
.hydro-smiling-monkey-customer-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hydro-smiling-monkey-customer-image:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.hydro-smiling-monkey-customer-image a,
.hydro-smiling-monkey-customer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.hydro-smiling-monkey-video {
  overflow: hidden;
}
.hydro-smiling-monkey-video a,
.hydro-smiling-monkey-video img,
.hydro-smiling-monkey-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* trang giới thiệu end */

/* trang sản phẩm start */
.mk-product-item-card {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: var(--text-light);
  overflow: hidden;
}
.mk-product-item-card-image {
  overflow: hidden;
  max-width: 200px;
  margin: 0 auto;
}
.mk-product-item-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.mk-product-item-card-category {
  color: #c66437;
  background: rgba(198, 100, 55, 0.2);
  font-size: 0.73rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  width: max-content;
  text-transform: uppercase;
}
.mk-product-item-card-review-star i {
  font-size: 0.8rem;
  color: #ffa900;
}
.mk-product-item-card-title {
  font-weight: 600;
  font-size: clamp(0.85rem, 0.7731rem + 0.3846vw, 1.1rem);
  text-transform: capitalize;
  color: var(--text-dark);
}
.mk-product-item-card-price-new {
  color: #c66437;
  font-weight: 600;
  font-size: clamp(0.95rem, 0.9038rem + 0.2308vw, 1.1rem);
}
.mk-product-item-card-price-old {
  color: #666;
  font-size: 0.8rem;
  text-decoration: line-through;
}
.dodo-filter-box {
  width: max-content;
}
.dodo-filter-box label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
}
.pagination-sm.pagination {
  gap: 10px;
}
.page-item.disabled .page-link {
  background: var(--text-dark);
  border-color: var(--primary-color);
  color: var(--text-light);
  opacity: 0.5;
}
.page-item .page-link {
  background: var(--text-dark);
  border-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.page-item.active .page-link {
  background: var(--third-color);
  border-color: var(--primary-color);
  color: var(--text-light);
}
.page-item.first {
  display: none;
}
.page-item.last {
  display: none;
}

/* trang sản phẩm end */

/* trang sản phẩm chi tiết start */
/* trang sản phẩm chi tiết start */

.fbn-product-image-section {
  text-align: center;
}
.fbn-product-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.fbn-product-thumbnail-wrapper {
  align-items: center;
}
.fbn-product-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.fbn-product-thumbnails img:hover {
  transform: scale(1.1);
}
.fbn-thumbnail-prev,
.fbn-thumbnail-next {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #6c757d;
}
.fbn-product-details-section {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.fbn-product-title {
  font-family: var(--title-font);
  /* font-weight: bold; */
  margin-bottom: 1rem;
  /* border-bottom: 1px solid #e8e8e8; */
  padding-bottom: 10px;
  font-size: clamp(1.6rem, 1.3846rem + 1.0769vw, 2.3rem);
}
.fbn-product-rating i {
  background: linear-gradient(to bottom, #cc9f3c, #ffdb64, #cc9f3c);
  background-clip: text;
  color: transparent;
}
.fbn-product-price {
  color: var(--second-text-color);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: bold;
}
.fbn-product-sold {
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  color: #6c757d;
}
.fbn-product-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}
.fbn-product-quantity-wrapper button {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
}
.fbn-quantity-input {
  width: 60px;
  text-align: center;
}
.fbn-add-to-cart {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}
.fbn-add-to-cart:hover {
  background-color: var(--main-color);
  transform: translateY(-3px);
}
.fbn-product-quantity-wrapper .input-group {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: max-content;
}
.fbn-quantity-input {
  border: none;
  display: none;
}
.quantity-display {
  display: inline-block;
  width: 60px;
  text-align: center;
  line-height: 40px; /* bằng chiều cao btn */
  font-size: 1.25rem;
  color: #fff;
  user-select: none;
}
.btn-outline-secondary {
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
  background-color: #e9e9e9;
  border-color: #e9e9e9;
  color: var(--text-color);
}
.fbn-san-pham-detail-image {
  overflow: hidden;
}
.fbn-san-pham-detail-image a,
.fbn-san-pham-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-detail-thumb-image {
  overflow: hidden;
  background: var(--text-light);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.sp-detail-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* nội dung chi tiết */
.fbn-san-pham-chi-tiet-title {
  border-bottom: 2px solid var(--main-color);
}
.fbn-san-pham-chi-tiet-title h3 {
  background-color: var(--main-color);
  color: var(--background-color);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  border-top-left-radius: 5px;
  border-top-right-radius: 25px;
  padding: 8px 20px;
  padding-right: 50px;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  font-family: UTM-Avo;

  text-transform: uppercase;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
}
.fbn-san-pham-chi-tiet-des {
  padding: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  border-bottom: 8px solid #eae9e9;
  background-color: #f8f8f8;
  height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.fbn-san-pham-chi-tiet-des::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to top,
    rgba(248, 248, 248, 1) 50%,
    rgba(248, 248, 248, 0.5)
  );
  z-index: 2;
  pointer-events: none;
}
.fbn-san-pham-chi-tiet-des.collapsehaha::after {
  display: none;
}
.fbn-san-pham-chi-tiet-xem-them {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 3;
}
.fbn-xem-them-btn {
  min-width: 150px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-color: var(--third-color);
  border: none;
  color: var(--background-color);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.fbn-xem-them-btn:hover {
  background-color: #4a3001;
}
.sp-tt-text-right {
  text-align: right;
}
.coco-san-pham-detail-image {
  overflow: hidden;
}
.coco-san-pham-detail-image a,
.coco-san-pham-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-detail-thumb-image {
  overflow: hidden;
  cursor: pointer;
}
.sp-detail-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.fbn-add-to-cart:hover {
  background-color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.vh-hinh-image {
  display: block;
  text-align: center;
  margin: 15px auto;
}
.fbn-category-hot-content-title {
  text-transform: uppercase;
  color: var(--text-color);
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  font-family: UTM-Avo;
}
.dodo-tin-lien-quan-item-image {
  overflow: hidden;
}
.dodo-tin-lien-quan-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.dodo-tin-lien-quan-item:hover .dodo-tin-lien-quan-item-image img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.dodo-tin-lien-quan-item {
  border-top: 1px solid #e5e5e5;
}
.dodo-tin-lien-quan-item-name {
  color: var(--text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  font-size: clamp(0.9rem, 0.89rem + 0.05vw, 0.95rem);
}
.dodo-tin-lien-quan-item:hover .dodo-tin-lien-quan-item-name {
  color: var(--second-text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.dodo-cot-phai-title {
  color: var(--text-color);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  padding: 10px 20px;
  padding-top: 0;
  padding-right: 50px;
  font-family: UTM-Avo;
  text-transform: uppercase;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
}
.dodo-tin-lien-quan-view-more {
  border: 1px solid #e5e5e5;
  color: var(--text-color);
  background-color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  font-family: var(--title-font);
}
.dodo-tin-lien-quan-view-more:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dodo-san-pham-nay-mua-ngay-image {
  overflow: hidden;
}
.dodo-san-pham-nay-mua-ngay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.dodo-san-pham-nay-mua-ngay-gia-tien {
  font-family: UTM-AvoBold;
  font-size: clamp(1.3rem, 1.26rem + 0.2vw, 1.5rem);
  color: var(--second-text-color);
}
.dodo-san-pham-nay-mua-ngay-item .dodo-san-pham-nay-mua-ngay-danh-gia {
  font-size: 0.8rem;
}
.dodo-san-pham-nay-mua-ngay-item .dodo-san-pham-nay-mua-ngay-danh-gia i {
  color: #ffc107;
}
.btn-mua-ngay {
  background: #666;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.btn-mua-ngay:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dodo-san-pham-nay-mua-ngay-box {
  border: 1px solid #e5e5e5;
  position: sticky;
  top: 80px;
}
.fbn-san-pham-chi-tiet-page {
  overflow: visible;
}
.sp-scroll {
  cursor: pointer;
}
.sp-scroll:hover {
  color: var(--second-text-color);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.dodo-san-pham-nay-mua-ngay-image:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.btn-nhanxet,
.btn-guibl {
  background-color: var(--main-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.btn-nhanxet:hover,
.btn-guibl:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.content-nhanxet {
  background-color: transparent;
  width: 100%;
}
.khung-binh-luan-wrapper {
  border: 1px solid #eae9e9;
}
.title-medium-score {
  font-size: clamp(1.2rem, 1.14rem + 0.3vw, 1.5rem);
  font-family: UTM-Avo;
}
.san-pham-detail .accordion-button {
  padding: 0.5rem 1.25rem !important;
  background-color: var(--text-color) !important;
  color: var(--background-color) !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.san-pham-detail .accordion-button:not(.collapsed) {
  background-color: var(--main-color) !important;
  color: var(--background-color) !important;
}
.vh-notification {
  font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
}
.fbn-product-details-section {
  color: var(--text-light);
}
.fbn-product-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.chua-co-danh-gia-text {
  color: #ffffffcc;
}
.fbn-product-quantity-wrapper button {
  color: var(--text-light);
  font-size: 1.2rem;
}
.fbn-product-price {
  color: var(--third-color);
}
.fbn-quantity-input {
  background: transparent;
  color: var(--text-light);
}
.fbn-product-quantity-wrapper button {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
}
.fbn-product-quantity-wrapper button:hover {
  color: var(--third-color);
}
.fbn-add-to-cart {
  background-color: var(--third-color);
  color: var(--text-light);
  font-size: 1.2rem;
}
.fbn-product-contact-now-btn {
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background: var(--third-color);
  color: var(--text-light);
  text-align: center;
  min-width: 150px;
}
.fbn-product-contact-now-btn:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hydro-title-label {
  font-weight: 800;
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  text-transform: uppercase;
  color: var(--third-color);
  border-bottom: 3px solid var(--third-color);
}
.san-pham-detail .hydro-smiling-monkey-section-title {
}
.list-binhluan {
  background-color: var(--text-light);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.khung-binh-luan-wrapper {
  background-color: var(--text-light);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  overflow: hidden;
}
.title-medium-score {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.14rem + 0.3vw, 1.5rem);
}
.tn-product-page-content-item {
  color: var(--text-light);
}
/* trang sản phẩm chi tiết end */

/* trang album start */
.hydro-monkey-album-content {
}
.hydro-monkey-album-item {
  overflow: hidden;
}
.hydro-monkey-album-item img,
.hydro-monkey-album-item a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
}
.hydro-monkey-album-item img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* trang album end */
/* trang liên hệ start */
.lien-he-content-item-icon {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: var(--third-color);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  margin-top: -30px;
}
.lien-he-content-item-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}
.lien-he-content-item {
  background: var(--text-light);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.lien-he-content-item-title {
  font-weight: 800;
  font-size: clamp(1.2rem, 1.14rem + 0.3vw, 1.5rem);
}
.lien-he-content-item-content,
.lien-he-content-item-content a {
  color: var(--text-dark);
}
.lien-he-content-item-content a.hvr-underline-from-left::before {
  background-color: var(--text-dark);
}
.bando-box {
  overflow: hidden;
  max-height: 400px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
}
.bando-box iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: all !important;
}
.lien-he-form-item {
  color: var(--text-light);
}
.lien-he-form-item .form-control {
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: none;
  border-bottom: 1px solid #ffffffcc;
  color: var(--text-light);
}
.lien-he-form-item .form-control:focus {
  box-shadow: none;
  border-color: var(--text-light);
}
.btn-send-contact {
  background: var(--third-color);
  color: var(--text-light);
  font-weight: 500;
  font-size: 1.2rem;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
}
.btn-send-contact:hover {
  background-color: var(--text-color);
  color: var(--text-light);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.gio-hang .well.text-center.py-5,
.gio-hang .well.text-center.py-5 a {
  color: var(--text-light);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.gio-hang .well.text-center.py-5 a:hover {
  color: var(--third-color);
}
.bag-cart {
  font-family: "Montserrat", sans-serif;
}
/* trang liên hệ end */

/* TRANG CHỦ START */

/* impressive numbers start */
/* ===== IMPRESSIVE NUMBERS SECTION STYLES ===== */
.jina-impressive-numbers-section {
  overflow: hidden;
  position: relative;
  margin: 4rem 0;
}

.jina-impressive-numbers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><circle cx="10" cy="10" r="1" fill="%23035637" opacity="0.1"/><circle cx="30" cy="10" r="1" fill="%23035637" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23035637" opacity="0.1"/><circle cx="70" cy="10" r="1" fill="%23035637" opacity="0.1"/><circle cx="90" cy="10" r="1" fill="%23035637" opacity="0.1"/></svg>')
    repeat;
  pointer-events: none;
}

/* Title Section */
.jina-numbers-title-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.jina-title-background {
}

.jina-title-decorative-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.jina-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(246, 137, 30, 0.3) 50%,
    transparent 100%
  );
  height: 2px;
  width: 120%;
  animation: lineMove 4s ease-in-out infinite;
}

.jina-line-1 {
  top: 20%;
  animation-delay: 0s;
}

.jina-line-2 {
  bottom: 20%;
  animation-delay: 2s;
  animation-direction: reverse;
}

.jina-title-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.jina-section-title {
  font-size: clamp(1.4rem, 1.2769rem + 0.6154vw, 1.8rem);
  font-weight: 800;
  color: var(--white-color);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.jina-company-name {
  font-size: clamp(1.4rem, 1.2769rem + 0.6154vw, 1.8rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px #035637;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* Numbers Container */
.jina-numbers-container {
  padding: 0;
  height: 100%;
  background: var(--primary-color);
  overflow: hidden;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.jina-number-card {
  height: 200px;
  position: relative;
  margin: 0;
  overflow: hidden;
  filter: drop-shadow(10px 0px 4px rgba(0, 0, 0, 0.25));
  -webkit-filter: drop-shadow(10px 0px 4px rgba(0, 0, 0, 0.25));
}

.jina-card-inner {
  height: 100%;
  background: var(--primary-color);
  /*background: linear-gradient(135deg, #035637 0%, #e67e22 100%);
  */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-shadow: none !important;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.jina-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
/* Card Shapes Based on Figma Design */
.jina-number-card-left {
  position: relative;
  z-index: 3;
}
.jina-number-card-center {
  position: relative;
  z-index: 2;
}
.jina-number-card-right {
  position: relative;
  z-index: 1;
}
.jina-card-left .jina-card-inner {
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  z-index: 3;
}

.jina-card-center .jina-card-inner {
  z-index: 2;
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  left: -7%;
}

.jina-card-right .jina-card-inner {
  z-index: 1;
}

.jina-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}

.jina-card-inner:hover::before {
  opacity: 1;
}

.jina-card-inner:hover .jina-number {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* Numbers */
.jina-number {
  font-size: clamp(2.5rem, 1.8846rem + 3.0769vw, 4.5rem);
  font-weight: 900;
  color: var(--white-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.jina-number::after {
  display: none;
  content: "+";
  font-size: 3rem;
  position: absolute;
  top: 0;
  right: -1.5rem;
  opacity: 0.8;
  animation: plus-pulse 2s infinite ease-in-out;
}

/* Animated background effect for numbers */
.jina-number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.jina-card-inner:hover .jina-number::before {
  opacity: 1;
}

/* Labels */
.jina-number-labels {
  text-align: center;
  line-height: 1.2;
}

.jina-label-top,
.jina-label-bottom {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.jina-label-top {
  margin-bottom: 0.2rem;
}

/* Animations */
@keyframes lineMove {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes plus-pulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes number-glow {
  0% {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(246, 137, 30, 0.5);
  }
  100% {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
}

/* Animation class for counting state */
.jina-number.counting {
  animation: number-glow 0.5s ease-in-out;
}
.jina-impressive-numbers-section .hydero-smiling-monkey-title-bg {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
/* impressive numbers end */

/* our service start */
/* Our Service Component Styles */
.our-service-section {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
.our-service-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, var(--white-color), transparent);
  z-index: 4;
}
.our-service-section::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--white-color), transparent);
  z-index: 4;
}
.our-service-section .container {
  position: relative;
  z-index: 5;
}
/* Modern Background Elements System */
.decorative-blur {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* Primary Blur Elements */
.blur-orange-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(246, 137, 30, 0.25) 0%,
    rgba(246, 137, 30, 0.08) 40%,
    transparent 70%
  );
  top: -150px;
  left: -250px;
  filter: blur(80px);
  animation: floatSlow 20s ease-in-out infinite;
}

.blur-orange-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(246, 137, 30, 0.2) 0%,
    rgba(246, 137, 30, 0.06) 50%,
    transparent 70%
  );
  bottom: -200px;
  right: -225px;
  filter: blur(100px);
  animation: floatReverse 25s ease-in-out infinite;
}

/* Secondary Geometric Elements */
.geometric-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.shape-hexagon {
  width: 140px;
  height: 140px;
  top: 15%;
  right: 12%;
  background: linear-gradient(
    135deg,
    rgba(246, 137, 30, 0.15) 0%,
    rgba(246, 137, 30, 0.05) 100%
  );
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  animation: rotateShape 30s linear infinite;
  border: 1px solid rgba(246, 137, 30, 0.2);
}

.shape-triangle {
  width: 100px;
  height: 100px;
  bottom: 25%;
  left: 10%;
  background: linear-gradient(
    45deg,
    rgba(246, 137, 30, 0.12) 0%,
    rgba(246, 137, 30, 0.03) 100%
  );
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation: pulseShape 15s ease-in-out infinite;
  border: 1px solid rgba(246, 137, 30, 0.25);
}

.shape-circle {
  width: 80px;
  height: 80px;
  top: 65%;
  right: 25%;
  background: radial-gradient(
    circle,
    rgba(246, 137, 30, 0.2) 0%,
    rgba(246, 137, 30, 0.05) 60%,
    transparent 100%
  );
  border-radius: 50%;
  animation: bounce 12s ease-in-out infinite;
  border: 2px solid rgba(246, 137, 30, 0.3);
}

/* Particle System */
.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(246, 137, 30, 0.6);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(246, 137, 30, 0.3);
}

.particle-1 {
  width: 6px;
  height: 6px;
  top: 10%;
  left: 20%;
  animation: particleFloat1 18s ease-in-out infinite;
}

.particle-2 {
  width: 8px;
  height: 8px;
  top: 35%;
  right: 30%;
  animation: particleFloat2 22s ease-in-out infinite;
}

.particle-3 {
  width: 4px;
  height: 4px;
  bottom: 30%;
  left: 35%;
  animation: particleFloat3 16s ease-in-out infinite;
}

.particle-4 {
  width: 7px;
  height: 7px;
  top: 75%;
  right: 45%;
  animation: particleFloat4 20s ease-in-out infinite;
}

/* Grid Pattern Overlay */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(246, 137, 30, 0.7) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(246, 137, 30, 0.7) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 40s linear infinite;
}

/* Gradient Lines */
.gradient-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(246, 137, 30, 0.5) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(246, 137, 30, 0.3);
}

.line-top {
  top: 25%;
  left: 0;
  width: 100%;
  animation: lineSlideRight 8s ease-in-out infinite;
}

.line-bottom {
  bottom: 35%;
  right: 0;
  width: 100%;
  animation: lineSlideLeft 10s ease-in-out infinite;
}

/* Animations */
@keyframes floatSlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -20px) scale(1.05);
  }
  50% {
    transform: translate(-20px, -40px) scale(0.95);
  }
  75% {
    transform: translate(-40px, 20px) scale(1.02);
  }
}

@keyframes floatReverse {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(-25px, 30px) rotate(120deg) scale(1.08);
  }
  66% {
    transform: translate(40px, -15px) rotate(240deg) scale(0.92);
  }
}

@keyframes rotateShape {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: rotate(180deg) scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.8;
  }
}

@keyframes pulseShape {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3) rotate(45deg);
    opacity: 0.2;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.2);
  }
}

@keyframes particleFloat1 {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.4;
  }
  25% {
    transform: translate(50px, -30px);
    opacity: 0.8;
  }
  50% {
    transform: translate(-30px, -60px);
    opacity: 0.2;
  }
  75% {
    transform: translate(-70px, 20px);
    opacity: 0.6;
  }
}

@keyframes particleFloat2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.5;
  }
  33% {
    transform: translate(-40px, 40px) rotate(120deg);
    opacity: 0.9;
  }
  66% {
    transform: translate(60px, -20px) rotate(240deg);
    opacity: 0.3;
  }
}

@keyframes particleFloat3 {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(80px, -80px);
    opacity: 0.7;
  }
}

@keyframes particleFloat4 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(-50px, 30px) scale(1.5);
    opacity: 0.2;
  }
  75% {
    transform: translate(30px, -50px) scale(0.8);
    opacity: 0.9;
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

@keyframes lineSlideRight {
  0%,
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes lineSlideLeft {
  0%,
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Section Header */
.section-title-wrapper {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 20px 40px;
  border-radius: 15px;
  position: relative;
  z-index: 10;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

.section-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 6.4px;
  color: #035637;
  margin: 0;
  text-transform: uppercase;
}

/* Services Grid */
.services-grid {
}

/* Service Items */
.service-item {
  margin-bottom: 120px;
}

.service-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

/* Alternate Layout for Services */
.service-item-1 .service-content-wrapper,
.service-item-3 .service-content-wrapper {
  flex-direction: row;
}

.service-item-2 .service-content-wrapper,
.service-item-4 .service-content-wrapper {
  flex-direction: row-reverse;
}

/* Service Image Container */

/* Decorative Border Background */

.service-image-box {
  overflow: hidden;
  position: relative;
  z-index: 5;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.service-image-box img,
.service-image-box a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-label-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  border: 1px solid var(--primary-color);
  transform: rotate(10deg) translateX(-7%);
  -webkit-transform: rotate(10deg) translateX(-7%);
  -moz-transform: rotate(10deg) translateX(-7%);
  -ms-transform: rotate(10deg) translateX(-7%);
  -o-transform: rotate(10deg) translateX(-7%);
  transform-origin: bottom right;
}

.service-label {
  position: absolute;
  z-index: 2;
  top: -2.3rem;
  left: 13%;
}

.service-label span {
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  overflow: hidden;
}

/* GSAP Split Text Words */
.service-word {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

/* Service Text Content */
.service-text-content {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.service-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(2rem, 1.6923rem + 1.5385vw, 3rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  line-height: 1.2;
  /*Textstrokeoutlineeffect-banđầutransparent*/
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 1px var(--primary-color);
  text-stroke: 1px var(--primary-color);
  /*Backgroundforfillanimation*/
  background: linear-gradient(90deg, var(--primary-color) 0%, #e57a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  background-position: -100% 0;
  background-size: 200% 100%;
  background-repeat: no-repeat;
  transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state - when triggered by GSAP */
.service-title.fill-active {
  -webkit-text-fill-color: transparent !important;
  background-position: 0% 0 !important;
  color: transparent !important;
  transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fallback for browsers that don't support text-stroke */
@supports not (-webkit-text-stroke: 1px var(--primary-color)) {
  .service-title {
    color: var(--primary-color);
    text-shadow: 2px 2px 0 var(--primary-color),
      -2px -2px 0 var(--primary-color), 2px -2px 0 var(--primary-color),
      -2px 2px 0 var(--primary-color);
  }

  .service-title.fill-active {
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

/* Decorative underline */
.service-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #e57a1a 100%);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.3s;
}

.service-title.fill-active::before {
  width: 60px;
}

.service-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 2;
  color: var(--text-dark);
  text-align: justify;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
}

.service-description::before {
  content: "\201C";
  position: absolute;
  left: -15px;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #e57a1a 100%);
  color: white !important;
  padding: 14px 30px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(246, 137, 30, 0.2);
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
}

.read-more-btn::after {
  content: "→";
  margin-left: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #e57a1a 0%, var(--primary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(246, 137, 30, 0.4);
  color: white !important;
}

.read-more-btn:hover::before {
  left: 100%;
}

.read-more-btn:hover::after {
  transform: translateX(4px);
}

.read-more-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(246, 137, 30, 0.6);
}

/* Animation Enhancement */
@keyframes serviceFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(8.132deg);
  }
  50% {
    transform: translateY(-10px) rotate(8.132deg);
    -webkit-transform: translateY(-10px) rotate(8.132deg);
    -moz-transform: translateY(-10px) rotate(8.132deg);
    -ms-transform: translateY(-10px) rotate(8.132deg);
    -o-transform: translateY(-10px) rotate(8.132deg);
  }
}

/* our service end */

/* why choose us start */
/* Why Choose Us Component Styles */
.why-choose-us-section {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
.why-choose-us-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, var(--white-color), transparent);
  z-index: 4;
}
.why-choose-us-section::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--white-color), transparent);
  z-index: 4;
}
.why-choose-us-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--background-why-choose-us);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  background-attachment: fixed;
  opacity: 0.2;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(10px);
  -ms-filter: blur(10px);
  -o-filter: blur(10px);
}
.why-choose-us-section .container-fluid {
  position: relative;
  z-index: 5;
}
/* Background Images */
.background-image {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Section Header */
.section-title-wrapper {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 20px 50px;
  border-radius: 15px;
  position: relative;
  z-index: 10;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

.section-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 6.4px;
  color: #035637;
  margin: 0;
  text-transform: uppercase;
}

.section-tagline {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin: 10px 0 0 0;
  text-align: center;
}

/* Why Cards Container */
.why-cards-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  height: 600px;
}

/* Why Cards */
.why-card {
  position: absolute;
  width: 247px;
  height: 245px;
  backdrop-filter: blur(9.9px);
  -webkit-backdrop-filter: blur(9.9px);
  background: rgba(255, 255, 255, 0.44);
  border: 2px solid #035637;
  padding: 25px 20px;
  cursor: pointer;
}

/* Card Positioning according to Figma design */
.why-card-1 {
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.why-card-2 {
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  transform: translateY(-25%);
  -webkit-transform: translateY(-25%);
  -moz-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  -o-transform: translateY(-25%);
}
.why-card-3 {
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.why-card-4 {
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  transform: translateY(-25%);
  -webkit-transform: translateY(-25%);
  -moz-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  -o-transform: translateY(-25%);
}

.why-card-5 {
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

/* Card Content */
.card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.card-title {
  font-weight: 600;
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 25px;
}

.card-description {
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 22px;
  text-align: center;
  margin: 0;
}

.why-cards-container {
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
}

.why-card {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 200px;
  margin: 0 auto;
  
}
.why-cards-container-box-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 3;
 
}
#why-cards-container {
  min-height: 320px;
}
/* why choose us end */

/* faq start     */

/* FAQ Section Styles */
.faq-section {
  min-height: 100vh;
  overflow: hidden;
}

/* FAQ Illustration Container */
.faq-illustration-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/* Character Styles */
.character-group {
  position: relative;
  width: 100%;
  height: 100%;
}

.character {
  position: absolute;
  bottom: 0;
}

/* Male Character */
.male-character {
  left: 50px;
  z-index: 2;
}

.male-character .head {
  width: 80px;
  height: 80px;
  background: #FDBCB4;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 10px;
}

.male-character .head::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 15px;
  width: 50px;
  height: 30px;
  background: #8B4513;
  border-radius: 25px 25px 0 0;
}

.male-character .shirt {
  width: 120px;
  height: 100px;
  background: #FFD700;
  border-radius: 15px;
  margin: 0 auto 5px;
  position: relative;
}

.male-character .pants {
  width: 100px;
  height: 120px;
  background: #1E3A8A;
  border-radius: 0 0 15px 15px;
  margin: 0 auto 5px;
}

.male-character .shoes {
  width: 110px;
  height: 25px;
  background: #4A5568;
  border-radius: 15px;
  margin: 0 auto;
}

/* Female Character */
.female-character {
  right: 50px;
  z-index: 2;
}

.female-character .head {
  width: 75px;
  height: 75px;
  background: #FDBCB4;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 10px;
}

.female-character .head::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 10px;
  width: 55px;
  height: 40px;
  background: #8B4513;
  border-radius: 30px;
}

.female-character .top {
  width: 110px;
  height: 90px;
  background: #035637;
  border-radius: 15px;
  margin: 0 auto 5px;
}

.female-character .pants {
  width: 95px;
  height: 110px;
  background: #7C3AED;
  border-radius: 0 0 15px 15px;
  margin: 0 auto 5px;
}

.female-character .shoes {
  width: 105px;
  height: 25px;
  background: #FFD700;
  border-radius: 15px;
  margin: 0 auto;
}

/* Question Marks */
.question-mark {
  position: absolute;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  color: #D4A574;
  animation: float 3s ease-in-out infinite;
}

.large-q {
  font-size: 120px;
  top: 50px;
  right: 150px;
  animation-delay: 0s;
}

.medium-q {
  font-size: 60px;
  top: 20px;
  left: 20px;
  animation-delay: 1s;
}

.small-q {
  font-size: 40px;
  bottom: 200px;
  left: 200px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Decorative Leaves */
.decorative-leaves {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.leaf {
  position: absolute;
  background: #035637;
  opacity: 0.6;
}

.leaf-1 {
  width: 30px;
  height: 15px;
  border-radius: 0 100% 0 100%;
  bottom: 100px;
  left: 0;
  transform: rotate(-45deg);
}

.leaf-2 {
  width: 25px;
  height: 12px;
  border-radius: 100% 0 100% 0;
  bottom: 80px;
  left: 40px;
  transform: rotate(45deg);
}

.leaf-3 {
  width: 35px;
  height: 18px;
  border-radius: 0 100% 0 100%;
  bottom: 120px;
  right: 20px;
  transform: rotate(30deg);
}

.leaf-4 {
  width: 28px;
  height: 14px;
  border-radius: 100% 0 100% 0;
  bottom: 90px;
  right: 60px;
  transform: rotate(-30deg);
}

/* FAQ Header */
.faq-header {
  margin-bottom: 2rem;
}

.faq-title-badge {
  display: inline-block;
  background: #035637;
  padding: 8px 24px;
  border-radius: 25px;
  margin-bottom: 1rem;
}

.faq-title-badge .badge-text {
  color: white;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
}

.faq-header .section-title {
  font-size: 3rem;
  font-weight: bold;
  color: #2D3748;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-stroke: 1px #035637;
  -webkit-text-stroke: 1px rgba(246, 137, 30, 0.3);
}

.faq-header .section-subtitle {
  font-size: 1.1rem;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 0;
}

/* FAQ Accordion Styles */
.faq-accordion {
  background: transparent;
}

.faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(246, 137, 30, 0.2);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-accordion .accordion-button {
  background: transparent;
  border: none;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2D3748;
  box-shadow: none;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(246, 137, 30, 0.1);
  color: #035637;
  border-bottom: 1px solid rgba(246, 137, 30, 0.2);
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(246, 137, 30, 0.25);
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
  color: #035637;
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #4A5568;
  background: rgba(255, 255, 255, 0.9);
}


/* Animation for accordion items */
.faq-accordion .accordion-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.faq-accordion .accordion-item:nth-child(1) { animation-delay: 0.1s; }
.faq-accordion .accordion-item:nth-child(2) { animation-delay: 0.2s; }
.faq-accordion .accordion-item:nth-child(3) { animation-delay: 0.3s; }
.faq-accordion .accordion-item:nth-child(4) { animation-delay: 0.4s; }
.faq-accordion .accordion-item:nth-child(5) { animation-delay: 0.5s; }
.faq-accordion .accordion-item:nth-child(6) { animation-delay: 0.6s; }
.faq-accordion .accordion-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
/* faq end */
/* TRANG CHỦ END */



/* footer start */

.hydro-smiling-monkey-footer {
  position: relative;
  background: var(--white-color);
}
.hydro-smiling-monkey-footer .container {
  position: relative;
  z-index: 5;
}
.hydrosite-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.6;
}

.hydro-smiling-monkey-footer-contact-info-item-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}
.hydro-smiling-monkey-footer-contact-info-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hydro-smiling-monkey-footer-contact-info-item-content {
  color: var(--text-dark);
}
.hydro-smiling-monkey-footer-contact-info-item-content-title, .hydro-smiling-monkey-footer-contact-info-item-content-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
}
.hydro-smiling-monkey-footer-contact-info-item-content-text {
  font-size: 1rem;
  font-weight: 400;
}
.footer-link-list a {
  color: var(--text-dark);
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.footer-link-list a:hover {
  opacity: 0.8;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
/* footer end */

/* contact index start */
.features-banner {
  background-color: #035637 !important;
}

.glass-input {
  background: rgba(195, 195, 195, 0.17) !important;
  backdrop-filter: blur(14.95px);
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 10px !important;
  color: #222222;
}

.glass-input:focus {
  background: rgba(195, 195, 195, 0.25) !important;
  border-color: #035637 !important;
  box-shadow: 0 0 0 0.2rem rgba(246, 137, 30, 0.25) !important;
}

.glass-input::placeholder {
  color: #666666;
}

.form-floating>label {
  color: #222222;
  font-weight: 400;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  color: #222222;
}

.contact-title h2::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -30px;
  width: 150px;
  height: 20px;
  background-size: contain;
  z-index: -1;
}

.feature-item {
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.btn-warning:hover {
  background-color: #e67e0e !important;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
.feature-icon {
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  margin: 0 auto;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-item h5 {
  font-size: 1.2rem;
}
.office-info img {
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  margin-right: 10px;
  object-fit: contain;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}
/* contact index end */

  /* ===== JINA LOGISTICS LOADING SCREEN STYLES - CHỈ TRANG CHỦ ===== */
  /* 
    Loading Screen chỉ xuất hiện trên trang chủ ($com == '' || $source == 'index')
    - Loading chạy trong 2 giây cố định
    - Sau khi hoàn thành: loader translateY(-100%), header/slider translateY(0%)
    - Header và slider ban đầu ở translateY(100%) để tránh flickering
  */
/* Main Loader Container - CHỈ CHO TRANG CHỦ */
.jina-logistics-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  overflow: hidden;
  transform: translateY(0%);
  /* transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
}

/* CSS cho header và slider trên trang chủ - Ban đầu ở ngoài viewport */
.homepage-content {
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Khi loading hoàn thành */
.jina-logistics-loader.completed {
  transform: translateY(-100%);
}

.homepage-content.show {
  transform: translateY(0%);
}

.jina-loader-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 600px;
  width: 90%;
}

/* Background Patterns */
.jina-loader-bg-patterns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.jina-pattern-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, rgba(246, 137, 30, 0.1) 2px, transparent 2px),
                    radial-gradient(circle at 75% 75%, rgba(246, 137, 30, 0.08) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
  opacity: 0.6;
}

.jina-pattern-lines {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: 
    linear-gradient(45deg, transparent 49%, rgba(246, 137, 30, 0.03) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(246, 137, 30, 0.03) 50%, transparent 51%);
  background-size: 30px 30px;
}

/* Logo Section */
.jina-loader-logo-container {
  margin-bottom: 60px;
}

.jina-logo-wrapper {
  margin-bottom: 15px;
}

.jina-loader-logo {
  max-height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
  -webkit-filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.jina-loader-tagline {
  margin-top: 10px;
}

.jina-tagline-text {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Logistics Animation Container */
.jina-logistics-animation {
  margin: 50px 0;
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Shipping Container */
.jina-container-wrapper {
  position: relative;
  z-index: 3;
  margin-right: 5px;
}

.jina-shipping-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 80px;
}

.jina-container-body {
  width: 100px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
  border-radius: 6px 6px 3px 3px;
  position: relative;
  box-shadow: 0 4px 15px var(--third-color);
  -webkit-border-radius: 6px 6px 3px 3px;
  -moz-border-radius: 6px 6px 3px 3px;
  -ms-border-radius: 6px 6px 3px 3px;
  -o-border-radius: 6px 6px 3px 3px;
}

.jina-container-door {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.jina-container-door::before,
.jina-container-door::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  left: -3px;
}

.jina-container-door::before {
  top: 10px;
}

.jina-container-door::after {
  bottom: 10px;
}

.jina-container-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.jina-container-wheels {
  display: flex;
  gap: 70px;
  margin-top: -8px;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  justify-content: space-between;
  padding: 0 10px;
}

/* Truck */
.jina-truck-wrapper {
  position: relative;
  z-index: 2;
}

.jina-truck {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0px;
  min-height: 60px;
}

.jina-truck-cab {
  width: 45px;
  height: 40px;
  background: linear-gradient(135deg, #495057 0%, #343a40 100%);
  border-radius: 8px 8px 3px 3px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 8px 8px 3px 3px;
  -moz-border-radius: 8px 8px 3px 3px;
  -ms-border-radius: 8px 8px 3px 3px;
  -o-border-radius: 8px 8px 3px 3px;
}

.jina-truck-window {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 20px;
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.jina-truck-wheels {
  display: flex;
  gap: 15px;
  position: absolute;
  bottom: -8px;
  left: 5px;
  right: 5px;
  justify-content: space-between;
}

/* Wheels */
.jina-wheel {
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #2c3e50 0%, #34495e 70%, #1a252f 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.jina-wheel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #6c757d;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.jina-wheel::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  width: 2px;
  height: 12px;
  background: #95a5a6;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

/* Route Line */
.jina-route-line {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(246, 137, 30, 0.2);
  border-radius: 2px;
  overflow: hidden;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.jina-route-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--third-color) 100%);
  border-radius: 2px;
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.jina-route-progress::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
  animation: jina-route-shimmer 2s ease-in-out infinite;
  -webkit-animation: jina-route-shimmer 2s ease-in-out infinite;
  -moz-animation: jina-route-shimmer 2s ease-in-out infinite;
  -ms-animation: jina-route-shimmer 2s ease-in-out infinite;
  -o-animation: jina-route-shimmer 2s ease-in-out infinite;
}

/* Progress Section */
.jina-loader-progress-section {
  margin-top: 50px;
}

.jina-progress-bar-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.jina-progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(246, 137, 30, 0.15);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.jina-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--third-color) 50%, var(--primary-color) 100%);
  border-radius: 10px;
  position: relative;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jina-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.4) 50%, 
    transparent 100%);
  animation: jina-progress-shimmer 2s ease-in-out infinite;
  -webkit-animation: jina-progress-shimmer 2s ease-in-out infinite;
  -moz-animation: jina-progress-shimmer 2s ease-in-out infinite;
  -ms-animation: jina-progress-shimmer 2s ease-in-out infinite;
  -o-animation: jina-progress-shimmer 2s ease-in-out infinite;
}

.jina-progress-glow {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  bottom: -2px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--third-color) 100%);
  border-radius: 12px;
  filter: blur(4px);
  opacity: 0;
  z-index: -1;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-filter: blur(4px);
}

.jina-progress-percentage {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  min-width: 45px;
  text-align: right;
  font-family: 'Courier New', monospace;
}

/* Loading Text */
.jina-loading-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.jina-loading-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.jina-loading-dots {
  display: flex;
  gap: 2px;
}

.jina-dot {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1;
}

/* Loading Status */
.jina-loading-status {
  margin-top: 10px;
}

.jina-status-text {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
  font-style: italic;
}

/* Animations */
@keyframes jina-progress-shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes jina-route-shimmer {
  0%, 100% {
    opacity: 0.4;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

/* Responsive Design */
@media (max-width: 576px) {
  .jina-loader-content {
    padding: 0 20px;
  }
  
  .jina-loader-logo {
    max-height: 60px;
  }
  
  .jina-tagline-text {
    font-size: 0.9rem;
  }
  
  .jina-logistics-animation {
    height: 100px;
    margin: 40px 0;
  }
  
  .jina-container-body {
    width: 80px;
    height: 50px;
  }
  
  .jina-container-wheels {
    gap: 50px;
    padding: 0 8px;
  }
  
  .jina-truck-cab {
    width: 35px;
    height: 35px;
  }
  
  .jina-truck-wheels {
    gap: 10px;
    left: 3px;
    right: 3px;
  }
  
  .jina-progress-bar-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .jina-progress-percentage {
    text-align: center;
    min-width: auto;
  }
}

@media (max-width: 400px) {
  .jina-logistics-animation {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
  }
  
  .jina-container-wrapper {
    margin-right: 20px;
  }
}

/* Performance Optimizations */
.jina-logistics-loader * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.jina-wheel,
.jina-progress-fill,
.jina-route-progress {
  will-change: transform;
}

.jina-pattern-dots,
.jina-pattern-lines {
  will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .jina-logistics-loader *,
  .jina-logistics-loader *::before,
  .jina-logistics-loader *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== LOGISTICS CONTACT SUCCESS POPUP STYLES ===== */
.logistics-success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logistics-success-popup.show {
  opacity: 1;
  visibility: visible;
}

.logistics-popup-container {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 0;
  min-width: 400px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 
              0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: scale(0.7) translateY(50px);
  -webkit-transform: scale(0.7) translateY(50px);
  -moz-transform: scale(0.7) translateY(50px);
  -ms-transform: scale(0.7) translateY(50px);
  -o-transform: scale(0.7) translateY(50px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.logistics-success-popup.show .logistics-popup-container {
  transform: scale(1) translateY(0);
  -webkit-transform: scale(1) translateY(0);
  -moz-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  -o-transform: scale(1) translateY(0);
}

/* Logistics Themed Header */
.logistics-popup-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
  padding: 30px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.logistics-popup-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,20 L90,20 L85,40 L15,40 Z" fill="rgba(255,255,255,0.1)"/><circle cx="25" cy="50" r="8" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="50" r="8" fill="rgba(255,255,255,0.1)"/><rect x="20" y="25" width="60" height="15" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
  opacity: 0.1;
  animation: logistics-float 20s linear infinite;
  -webkit-animation: logistics-float 20s linear infinite;
  -moz-animation: logistics-float 20s linear infinite;
  -ms-animation: logistics-float 20s linear infinite;
  -o-animation: logistics-float 20s linear infinite;
}

.logistics-popup-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255,255,255,0.6) 50%, 
    transparent 100%);
  animation: logistics-shimmer 3s ease-in-out infinite;
  -webkit-animation: logistics-shimmer 3s ease-in-out infinite;
  -moz-animation: logistics-shimmer 3s ease-in-out infinite;
  -ms-animation: logistics-shimmer 3s ease-in-out infinite;
  -o-animation: logistics-shimmer 3s ease-in-out infinite;
}

/* Success Icon with Logistics Theme */
.logistics-success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.logistics-success-icon::before {
  content: '✓';
  font-size: 36px;
  color: white;
  font-weight: bold;
  animation: logistics-check-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation: logistics-check-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-animation: logistics-check-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -ms-animation: logistics-check-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-animation: logistics-check-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logistics-success-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  animation: logistics-pulse-ring 2s ease-out infinite;
  -webkit-animation: logistics-pulse-ring 2s ease-out infinite;
  -moz-animation: logistics-pulse-ring 2s ease-out infinite;
  -ms-animation: logistics-pulse-ring 2s ease-out infinite;
  -o-animation: logistics-pulse-ring 2s ease-out infinite;
}

.logistics-popup-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.logistics-popup-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 8px 0 0 0;
  font-weight: 400;
}

/* Content Section */
.logistics-popup-content {
  padding: 40px;
  text-align: center;
  max-height: 500px;
  overflow-y: auto;
}

.logistics-success-message {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0 0 25px 0;
  font-weight: 400;
}

.logistics-tracking-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  border-left: 4px solid var(--primary-color);
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.logistics-tracking-label {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.logistics-tracking-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  font-family: 'Courier New', monospace;
}

/* Action Buttons */
.logistics-popup-actions {
  padding: 0 40px 40px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.logistics-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.logistics-btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
  color: white;
  box-shadow: 0 4px 15px var(--third-color);
}

.logistics-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 137, 30, 0.4);
  color: white;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.logistics-btn-secondary {
  background: #6c757d;
  color: white;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.logistics-btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
  color: white;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

/* Close Button */
.logistics-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logistics-popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* Loading State */
.logistics-form-loading .read-more-btn {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.logistics-form-loading .read-more-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: logistics-spin 1s linear infinite;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-animation: logistics-spin 1s linear infinite;
  -moz-animation: logistics-spin 1s linear infinite;
  -ms-animation: logistics-spin 1s linear infinite;
  -o-animation: logistics-spin 1s linear infinite;
}

/* Animations */
@keyframes logistics-float {
  0% { transform: translateX(-100px); }
  100% { transform: translateX(100px); }
}

@keyframes logistics-shimmer {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
}

@keyframes logistics-check-bounce {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.3); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes logistics-pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes logistics-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error Popup Variant */
.logistics-error-popup .logistics-popup-header {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.logistics-error-popup .logistics-success-icon::before {
  content: '✕';
  font-size: 32px;
}

.logistics-error-popup .logistics-tracking-info {
  border-left-color: #dc3545;
  background: linear-gradient(135deg, #f8d7da 0%, #f1b0b7 100%);
}

/* Responsive Design */
@media (max-width: 576px) {
  .logistics-popup-container {
    min-width: 320px;
    margin: 20px;
  }
  
  .logistics-popup-header,
  .logistics-popup-content,
  .logistics-popup-actions {
    padding: 25px 25px;
  }
  
  .logistics-popup-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .logistics-btn {
    width: 100%;
  }
}

/* Form Enhancement for Glass Effect */
.contact-form-inputs.logistics-form-loading {
  pointer-events: none;
  opacity: 0.7;
}

.glass-input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(246, 137, 30, 0.25) !important;
}

/* ===================== LOGISTICS INTRODUCE PAGE BACKGROUND ===================== */

/* Modern Logistics Background for Introduce Page */
.page-introduce .hydro-smiling-monkey-main-content {
    position: relative;
    background: linear-gradient(135deg, #fefefe 0%, #fff9f4 25%, #fef7f0 50%, #fdfdfd 75%, #ffffff 100%);
    overflow: hidden;
    z-index: 1;
}

/* Background Patterns Container */
.jina-intro-bg-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
}

/* Logistics Route Lines */
.jina-route-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(246, 137, 30, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(246, 137, 30, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 0 0;
    animation: jina-network-move 20s linear infinite;
}

/* Container Shapes */
.jina-logistics-containers {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.jina-container-shape {
    position: absolute;
    width: 60px;
    height: 35px;
    background: linear-gradient(135deg, rgba(246, 137, 30, 0.15) 0%, rgba(230, 126, 34, 0.1) 100%);
    border: 2px solid rgba(246, 137, 30, 0.2);
    border-radius: 4px;
    opacity: 0.8;
    box-shadow: 0 2px 8px rgba(246, 137, 30, 0.15);
}

.jina-container-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: rgba(246, 137, 30, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.jina-container-1 {
    top: 15%;
    left: 10%;
    animation: jina-float-container 15s ease-in-out infinite;
    animation-delay: 0s;
}

.jina-container-2 {
    top: 25%;
    right: 15%;
    animation: jina-float-container 18s ease-in-out infinite;
    animation-delay: -5s;
}

.jina-container-3 {
    top: 60%;
    left: 8%;
    animation: jina-float-container 20s ease-in-out infinite;
    animation-delay: -10s;
}

.jina-container-4 {
    bottom: 20%;
    right: 12%;
    animation: jina-float-container 16s ease-in-out infinite;
    animation-delay: -3s;
}

/* Logistics Trucks */
.jina-logistics-trucks {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.jina-truck-shape {
    position: absolute;
    width: 80px;
    height: 40px;
    opacity: 0.6;
}

.jina-truck-cab {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.2) 0%, rgba(211, 84, 0, 0.15) 100%);
    border-radius: 4px 4px 2px 2px;
    position: relative;
}

.jina-truck-container {
    width: 50px;
    height: 30px;
    background: linear-gradient(135deg, rgba(246, 137, 30, 0.15) 0%, rgba(230, 126, 34, 0.1) 100%);
    border: 1px solid rgba(246, 137, 30, 0.2);
    border-radius: 2px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.jina-truck-1 {
    top: 30%;
    left: -100px;
    animation: jina-truck-move-right 25s linear infinite;
    animation-delay: 0s;
}

.jina-truck-2 {
    top: 70%;
    right: -100px;
    transform: scaleX(-1);
    animation: jina-truck-move-left 30s linear infinite;
    animation-delay: -8s;
}

/* Decorative Circles */
.jina-logistics-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.jina-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(246, 137, 30, 0.12);
    background: radial-gradient(circle, rgba(246, 137, 30, 0.08) 0%, transparent 70%);
}

.jina-circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 20%;
    animation: jina-circle-pulse 12s ease-in-out infinite;
}

.jina-circle-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 15%;
    animation: jina-circle-pulse 15s ease-in-out infinite;
    animation-delay: -6s;
}

.jina-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: jina-circle-rotate 20s linear infinite;
    opacity: 0.3;
}

/* Connection Lines */
.jina-connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.jina-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(246, 137, 30, 0.25) 50%, transparent 100%);
    animation: jina-line-glow 8s ease-in-out infinite;
}

.jina-line-1 {
    width: 200px;
    top: 25%;
    left: 20%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.jina-line-2 {
    width: 150px;
    top: 60%;
    right: 25%;
    transform: rotate(-20deg);
    animation-delay: -3s;
}

.jina-line-3 {
    width: 180px;
    bottom: 30%;
    left: 30%;
    transform: rotate(45deg);
    animation-delay: -6s;
}

/* Particle System */
.jina-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.jina-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(246, 137, 30, 0.9);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px rgba(246, 137, 30, 0.5);
}

.jina-particle-1 { top: 20%; left: 25%; animation: jina-particle-float 10s ease-in-out infinite; animation-delay: 0s; }
.jina-particle-2 { top: 40%; right: 30%; animation: jina-particle-float 12s ease-in-out infinite; animation-delay: -2s; }
.jina-particle-3 { bottom: 25%; left: 40%; animation: jina-particle-float 14s ease-in-out infinite; animation-delay: -4s; }
.jina-particle-4 { top: 60%; right: 20%; animation: jina-particle-float 11s ease-in-out infinite; animation-delay: -6s; }
.jina-particle-5 { bottom: 40%; left: 20%; animation: jina-particle-float 13s ease-in-out infinite; animation-delay: -8s; }
.jina-particle-6 { top: 30%; left: 60%; animation: jina-particle-float 9s ease-in-out infinite; animation-delay: -1s; }
.jina-particle-7 { top: 70%; right: 40%; animation: jina-particle-float 15s ease-in-out infinite; animation-delay: -3s; }
.jina-particle-8 { bottom: 15%; right: 60%; animation: jina-particle-float 11s ease-in-out infinite; animation-delay: -5s; }
.jina-particle-9 { top: 10%; right: 10%; animation: jina-particle-float 13s ease-in-out infinite; animation-delay: -7s; }
.jina-particle-10 { bottom: 60%; left: 70%; animation: jina-particle-float 8s ease-in-out infinite; animation-delay: -9s; }

/* Logistics Hub Icons */
.jina-logistics-hubs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.jina-hub {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.4) 0%, rgba(230, 126, 34, 0.15) 100%);
    border: 2px solid rgba(230, 126, 34, 0.5);
    border-radius: 50%;
    animation: jina-hub-pulse 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.3);
}

.jina-hub::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(230, 126, 34, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.jina-hub-1 { top: 18%; left: 35%; animation-delay: 0s; }
.jina-hub-2 { top: 45%; right: 25%; animation-delay: -2s; }
.jina-hub-3 { bottom: 35%; left: 25%; animation-delay: -4s; }
.jina-hub-4 { bottom: 25%; right: 40%; animation-delay: -1s; }

/* Animations */
@keyframes jina-network-move {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, 50px 50px; }
}

@keyframes jina-float-container {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes jina-truck-move-right {
    0% { left: -100px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% + 100px); opacity: 0; }
}

@keyframes jina-truck-move-left {
    0% { right: -100px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { right: calc(100% + 100px); opacity: 0; }
}

@keyframes jina-circle-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes jina-circle-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes jina-line-glow {
    0%, 100% { opacity: 0.2; transform: scaleX(1); }
    50% { opacity: 0.6; transform: scaleX(1.1); }
}

@keyframes jina-particle-float {
    0%, 100% { opacity: 0; transform: translateY(0px); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    50% { transform: translateY(-30px); }
}

@keyframes jina-hub-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.9; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .jina-route-network {
        background-size: 30px 30px;
    }
    
    .jina-container-shape {
        width: 40px;
        height: 25px;
    }
    
    .jina-truck-shape {
        width: 60px;
        height: 30px;
    }
    
    .jina-circle-3 {
        width: 120px;
        height: 120px;
    }
    
    .jina-line {
        height: 1px;
    }
}

@media (max-width: 480px) {
   
    
    .jina-intro-bg-patterns {
        opacity: 0.4;
    }
    
    .jina-container-shape {
        width: 30px;
        height: 20px;
    }
    
    .jina-truck-shape {
        width: 50px;
        height: 25px;
    }
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .jina-route-network,
    .jina-container-shape,
    .jina-truck-shape,
    .jina-circle,
    .jina-line,
    .jina-particle,
    .jina-hub {
        animation: none;
    }
    
    .jina-intro-bg-patterns {
        opacity: 0.3;
    }
}

/* Enhanced Sections Styling */
.page-introduce .hydro-smiling-monkey-history {
    position: relative;
    z-index: 2;
    /* background: rgba(255, 255, 255, 0.85); */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin:3rem 0;
    padding: 3rem 0;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
}

.page-introduce .hydro-smiling-monkey-customers {
    position: relative;
    z-index: 2;
    /* background: rgba(248, 250, 251, 0.9); */
    /* backdrop-filter: blur(10px); */
    border-radius: 20px;
    margin: 3rem 0;
    padding: 3rem 0;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); */
    margin-top: 120px;
}

.page-introduce .hydro-smiling-monkey-partners {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 3rem 0;
    padding: 3rem 0;
}

/* Floating Geometric Shapes */
.jina-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.jina-float-shape {
    position: absolute;
    opacity: 0.6;
    animation: jina-shape-float 20s ease-in-out infinite;
}

.jina-shape-diamond {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, rgba(246, 137, 30, 0.3) 0%, rgba(230, 126, 34, 0.1) 100%);
    transform: rotate(45deg);
    border-radius: 3px;
}

.jina-shape-triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid rgba(246, 137, 30, 0.25);
}

.jina-shape-hexagon {
    width: 18px;
    height: 18px;
    background: rgba(246, 137, 30, 0.2);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.jina-float-shape-1 { top: 15%; left: 15%; animation-delay: 0s; }
.jina-float-shape-2 { top: 25%; right: 20%; animation-delay: -3s; }
.jina-float-shape-3 { top: 45%; left: 70%; animation-delay: -6s; }
.jina-float-shape-4 { bottom: 30%; right: 30%; animation-delay: -9s; }
.jina-float-shape-5 { bottom: 20%; left: 30%; animation-delay: -12s; }
.jina-float-shape-6 { top: 60%; right: 15%; animation-delay: -15s; }

/* Organic Blobs */
.jina-organic-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.jina-blob {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 137, 30, 0.1) 0%, rgba(246, 137, 30, 0.05) 50%, transparent 100%);
    animation: jina-blob-morph 25s ease-in-out infinite;
}

.jina-blob-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.jina-blob-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -8s;
}

.jina-blob-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -16s;
}

/* Subtle Gradient Waves */
.jina-gradient-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(246, 137, 30, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(230, 126, 34, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 40%, rgba(246, 137, 30, 0.04) 0%, transparent 50%);
    animation: jina-wave-shift 30s ease-in-out infinite;
}

/* Enhanced Animations */
@keyframes jina-shape-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.8; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.4; }
    75% { transform: translateY(-25px) rotate(270deg); opacity: 0.7; }
}

@keyframes jina-blob-morph {
    0%, 100% { 
        border-radius: 50%; 
        transform: scale(1) rotate(0deg); 
    }
    25% { 
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; 
        transform: scale(1.1) rotate(90deg); 
    }
    50% { 
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; 
        transform: scale(0.9) rotate(180deg); 
    }
    75% { 
        border-radius: 40% 50% 60% 30% / 70% 40% 50% 30%; 
        transform: scale(1.05) rotate(270deg); 
    }
}

@keyframes jina-wave-shift {
    0%, 100% { opacity: 0.8; transform: translateX(0); }
    50% { opacity: 0.4; transform: translateX(20px); }
}

/* ===================== END LOGISTICS INTRODUCE PAGE BACKGROUND ===================== */

/* ===== JINA SERVICE PAGE MODERN STYLES ===== */
/* Additional styles for page-our-service.php */
.jina-service-page-modern {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    padding: 60px 0;
}

/* Background System Enhancements */
.jina-service-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.jina-service-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(105, 184, 112, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(105, 184, 112, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: jina-grid-move 20s linear infinite;
}

/* Service Cards Grid Enhancement */
.jina-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.jina-service-card {
    position: relative;
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(246, 137, 30, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.jina-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(105, 184, 112, 0.2);
}

/* Service Card Number Badge */
.jina-service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--third-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(105, 184, 112, 0.3);
}

/* Modern Button Styles */
.jina-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
}

.jina-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--third-color));
    color: white;
    box-shadow: 0 5px 15px rgba(105, 184, 112, 0.2);
}

.jina-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(105, 184, 112, 0.3);
    color: white;
}

.jina-btn-secondary {
    background: rgba(105, 184, 112, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(105, 184, 112, 0.2);
}

.jina-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(105, 184, 112, 0.25);
}

/* Enhanced Service Features */
.jina-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.jina-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    padding: 6px 12px;
    background: rgba(105, 184, 112, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(105, 184, 112, 0.1);
    transition: all 0.3s ease;
}

.jina-feature-item:hover {
    background: rgba(246, 137, 30, 0.1);
    transform: translateY(-2px);
}

.jina-feature-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Stats Section Enhancement */
.jina-stat-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba( 246, 137, 30, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jina-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--third-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.jina-stat-item:hover::before {
    transform: scaleX(1);
}

.jina-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba( 105, 184, 112, 0.15);
}

.jina-stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

/* Enhanced CTA Section - Vibrant Orange Logistics Design */
.jina-service-cta-section {
    position: relative;
    z-index: 10;
    padding: 100px 40px;
    margin: 60px 20px;
    background: var(--white-color);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    border: 3px solid rgba( 105, 184, 112, 0.3);
    box-shadow: 
        0 30px 60px rgba( 105, 184, 112, 0.25),
        0 15px 30px rgba( 105, 184, 112, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba( 246, 137, 30, 0.1);
    overflow: hidden;
    will-change: transform, opacity;
}

/* Background Elements */
.jina-cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.jina-cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba( 105, 184, 112, 0.3), 
        rgba( 105, 184, 112, 0.15));
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba( 105, 184, 112, 0.2);
    will-change: transform;
}

.jina-cta-circle-1 {
    width: 250px;
    height: 250px;
    top: -70px;
    right: -70px;
    background: radial-gradient(circle, 
        rgba( 105, 184, 112, 0.4) 0%, 
        rgba( 105, 184, 112, 0.2) 50%, 
        rgba( 105, 184, 112, 0.1) 100%);
}

.jina-cta-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, 
        rgba( 105, 184, 112, 0.35) 0%, 
        rgba( 105, 184, 112, 0.15) 50%, 
        rgba( 105, 184, 112, 0.08) 100%);
}

.jina-cta-bg-shape {
    position: absolute;
    background: linear-gradient(45deg, 
        rgba( 105, 184, 112, 0.25), 
        rgba( 105, 184, 112, 0.15));
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba( 105, 184, 112, 0.15);
    will-change: transform;
}

.jina-cta-shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    border-radius: 20px;
}

.jina-cta-shape-2 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 15%;
    transform: rotate(-30deg);
    border-radius: 15px;
}

.jina-cta-logistics-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba( 105, 184, 112, 0.6) 20%, 
        rgb( 105, 184, 112) 50%, 
        rgba( 105, 184, 112, 0.6) 80%, 
        transparent);
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba( 105, 184, 112, 0.3);
}

/* Main Container */
.jina-cta-container {
    position: relative;
    z-index: 2;
}

/* Professional Badge */
.jina-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, 
        rgb( 105, 184, 112), 
        rgba( 105, 184, 112, 0.9));
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 
        0 15px 35px rgba( 105, 184, 112, 0.4),
        0 8px 20px rgba( 105, 184, 112, 0.3);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.jina-cta-badge-icon {
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced Title */
.jina-cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-color);
}

.jina-cta-title-main {
    display: block;
    color: var(--text-color);
}

.jina-cta-title-highlight {
    display: block;
    background: linear-gradient(135deg, 
        rgb( 105, 184, 112), 
        rgba( 105, 184, 112, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

/* Professional Description */
.jina-cta-description {
    margin-bottom: 40px;
}

.jina-cta-desc-main {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0,0,0, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jina-cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.jina-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba( 105, 184, 112, 0.1);
}

.jina-cta-feature i {
    font-size: 1rem;
    color: var(--primary-color);
}

/* Enhanced Buttons - NO TRANSITIONS (GSAP controlled) */
.jina-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.jina-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    overflow: hidden;
    text-transform: capitalize;
    will-change: transform, opacity;
    cursor: pointer;
    /* NO TRANSITION - GSAP controlled */
}

.jina-btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    z-index: 1;
    will-change: transform;
}

.jina-btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    will-change: transform;
}

.jina-cta-primary .jina-btn-bg {
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--third-color));
    box-shadow: 
        0 20px 40px var(--third-color),
        0 10px 20px rgba( 246, 137, 30, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.jina-cta-primary {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.jina-cta-primary .jina-btn-icon {
    /* NO TRANSITION - GSAP controlled */
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.jina-cta-secondary .jina-btn-bg {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(255, 255, 255, 0.85));
    border: 3px solid var(--third-color);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 15px 35px var(--third-color),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.jina-cta-secondary {
    color: var(--primary-color);
    font-weight: 700;
}

.jina-cta-secondary .jina-btn-icon {
    /* NO TRANSITION - GSAP controlled */
    color: var(--primary-color);
}

/* Trust Indicators */
.jina-cta-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.jina-trust-item {
    text-align: center;
}

.jina-trust-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.jina-trust-label {
    font-size: 0.9rem;
    color: rgba(0,0,0, 0.7);
    font-weight: 500;
}

/* Decorative Elements */
.jina-cta-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.jina-cta-decoration {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 8px 20px var(--third-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--third-color);
}

.jina-decoration-truck {
    top: 15%;
    right: 10%;
}

.jina-decoration-globe {
    bottom: 20%;
    left: 8%;
}

.jina-decoration-chart {
    top: 60%;
    right: 5%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .jina-service-cta-section {
        padding: 60px 20px;
        margin: 40px 15px;
        border-radius: 30px;
    }
    
    .jina-cta-title {
        font-size: 2.2rem;
    }
    
    .jina-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .jina-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .jina-cta-features {
        gap: 15px;
    }
    
    .jina-cta-trust {
        gap: 25px;
    }
    
    .jina-cta-shape-1,
    .jina-cta-shape-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .jina-service-cta-section {
        padding: 50px 15px;
        margin: 30px 10px;
        border-radius: 25px;
    }
    
    .jina-cta-title {
        font-size: 1.8rem;
    }
    
    .jina-btn-content {
        padding: 16px 35px;
    }
    
    .jina-cta-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .jina-cta-trust {
        flex-direction: column;
        gap: 20px;
    }
}

/* Card Decoration Enhancement */
.jina-card-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.jina-card-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid rgb( 246, 137, 30);
    opacity: 0;
    transition: all 0.4s ease;
}

.jina-service-card:hover .jina-card-corner {
    opacity: 0.8;
}

/* Image Container Enhancement */
.jina-service-image-container {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.jina-service-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.jina-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(1) saturate(1);
}

.jina-service-card:hover .jina-service-image {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
}

/* Badge Enhancement */
.jina-service-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding: 12px 30px;
    background: rgba( 105, 184, 112, 0.1);
    border: 1px solid rgba( 105, 184, 112, 0.2);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.jina-badge-text {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .jina-services-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .jina-services-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .jina-service-card-inner {
        padding: 25px 20px;
    }
    
    .jina-service-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .jina-service-btn {
        width: 100%;
        justify-content: center;
    }
    
    .jina-service-cta-section {
        padding: 50px 20px;
        margin: 20px 10px;
    }
    
    .jina-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .jina-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .jina-service-page-modern {
        padding: 30px 0;
    }
    
    .jina-service-hero-section {
        padding: 40px 0;
    }
    
    .jina-services-grid-section {
        padding: 40px 0;
    }
    
    .jina-service-image-wrapper {
        height: 200px;
    }
    
    .jina-service-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .jina-stat-number {
        font-size: 2.2rem;
    }
}


/* trang our service start */
/* ===== JINA SERVICE PAGE MODERN STYLES ===== */
.jina-service-page-modern {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, rgba( 105, 184, 112, 0.1) 50%, #ffffff 100%);
  overflow: hidden;
  padding: 60px 0;
}

/* Background System */
.jina-service-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.jina-service-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
      linear-gradient(rgba( 246, 137, 30, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba( 246, 137, 30, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: jina-grid-move 20s linear infinite;
}

.jina-service-geometry {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.jina-geo-element {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
}

.jina-geo-circle-1 {
  width: 120px;
  height: 120px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  top: 10%;
  right: 15%;
  animation: jina-float-geo 15s ease-in-out infinite;
}

.jina-geo-triangle-1 {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid var(--primary-color);
  top: 60%;
  left: 10%;
  animation: jina-float-geo 12s ease-in-out infinite reverse;
}

.jina-geo-hexagon-1 {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  bottom: 20%;
  right: 25%;
  animation: jina-rotate-geo 20s linear infinite;
}

.jina-geo-square-1 {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  transform: rotate(45deg);
  top: 30%;
  left: 80%;
  animation: jina-float-geo 18s ease-in-out infinite;
}

.jina-service-logistics-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.jina-logistics-route {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
      transparent 0%, 
      rgba( 105, 184, 112, 0.2) 25%, 
      rgba( 105, 184, 112, 0.4) 50%, 
      rgba( 105, 184, 112, 0.2) 75%, 
      transparent 100%);
  transform: translateY(-50%);
}

.jina-logistics-route::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
      transparent 0%, 
      rgba( 105, 184, 112, 0.8) 50%, 
      transparent 100%);
  animation: jina-route-flow 3s ease-in-out infinite;
}

.jina-service-gradient-overlay-1,
.jina-service-gradient-overlay-2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.jina-service-gradient-overlay-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: jina-gradient-pulse 10s ease-in-out infinite;
}

.jina-service-gradient-overlay-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation: jina-gradient-pulse 8s ease-in-out infinite reverse;
}

/* Hero Section */
.jina-service-hero-section {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  text-align: center;
}

.jina-service-badge {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding: 12px 30px;
  background: rgba(105, 184, 112, 0.05);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  overflow: hidden;
  /* box-shadow: 0 4px 15px var(--third-color); */
}

.jina-badge-text {
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jina-badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
      transparent 0%, 
      rgba( 246, 137, 30, 0.3) 50%, 
      transparent 100%);
  animation: jina-badge-shimmer 3s ease-in-out infinite;
}

.jina-service-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(230, 126, 34, 0.3);
}

.jina-title-line {
  display: inline-block;
  color: var(--primary-color);
  /* Gradient text cho browsers hỗ trợ */
  background: linear-gradient(135deg, 
      var(--primary-color) 0%, 
      var(--third-color) 50%,
      var(--primary-color) 100%);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
}

/* Fallback cho browsers không hỗ trợ gradient text */
@supports not (-webkit-background-clip: text) {
  .jina-title-line {
      color: var(--primary-color);
      background: none;
  }
}

.jina-service-subtitle {
  margin-bottom: 50px;
}

.jina-service-subtitle p {
  font-size: 1.2rem;
  color: #2c3e50;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

/* Stats Section */
.jina-service-stats {
  margin-top: 60px;
}

.jina-stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white-color);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba( 246, 137, 30, 0.1);
  transition: all 0.3s ease;
}

.jina-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba( 246, 137, 30, 0.15);
}

.jina-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb( 246, 137, 30);
  margin-bottom: 8px;
}

.jina-stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

/* Services Grid */
.jina-services-grid-section {
  position: relative;
  z-index: 10;
  padding: 80px 0;
}

.jina-services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.page-our-service .jina-service-card {
  position: relative;
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba( 246, 137, 30, 0.1);
  will-change: transform, opacity;
}

.page-our-service .jina-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba( 246, 137, 30, 0.2);
}

.page-our-service .jina-service-card-inner {
  position: relative;
  padding: 40px 30px;
  height: 100%;
}

.page-our-service .jina-service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  z-index: 5;
}

.jina-service-image-container {
  position: relative;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
}

.jina-service-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
}

.jina-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  /* NO TRANSITION - GSAP controlled */
}

.jina-service-card:hover .jina-service-image {
  transform: scale(1.1);
}

.jina-service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  will-change: opacity;
  /* NO TRANSITION - GSAP controlled */
}

.jina-service-card:hover .jina-service-image-overlay {
  opacity: 1;
}

.jina-service-zoom-icon {
  color: white;
  font-size: 2rem;
  transform: scale(0.5);
  will-change: transform;
  /* NO TRANSITION - GSAP controlled */
}

.jina-service-card:hover .jina-service-zoom-icon {
  transform: scale(1);
}

.jina-service-category-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  backdrop-filter: blur(10px);
}

.jina-service-content {
  flex: 1;
}

.jina-service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.jina-service-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.jina-service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.jina-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #6c757d;
}

.jina-feature-item i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.jina-service-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.jina-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.jina-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--third-color));
  color: white;
}

.jina-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--third-color);
  color: white;
}

.jina-btn-secondary {
  background: var(--third-color);
  color: var(--primary-color);
  border: 1px solid var(--third-color);
}

.jina-btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.jina-btn-icon {
  transition: transform 0.3s ease;
}

.jina-service-btn:hover .jina-btn-icon {
  transform: translateX(3px);
}

/* Card Decorations */
.jina-card-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.jina-card-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.jina-corner-tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.jina-corner-tr {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.jina-corner-bl {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.jina-corner-br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.jina-service-card:hover .jina-card-corner {
  opacity: 1;
}

/* CTA Section */
.jina-service-cta-section {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  background: var(--white-color);
  border-radius: 30px;
  margin: 40px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba( 246, 137, 30, 0.1);
  margin-bottom: 100px;
}

.jina-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.jina-cta-description {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.jina-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.jina-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.jina-cta-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--third-color));
  color: white;
}

.jina-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--third-color);
  color: white;
}

.jina-cta-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border: 2px solid var(--third-color);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.jina-cta-secondary:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--third-color);
}

/* Animations */
@keyframes jina-grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes jina-float-geo {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes jina-rotate-geo {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes jina-route-flow {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes jina-gradient-pulse {
  0%, 100% { opacity: 0.05; transform: scale(1); }
  50% { opacity: 0.1; transform: scale(1.1); }
}

@keyframes jina-badge-shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* trang our service end */

/* ========== SWIPER STYLES FOR SERVICES ========== */

/* Swiper Container Styles */
.jina-services-swiper-container {
    position: relative;
    padding: 60px 0;
    overflow: visible;
}

.jina-services-swiper {
    overflow: visible;
    padding-bottom: 30px;
}

.jina-services-swiper .swiper-wrapper {
    align-items: stretch;
}

.jina-services-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Service Card Updates for Swiper */
.page-our-service .jina-service-card {
    cursor: pointer;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.page-our-service .jina-service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.15);
}

.page-our-service .jina-service-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-our-service .jina-service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.jina-service-click-indicator {
    margin-top: auto;
    padding: 15px 0;
    text-align: center;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.jina-service-click-indicator i {
    margin-left: 8px;
    animation: pointBounce 2s infinite;
}

@keyframes pointBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Swiper Navigation Styles */
.jina-services-next,
.jina-services-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.jina-services-next:hover,
.jina-services-prev:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.4);
    background: linear-gradient(135deg, var(--third-color) 0%, var(--primary-color) 100%);
}

.jina-services-next {
    right: -15px;
}

.jina-services-prev {
    left: -15px;
}

.jina-services-next::after,
.jina-services-prev::after {
    display: none;
}

/* Swiper Pagination Styles */
.jina-services-pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.jina-services-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 140, 66, 0.3);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin: 0 6px;
    cursor: pointer;
}

.jina-services-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    border-color: rgba(255, 140, 66, 0.3);
    transform: scale(1.3);
}

/* ========== SERVICE POPUP STYLES ========== */

/* Service Popup Styles - Enhanced Fixed Positioning */
.jina-service-popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.jina-service-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when popup is active */
body.popup-open {
    overflow: hidden !important;
    /* position: fixed !important; */
    width: 100% !important;
}

.jina-service-popup {
    position: relative;
    max-width: 900px;
    width: 90%;
    max-height: 80vh;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.jina-service-popup-overlay.active .jina-service-popup {
    transform: scale(1) translateY(0);
}

.jina-popup-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jina-popup-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.jina-popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jina-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.jina-popup-body {
    padding: 40px 30px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    overflow-y: auto;
    max-height: 60vh;
}

.jina-popup-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.jina-popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jina-popup-image-container:hover .jina-popup-image {
    transform: scale(1.05);
}

.jina-popup-image-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
}

.jina-popup-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.jina-popup-description {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.jina-popup-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.jina-popup-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 140, 66, 0.1);
}

.jina-popup-feature:last-child {
    border-bottom: none;
}

.jina-popup-feature i {
    color: var(--primary-color);
    font-size: 18px;
    width: 20px;
}

.jina-popup-feature span {
    color: #333;
    font-weight: 500;
}

.jina-popup-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
    padding: 30px 20px 20px;
    border-top: 2px solid rgba(255, 140, 66, 0.15);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.03) 0%, rgba(255, 107, 26, 0.03) 100%);
    border-radius: 0 0 20px 20px;
    position: relative;
}

.jina-popup-actions::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
    border-radius: 0 0 3px 3px;
}

.jina-popup-btn {
    flex: 1;
    max-width: 220px;
    padding: 18px 15px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.jina-popup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.jina-popup-btn:hover::before {
    left: 100%;
}

.jina-popup-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.jina-popup-btn:hover::after {
    width: 300px;
    height: 300px;
}

.jina-popup-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.jina-popup-btn:hover i {
    transform: scale(1.2);
}

.jina-popup-contact {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.jina-popup-contact:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.jina-popup-contact:active {
    transform: translateY(-2px) scale(0.98);
}

.jina-popup-quote {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.jina-popup-quote:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.jina-popup-quote:active {
    transform: translateY(-2px) scale(0.98);
}

/* Popup Decorations */
.jina-popup-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.jina-popup-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(255, 107, 26, 0.1) 100%);
}

.jina-popup-dec-1 {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
    animation: floatDecoration 6s ease-in-out infinite;
}

.jina-popup-dec-2 {
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: 20%;
    animation: floatDecoration 8s ease-in-out infinite reverse;
}

.jina-popup-dec-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: -40px;
    animation: floatDecoration 7s ease-in-out infinite;
}

@keyframes floatDecoration {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ========== QUOTE POPUP STYLES ========== */

/* Quote Popup Overlay */
.jina-quote-popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0 !important;
    padding: 20px !important;
    overflow-y: auto;
}

.jina-quote-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Quote Popup Container */
.jina-quote-popup {
    position: relative;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin: auto;
}

.jina-quote-popup-overlay.active .jina-quote-popup {
    transform: scale(1) translateY(0);
}

/* Quote Header */
.jina-quote-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.jina-quote-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.jina-quote-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.jina-quote-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(10px);
}

.jina-quote-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.jina-quote-subtitle {
    font-size: 16px;
    margin: 5px 0 0 0;
    opacity: 0.9;
}

.jina-quote-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.jina-quote-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Quote Body */
.jina-quote-body {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

/* Remove old grid styles - now using Bootstrap grid */

.jina-quote-section {
    background: rgba(255, 140, 66, 0.03);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.jina-message-section {
    grid-column: 1 / -1;
}

.jina-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 140, 66, 0.2);
}

.jina-section-title i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Remove old form row styles - now using Bootstrap grid */

.jina-form-group {
    display: flex;
    flex-direction: column;
}

.jina-form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.jina-form-group input,
.jina-form-group select,
.jina-form-group textarea {
    padding: 15px;
    border: 2px solid rgba(255, 140, 66, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    outline: none;
}

.jina-form-group input:focus,
.jina-form-group select:focus,
.jina-form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
    transform: translateY(-2px);
}

.jina-form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* Quote Actions */
.jina-quote-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 140, 66, 0.1);
}

.jina-quote-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
}

.jina-quote-cancel {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 2px solid rgba(108, 117, 125, 0.2);
}

.jina-quote-cancel:hover {
    background: rgba(108, 117, 125, 0.2);
    transform: translateY(-2px);
}

.jina-quote-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.jina-quote-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.jina-quote-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.jina-quote-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

/* Loading State */
.jina-quote-loading {
    display: none;
    text-align: center;
    padding: 60px 40px;
    color: #666;
}

.jina-quote-loading.active {
    display: block;
}

.jina-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 140, 66, 0.2);
    border-left: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* Success State */
.jina-quote-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    color: #333;
}

.jina-quote-success.active {
    display: block;
}

.jina-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 20px;
    animation: successBounce 0.6s ease-out;
}

.jina-quote-success h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #28a745;
}

.jina-quote-success p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

/* Quote Decorations */
.jina-quote-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.jina-quote-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(255, 107, 26, 0.08) 100%);
}

.jina-quote-dec-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
    animation: floatDecoration 8s ease-in-out infinite;
}

.jina-quote-dec-2 {
    width: 80px;
    height: 80px;
    bottom: -40px;
    right: 15%;
    animation: floatDecoration 10s ease-in-out infinite reverse;
}

.jina-quote-dec-3 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: -50px;
    animation: floatDecoration 9s ease-in-out infinite;
}

/* Animations */
@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.jina-title-line {
  opacity: 0;
}

/* ================================================
   JINA CONTACT PAGE - MODERN LOGISTICS DESIGN
   ================================================ */

/* Contact Page Wrapper */
.jina-contact-page-wrapper {
    position: relative;
    /* NO TRANSITION - GSAP controlled */
}
.lien-he .jina-feature-icon-wrapper img {
  filter: grayscale(100%) brightness(100%) invert(1) ;
  -webkit-filter: grayscale(100%) brightness(100%) invert(1) ;
}
/* Hero Section */
.jina-contact-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(246, 137, 30, 0.08) 0%, 
        rgba(246, 137, 30, 0.15) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    overflow: hidden;
    will-change: transform;
}

/* Background Container */
.jina-contact-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Background Patterns */
.jina-contact-bg-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Route Network */
.jina-contact-route-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jina-contact-route-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(246, 137, 30, 0.4) 20%, 
        rgba(246, 137, 30, 0.8) 50%, 
        rgba(246, 137, 30, 0.4) 80%, 
        transparent);
    will-change: transform;
    /* NO TRANSITION - GSAP controlled */
}

.jina-route-line-1 {
    top: 20%;
    left: 0;
    width: 60%;
    transform: rotate(15deg);
}

.jina-route-line-2 {
    top: 60%;
    right: 0;
    width: 70%;
    transform: rotate(-10deg);
}

.jina-route-line-3 {
    bottom: 30%;
    left: 20%;
    width: 50%;
    transform: rotate(25deg);
}

/* Container Shapes */
.jina-contact-containers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jina-contact-container {
    position: absolute;
    width: 40px;
    height: 25px;
    background: linear-gradient(135deg, 
        rgba(246, 137, 30, 0.6), 
        rgba(246, 137, 30, 0.3));
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(246, 137, 30, 0.2);
    will-change: transform;
    /* NO TRANSITION - GSAP controlled */
}

.jina-container-1 {
    top: 15%;
    left: 25%;
}

.jina-container-2 {
    top: 45%;
    right: 30%;
}

.jina-container-3 {
    bottom: 25%;
    left: 60%;
}

/* Floating Icons */
.jina-contact-logistics-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jina-contact-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(246, 137, 30, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 137, 30, 0.2);
    will-change: transform;
    /* NO TRANSITION - GSAP controlled */
}

.jina-contact-icon i {
    font-size: 24px;
    color: rgb(var(--primary-color));
}

.jina-icon-1 { top: 10%; right: 20%; }
.jina-icon-2 { top: 70%; left: 10%; }
.jina-icon-3 { top: 30%; left: 70%; }
.jina-icon-4 { bottom: 15%; right: 60%; }

/* Geometric Elements */
.jina-contact-geo-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jina-contact-geo {
    position: absolute;
    background: rgba(246, 137, 30, 0.1);
    border: 2px solid rgba(246, 137, 30, 0.3);
    will-change: transform;
    /* NO TRANSITION - GSAP controlled */
}

.jina-geo-hexagon {
    width: 80px;
    height: 80px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    top: 25%;
    right: 15%;
}

.jina-geo-triangle {
    width: 60px;
    height: 60px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 40%;
    left: 20%;
}

.jina-geo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 60%;
    right: 40%;
}

/* Hero Content */
.jina-contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--third-color));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 15px 35px rgba(246, 137, 30, 0.3);
    margin-bottom: 30px;
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-contact-hero-badge i {
    font-size: 1.2rem;
}

.jina-contact-hero-title {
  font-size: clamp(2rem, 1.5385rem + 2.3077vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-title-main {
    display: block;
    color: var(--dark-color);
    overflow: hidden;
}

.jina-title-highlight {
    display: block;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--third-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jina-contact-hero-description {
    margin-bottom: 40px;
}

.jina-hero-desc-main {
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

/* Quick Stats */
.jina-contact-quick-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.jina-quick-stat {
    text-align: center;
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.jina-stat-label {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Features Section */
.jina-contact-features-section {
    padding: 80px 0;
    background: var(--white-color);
}

.jina-contact-feature-card {
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-feature-card-inner {
    background: var(--white-color);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(246, 137, 30, 0.08);
    border: 1px solid rgba(246, 137, 30, 0.1);
    position: relative;
    overflow: hidden;
}

.jina-feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.jina-feature-icon-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.jina-feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, 
        rgba(246, 137, 30, 0.3), 
        transparent 70%);
    border-radius: 50%;
    opacity: 0;
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-feature-title {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.jina-feature-decoration {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--third-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Main Contact Section */
.jina-contact-main-section {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Contact Info */
.jina-contact-info-wrapper {
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

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

.jina-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(246, 137, 30, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.jina-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.jina-info-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--third-color));
    border-radius: 2px;
}

/* Contact Cards */
.jina-contact-cards-container {
    margin-bottom: 50px;
}

.jina-contact-info-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(246, 137, 30, 0.1);
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.jina-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 137, 30, 0.1);
    border-radius: 12px;
}

.jina-card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.jina-card-title {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

.jina-card-content {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.jina-card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--third-color));
}

.jina-card-dot {
    position: absolute;
    right: 20px;
    bottom: -2px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Contact Methods */
.jina-contact-methods {
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-methods-title {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.jina-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.jina-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: var(--white-color);
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    /* NO TRANSITION - GSAP controlled */
}

.jina-method-item:hover {
    border-color: rgba(246, 137, 30, 0.3);
    text-decoration: none;
}

.jina-method-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.jina-method-item span {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Contact Form Wrapper */
.jina-contact-form-wrapper {
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-form-header {
    margin-bottom: 40px;
}

.jina-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(246, 137, 30, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.jina-form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.jina-form-description {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Contact Form */
.jina-contact-form {
    background: var(--white-color);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(246, 137, 30, 0.1);
}

.jina-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.jina-form-group {
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-group-half {
    grid-column: span 1;
}

.jina-group-full {
    grid-column: span 2;
}

/* Input Wrappers */
.jina-input-wrapper,
.jina-textarea-wrapper,
.jina-select-wrapper {
    position: relative;
}

.jina-form-input,
.jina-form-textarea,
.jina-form-select {
    width: 100%;
    padding: 18px 50px 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    background: #f8f9fa;
    color: var(--dark-color);
    outline: none;
    /* NO TRANSITION - GSAP controlled */
}

.jina-form-input:focus,
.jina-form-textarea:focus,
.jina-form-select:focus {
    border-color: rgba(246, 137, 30, 0.5);
    background: var(--white-color);
}

.jina-form-label,
.jina-textarea-label,
.jina-select-label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #6c757d;
    font-weight: 500;
    pointer-events: none;
    /* NO TRANSITION - GSAP controlled */
}

.jina-form-input:focus + .jina-form-label,
.jina-form-input:not(:placeholder-shown) + .jina-form-label,
.jina-form-textarea:focus + .jina-textarea-label,
.jina-form-textarea:not(:placeholder-shown) + .jina-textarea-label,
.jina-form-select:focus + .jina-select-label,
.jina-form-select:not([value=""]) + .jina-select-label {
    /* transform: translateY(-35px) scale(0.85);
    color: rgb(var(--primary-color)); */
}

.jina-required {
    color: #e74c3c;
}

/* Input Lines */
.jina-input-line,
.jina-textarea-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--primary-color);
    border-radius: 1px;
    will-change: width;
    /* NO TRANSITION - GSAP controlled */
}

/* Input Icons */
.jina-input-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
    will-change: color, transform;
    /* NO TRANSITION - GSAP controlled */
}

/* Select Arrow */
.jina-select-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

/* Character Counter */
.jina-character-count {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.8rem;
    color: #999;
}

.jina-char-current {
    font-weight: 600;
    color: #27ae60;
}

/* Error States */
.jina-error {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.05) !important;
}

.jina-field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Form Actions */
.jina-form-actions {
    margin-top: 30px;
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: none;
    border: none;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 20px;
    will-change: transform;
    /* NO TRANSITION - GSAP controlled */
}

.jina-btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--third-color));
    border-radius: 60px;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(246, 137, 30, 0.3);
    will-change: transform;
    /* NO TRANSITION - GSAP controlled */
}

.jina-btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    color: white;
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}
.page-our-service .jina-cta-btn.jina-cta-secondary .jina-btn-content {
  color: var(--primary-color);
}
.jina-btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.jina-form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.jina-form-privacy i {
    color: #27ae60;
    margin-top: 2px;
}

/* CTA Section */
.jina-contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(246, 137, 30, 0.05) 0%, 
        rgba(246, 137, 30, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.jina-cta-content {
    position: relative;
    z-index: 2;
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.jina-cta-logistics-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(246, 137, 30, 0.3) 20%, 
        rgba(246, 137, 30, 0.6) 50%, 
        rgba(246, 137, 30, 0.3) 80%, 
        transparent);
    transform: translateY(-50%);
    border-radius: 2px;
}

.jina-cta-trucks {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 20px;
}

.jina-cta-truck {
    position: absolute;
    width: 40px;
    height: 20px;
    background: rgba(246, 137, 30, 0.4);
    border-radius: 4px 8px 8px 4px;
    animation: truck-move 15s linear infinite;
}

.jina-truck-1 {
    top: -30px;
    animation-delay: 0s;
}

.jina-truck-2 {
    top: 30px;
    animation-delay: -7s;
}

@keyframes truck-move {
    0% { left: -50px; }
    100% { left: calc(100% + 50px); }
}

.jina-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.jina-cta-description {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.jina-cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.jina-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    /* NO TRANSITION - GSAP controlled */
}

.jina-btn-primary {
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--third-color));
    color: white;
    box-shadow: 0 10px 25px rgba(246, 137, 30, 0.3);
}

.jina-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
      color: var(--primary-color);
    border: 2px solid rgba(246, 137, 30, 0.2);
    backdrop-filter: blur(10px);
}

/* Contact Popups */
.jina-contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    /* NO TRANSITION - GSAP controlled */
}

.jina-contact-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.jina-contact-popup {
    background: var(--white-color);
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    will-change: transform, opacity;
    /* NO TRANSITION - GSAP controlled */
}

.jina-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    z-index: 10;
    /* NO TRANSITION - GSAP controlled */
}

.jina-popup-close:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.jina-popup-header {
    text-align: center;
    padding: 40px 40px 20px;
    border-bottom: 1px solid #eee;
}

.jina-popup-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.3);
}

.jina-error-popup .jina-popup-success-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 15px 30px rgba(231, 76, 60, 0.3);
}

.jina-popup-success-icon i {
    font-size: 2rem;
    color: white;
}

.jina-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.jina-popup-subtitle {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.jina-popup-content {
    padding: 30px 40px;
}

.jina-popup-message {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.jina-popup-tracking {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.jina-tracking-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.jina-tracking-row:last-child {
    margin-bottom: 0;
}

.jina-tracking-label {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.jina-tracking-value {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.jina-popup-actions {
    padding: 20px 40px 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.jina-popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    /* NO TRANSITION - GSAP controlled */
}

/* Responsive Design */
@media (max-width: 768px) {
    .jina-contact-hero-title {
        font-size: 2.5rem;
    }
    
    .jina-hero-desc-main {
        font-size: 1.1rem;
    }
    
    .jina-contact-quick-stats {
        gap: 25px;
    }
    
    .jina-stat-number {
        font-size: 2rem;
    }
    
    .jina-form-grid {
        grid-template-columns: 1fr;
    }
    
    .jina-group-half,
    .jina-group-full {
        grid-column: span 1;
    }
    
    .jina-contact-form {
        padding: 30px 25px;
    }
    
    .jina-info-title {
        font-size: 2rem;
    }
    
    .jina-form-title {
        font-size: 1.8rem;
    }
    
    .jina-cta-title {
        font-size: 1.8rem;
    }
    
    .jina-cta-actions {
        justify-content: center;
    }
    
    .jina-methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .jina-contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .jina-contact-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .jina-contact-hero-title {
        font-size: 2rem;
    }
    
    .jina-hero-desc-main {
        font-size: 1rem;
    }
    
    .jina-contact-quick-stats {
        gap: 20px;
    }
    
    .jina-stat-number {
        font-size: 1.8rem;
    }
    
    .jina-contact-hero-section {
        min-height: 60vh;
    }
    
    .jina-contact-main-section {
        padding: 60px 0;
    }
    
    .jina-contact-cta-section {
        padding: 60px 0;
    }
    
    .jina-contact-features-section {
        padding: 60px 0;
    }
    
    .jina-contact-form {
        padding: 25px 20px;
    }
    
    .jina-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .jina-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .jina-contact-popup {
        margin: 20px;
    }
    
    .jina-popup-header,
    .jina-popup-content {
        padding-left: 25px;
        padding-right: 25px;
    }
}
.index .jina-impressive-numbers-section .jina-section-title {
  color: var(--white-color);
  text-align: center;
  justify-content: center;
}

/* ==============================================
   JINA CONTACT PAGE - MODERN DESIGN
   ============================================== */

/* Contact Page Wrapper */
.jina-contact-page-wrapper {
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.jina-contact-hero-section {
    min-height: calc(100vh - 100px);
    position: relative;
    display: flex;
    align-items: center;
    background-image: var(--background-contact);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
}
.jina-contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}
.jina-contact-hero-section .container {
  position: relative;
  z-index: 2;
}

/* Background Patterns */
.jina-contact-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.jina-contact-bg-patterns {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Route Network */
.jina-contact-route-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jina-contact-route-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    /* NO TRANSITION - GSAP controlled */
}

.jina-route-line-1 {
  display: none;
    top: 20%;
    left: 0;
    width: 80%;
    transform: rotate(15deg);
}

.jina-route-line-2 {
    top: 60%;
    right: 0;
    width: 70%;
    transform: rotate(-10deg);
}

.jina-route-line-3 {
    bottom: 30%;
    left: 10%;
    width: 60%;
    transform: rotate(25deg);
}

/* Containers */
.jina-contact-containers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jina-contact-container {
    position: absolute;
    width: 40px;
    height: 25px;
    background: var(--primary-color);
    border-radius: 3px;
    /* NO TRANSITION - GSAP controlled */
}

.jina-container-1 {
    top: 15%;
    left: 20%;
}

.jina-container-2 {
    top: 40%;
    right: 25%;
}

.jina-container-3 {
    bottom: 25%;
    left: 60%;
}

/* Logistics Icons */
.jina-contact-logistics-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jina-contact-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(246, 137, 30, 0.1);
    border: 2px solid rgba(246, 137, 30, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* NO TRANSITION - GSAP controlled */
}

.jina-contact-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.jina-icon-1 { top: 10%; right: 20%; }
.jina-icon-2 { top: 70%; left: 10%; }
.jina-icon-3 { top: 30%; left: 70%; }
.jina-icon-4 { bottom: 15%; right: 60%; }

/* Geometric Elements */
.jina-contact-geo-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jina-contact-geo {
    position: absolute;
    opacity: 0.1;
    /* NO TRANSITION - GSAP controlled */
}

.jina-geo-hexagon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    top: 25%;
    left: 80%;
}

.jina-geo-triangle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 20%;
    left: 15%;
}

.jina-geo-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    border-radius: 50%;
    top: 50%;
    right: 10%;
}

/* Hero Content */
.jina-contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(246, 137, 30, 0.15);
    border: 1px solid rgba(246, 137, 30, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    /* NO TRANSITION - GSAP controlled */
}

.jina-contact-hero-badge i {
    color: var(--primary-color);
}

.jina-contact-hero-title {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.jina-title-main {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    /* NO TRANSITION - GSAP controlled */
}

.jina-title-highlight {
    color: var(--primary-color);
    position: relative;
}

.jina-contact-hero-description {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.jina-hero-desc-main {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    /* NO TRANSITION - GSAP controlled */
}

/* Quick Stats */
.jina-contact-quick-stats {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.jina-quick-stat {
    text-align: center;
    /* NO TRANSITION - GSAP controlled */
}

.jina-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.jina-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Features Section */
.jina-contact-features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.jina-contact-feature-card {
    text-align: center;
    /* NO TRANSITION - GSAP controlled */
}

.jina-feature-card-inner {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.jina-feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.jina-feature-icon-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.jina-feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(246, 137, 30, 0.2), transparent);
    border-radius: 50%;
    z-index: -1;
}

.lien-he .jina-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.jina-feature-decoration {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

/* Main Contact Section */
.jina-contact-main-section {
    padding: 100px 0;
    background: white;
}

/* Contact Info */
.jina-contact-info-wrapper {
    position: relative;
}

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

.jina-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 137, 30, 0.1);
    border: 1px solid rgba(246, 137, 30, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.jina-info-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.jina-info-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #e57a1a);
    border-radius: 2px;
}

/* Contact Cards */
.jina-contact-cards-container {
    margin-bottom: 40px;
}

.jina-contact-info-card {
    background: white;
    border: 2px solid #f1f3f4;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    /* NO TRANSITION - GSAP controlled */
}

.jina-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.jina-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(246, 137, 30, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jina-card-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.jina-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.jina-card-content {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.jina-card-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.jina-card-dot {
    width: 8px;
    height: 8px;
    background: rgba(246, 137, 30, 0.3);
    border-radius: 50%;
}

/* Contact Methods */
.jina-contact-methods {
    /* NO additional styles needed for container */
}

.jina-methods-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.jina-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.jina-method-item {
    background: white;
    border: 2px solid #f1f3f4;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    /* NO TRANSITION - GSAP controlled */
}

.jina-method-item:hover {
    border-color: var(--primary-color);
    background: rgba(246, 137, 30, 0.05);
}

.jina-method-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.jina-method-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Contact Form */
.jina-contact-form-wrapper {
    position: relative;
}

.jina-form-header {
    margin-bottom: 40px;
}

.jina-form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 137, 30, 0.1);
    border: 1px solid rgba(246, 137, 30, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.jina-form-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.jina-form-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Form */
.jina-contact-form {
    background: white;
    border: 2px solid #f1f3f4;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.jina-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.jina-form-group {
    position: relative;
    /* NO TRANSITION - GSAP controlled */
}

.jina-group-half {
    grid-column: span 1;
}

.jina-group-full {
    grid-column: span 2;
}

.jina-input-wrapper,
.jina-textarea-wrapper {
    position: relative;
}

.jina-form-input,
.jina-form-textarea {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: #fafafa;
    /* NO TRANSITION - GSAP controlled */
}

.jina-form-input:focus,
.jina-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(246, 137, 30, 0.1);
}

.jina-form-label,
.jina-textarea-label {
    position: absolute;
    top: 18px;
    left: 50px;
    color: #999;
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    /* NO TRANSITION - GSAP controlled */
}

.jina-form-input:focus + .jina-form-label,
.jina-form-input:valid + .jina-form-label,
.jina-form-textarea:focus + .jina-textarea-label,
.jina-form-textarea:valid + .jina-textarea-label {
    top: -12px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
    background: white;
    padding: 0 8px;
}

.jina-required {
    color: #dc3545;
}

.jina-input-line,
.jina-textarea-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    /* NO TRANSITION - GSAP controlled */
}

.jina-input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
    pointer-events: none;
}

.jina-select-arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
    pointer-events: none;
}

.jina-character-count {
    position: absolute;
    bottom: -25px;
    right: 0;
    font-size: 0.8rem;
    color: #999;
}

.jina-char-current {
    color: var(--primary-color);
    font-weight: 600;
}

.jina-error {
    color: #dc3545;
}

.jina-field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Form Actions */
.jina-form-actions {
    margin-top: 40px;
    text-align: center;
}

.jina-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 25px;
    /* NO TRANSITION - GSAP controlled */
}

.jina-btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e57a1a 100%);
    border-radius: 25px;
    /* NO TRANSITION - GSAP controlled */
}

.jina-btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.jina-btn-loading {
    display: none;
}

.jina-loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Form Privacy */
.jina-form-privacy {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    justify-content: center;
}

.jina-form-privacy i {
    color: var(--primary-color);
}

/* CTA Section */
.jina-contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.jina-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.jina-cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.jina-cta-logistics-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateY(-50%);
}

.jina-cta-trucks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jina-cta-truck {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 60px;
    height: 30px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.jina-truck-1 {
    /* Uses base styles */
}

.jina-truck-2 {
    /* Uses base styles */
}

@keyframes truck-move {
    from { transform: translateX(-100px) translateY(-50%); }
    to { transform: translateX(calc(100vw + 100px)) translateY(-50%); }
}

.jina-cta-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.jina-cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.jina-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.jina-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.jina-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e57a1a 100%);
    color: white;
}

.jina-btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Success/Error Popup */
.jina-contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.jina-contact-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.jina-contact-popup {
    background: white;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.jina-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.jina-popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: var(--dark-color);
}

.jina-popup-header {
    text-align: center;
    padding: 40px 40px 20px;
}

.jina-popup-success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.jina-error-popup .jina-popup-success-icon {
    background: #dc3545;
}

.jina-popup-success-icon i {
    font-size: 2rem;
    color: white;
}

/* Loading state for form */
.jina-form-loading .jina-btn-content span,
.jina-form-loading .jina-btn-content i {
    display: none;
}

.jina-form-loading .jina-btn-loading {
    display: block;
}

/* Body scroll lock */
body.popup-open {
    overflow: hidden;
}

/* Animation Keyframes */
@keyframes spin {
    to { transform: rotate(360deg); }
}
.lien-he .jina-form-group .jina-select-wrapper label {
  display: none;
}
.lien-he .jina-form-group input {
  padding-left: 50px;
}
/* ===============================================
   FAQ PAGE MODERN DESIGN - LOGISTICS THEME
   =============================================== */

/* FAQ Page Container */
.page-faq {
    overflow-x: hidden;
    position: relative;
}

/* FAQ Hero Section */
.page-faq-hero-section {
    min-height: 70vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-faq-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-faq-bg-logistics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

/* Container Shapes Animation */
.page-faq-container-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-faq-container-shape {
    position: absolute;
    width: 60px;
    height: 35px;
    background: linear-gradient(45deg, var(--primary-color), #e57a1a);
    border-radius: 4px;
}

.page-faq-container-1 {
    top: 15%;
    left: 10%;
}

.page-faq-container-2 {
    top: 60%;
    right: 15%;
}

.page-faq-container-3 {
    bottom: 20%;
    left: 20%;
}

/* Truck Routes */
.page-faq-truck-routes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-faq-route-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.page-faq-route-1 {
    top: 25%;
    left: 0;
    width: 40%;
}

.page-faq-route-2 {
    top: 55%;
    right: 0;
    width: 35%;
}

.page-faq-route-3 {
    bottom: 30%;
    left: 30%;
    width: 50%;
}

/* Floating Icons */
.page-faq-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-faq-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.page-faq-icon-1 { top: 20%; right: 25%; }
.page-faq-icon-2 { top: 65%; left: 15%; }
.page-faq-icon-3 { bottom: 25%; right: 10%; }
.page-faq-icon-4 { top: 40%; left: 5%; }

/* Hero Content */
.page-faq-hero-content {
    position: relative;
    z-index: 2;
}

.page-faq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.page-faq-hero-badge i {
    font-size: 1.1rem;
}

.page-faq-hero-title {
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-faq-title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.page-faq-title-highlight {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #e57a1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-faq-hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Hero Stats */
.page-faq-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.page-faq-stat-item {
    text-align: center;
}

.page-faq-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.page-faq-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Visual */
.page-faq-hero-visual {
    position: relative;
    z-index: 2;
}

.page-faq-visual-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.page-faq-hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Question Bubbles */
.page-faq-question-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.page-faq-bubble {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #e57a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.page-faq-bubble-1 {
    top: 10%;
    right: 15%;
}

.page-faq-bubble-2 {
    top: 50%;
    left: 10%;
}

.page-faq-bubble-3 {
    bottom: 20%;
    right: 20%;
}

/* Support Indicators */
.page-faq-support-indicators {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-faq-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.page-faq-indicator-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* FAQ Content Section */
.page-faq-content-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

/* Search Box */
.page-faq-search-box {
    margin-bottom: 60px;
}

.page-faq-search-input-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.page-faq-search-input {
    width: 100%;
    padding: 18px 60px 18px 55px;
    font-size: 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-faq-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 30px rgba(255, 107, 0, 0.15);
}

.page-faq-search-input::placeholder {
    color: #94a3b8;
}

.page-faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
}

.page-faq-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

.page-faq-quick-search {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-faq-quick-tag {
    padding: 8px 16px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
}

.page-faq-quick-tag:hover {
    background: var(--primary-color);
    color: white;
}

/* FAQ Accordion */
.page-faq-accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq-accordion-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.page-faq-accordion-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-faq-accordion-header {
    position: relative;
}

.page-faq-accordion-button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-faq-accordion-button:focus {
    outline: none;
}

.page-faq-question-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.page-faq-question-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #e57a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.page-faq-question-content {
    flex: 1;
    position: relative;
}

.page-faq-question-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.page-faq-question-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 10px;
}

.page-faq-toggle-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
}

.page-faq-accordion-button[aria-expanded="true"] .page-faq-toggle-icon {
    background: var(--primary-color);
    color: white;
}

.page-faq-accordion-collapse {
    /* NO TRANSITION - Bootstrap handles this */
}

.page-faq-accordion-body {
    padding: 0 30px 30px 30px;
}

.page-faq-answer-content {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
}

.page-faq-answer-content p {
    margin-bottom: 15px;
}

.page-faq-answer-content ul,
.page-faq-answer-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-faq-answer-content li {
    margin-bottom: 8px;
}

/* Answer Actions */
.page-faq-answer-actions {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.page-faq-helpful-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.page-faq-helpful-text {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.page-faq-helpful-buttons {
    display: flex;
    gap: 10px;
}

.page-faq-helpful-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
}

.page-faq-helpful-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-faq-helpful-yes:hover {
    background: #10b981;
    border-color: #10b981;
}

.page-faq-helpful-no:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.page-faq-thank-you {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ CTA Section */
.page-faq-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.page-faq-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-faq-cta-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 0, 0.06) 0%, transparent 50%);
}

.page-faq-cta-content {
    position: relative;
    z-index: 2;
}

.page-faq-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-faq-cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.page-faq-cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.page-faq-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e57a1a 100%);
    color: white;
    border-color: var(--primary-color);
}

.page-faq-btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.page-faq-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-faq-hero-section {
        min-height: 60vh;
        text-align: center;
    }
    
    .page-faq-title-main {
        font-size: 2.5rem;
    }
    
    .page-faq-title-highlight {
        font-size: 1.8rem;
    }
    
    .page-faq-hero-description {
        font-size: 1.1rem;
    }
    
    .page-faq-hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .page-faq-stat-number {
        font-size: 2rem;
    }
    
    .page-faq-support-indicators {
        position: static;
        transform: none;
        margin-top: 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .page-faq-content-section {
        padding: 60px 0;
    }
    
    .page-faq-search-input {
        padding: 15px 50px 15px 45px;
        font-size: 1rem;
    }
    
    .page-faq-accordion-button {
        padding: 20px;
    }
    
    .page-faq-question-wrapper {
        gap: 15px;
    }
    
    .page-faq-question-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .page-faq-question-title {
        font-size: 1.1rem;
    }
    
    .page-faq-accordion-body {
        padding: 0 20px 25px 20px;
    }
    
    .page-faq-helpful-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .page-faq-cta-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .page-faq-cta-title {
        font-size: 2rem;
    }
    
    .page-faq-cta-description {
        font-size: 1rem;
    }
    
    .page-faq-cta-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .page-faq-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-faq-hero-section {
        min-height: 50vh;
    }
    
    .page-faq-container-shape,
    .page-faq-icon {
        display: none;
    }
    
    .page-faq-hero-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .page-faq-search-box {
        margin-bottom: 40px;
    }
    
    .page-faq-quick-search {
        flex-direction: column;
        align-items: center;
    }
    
    .page-faq-quick-tag {
        min-width: 120px;
        text-align: center;
    }
    
    .page-faq-accordion-item {
        margin-bottom: 15px;
    }
    
    .page-faq-question-number {
        position: static;
        margin-left: 10px;
    }
    
    .page-faq-cta-actions {
        gap: 15px;
    }
}

/* Accessibility & Print Styles */
@media (prefers-reduced-motion: reduce) {
    .page-faq * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .page-faq-hero-section,
    .page-faq-cta-section,
    .page-faq-search-box,
    .page-faq-answer-actions {
        display: none;
    }
    
    .page-faq-content-section {
        padding: 0;
    }
    
    .page-faq-accordion-item {
        box-shadow: none;
        border: 1px solid #e2e8f0;
        page-break-inside: avoid;
    }
    
    .page-faq-accordion-collapse {
        display: block !important;
    }
}

.lien-he .jina-contact-hero-title, .lien-he .jina-hero-desc-main, .jina-quick-stat {
  opacity: 0;
}

/* =====================================================
   JINA SEARCH BOX & RESULTS - MODERN DESIGN
   ===================================================== */

/* Search Container */
.jina-search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.jina-search-container.active .jina-search-results {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

/* Search Input Wrapper */
.jina-search-input-wrapper {
    position: relative;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.jina-search-input-wrapper:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.jina-search-input-wrapper.focused {
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 3px rgba(246, 137, 30, 0.1),
        0 4px 20px rgba(246, 137, 30, 0.15);
}

.jina-search-input-wrapper.searching {
    border-color: var(--primary-color);
}

/* Search Input */
.jina-search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 12px 50px 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    background: transparent;
    transition: all 0.3s ease;
}

.jina-search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.jina-search-input:focus::placeholder {
    color: #d1d5db;
}

/* Search Button */
.jina-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: none;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    font-size: 14px;
}

.jina-search-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px var(--third-color);
}

.jina-search-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Loading Spinner */
.jina-search-loading {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: jina-search-spin 1s linear infinite;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.jina-search-loading.active {
    opacity: 1;
    visibility: visible;
}

@keyframes jina-search-spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Search Results Container */
.jina-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    z-index: 9999;
    margin-top: 8px;
    max-height: 500px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.jina-search-results::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    transform: rotate(45deg);
    z-index: -1;
}

/* Search Results Header */
.jina-search-results-header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid #f3f4f6;
    background: #fafafa;
    border-radius: 16px 16px 0 0;
}

.jina-search-results-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.jina-search-results-title i {
    color: var(--primary-color);
    font-size: 16px;
}

.jina-search-results-count {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
    margin-top: 4px;
}

/* Search Results Body */
.jina-search-results-body {
    max-height: 400px;
    overflow-y: auto;
    padding: 8px 0;
}

/* Custom Scrollbar */
.jina-search-results-body::-webkit-scrollbar {
    width: 6px;
}

.jina-search-results-body::-webkit-scrollbar-track {
    background: #f9fafb;
    border-radius: 3px;
}

.jina-search-results-body::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.jina-search-results-body::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Search Section */
.jina-search-section {
    margin-bottom: 8px;
}

.jina-search-section:last-child {
    margin-bottom: 0;
}

.jina-search-section-title {
    padding: 12px 20px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    z-index: 10;
}

.jina-search-section:first-child .jina-search-section-title {
    border-top: none;
    background: transparent;
}

/* Search Item */
.jina-search-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.jina-search-item:hover {
    background: #f9fafb;
    border-left-color: var(--primary-color);
    color: #111827;
    transform: translateX(2px);
}

.jina-search-item:active {
    background: #f3f4f6;
    transform: translateX(1px);
}

/* Search Item Image */
.jina-search-item-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
    margin-right: 12px;
    position: relative;
}

.jina-search-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jina-search-item:hover .jina-search-item-image img {
    transform: scale(1.05);
}

.jina-search-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(246, 137, 30, 0.1), rgba(230, 126, 34, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jina-search-item:hover .jina-search-item-image::after {
    opacity: 1;
}

/* Search Item Content */
.jina-search-item-content {
    flex: 1;
    min-width: 0;
}

.jina-search-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jina-search-item:hover .jina-search-item-title {
    color: var(--primary-color);
}

.jina-search-item-description {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Search Item Icon */
.jina-search-item-icon {
    width: 24px;
    height: 24px;
    background: rgba(246, 137, 30, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.jina-search-item-icon i {
    font-size: 12px;
    color: var(--primary-color);
}

.jina-search-item:hover .jina-search-item-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.jina-search-item:hover .jina-search-item-icon i {
    color: #ffffff;
}

/* No Results */
.jina-search-no-results {
    padding: 40px 20px;
    text-align: center;
    color: #6b7280;
}

.jina-search-no-results-icon {
    width: 64px;
    height: 64px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.jina-search-no-results-icon i {
    font-size: 24px;
    color: #9ca3af;
}

.jina-search-no-results-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px;
}

.jina-search-no-results-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Search Results Footer */
.jina-search-results-footer {
    padding: 12px 20px;
    border-top: 1px solid #f3f4f6;
    background: #fafafa;
    border-radius: 0 0 16px 16px;
}

.jina-search-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jina-search-view-all:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--third-color);
}

.jina-search-view-all i {
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .jina-search-container {
        max-width: 100%;
    }
    
    .jina-search-results {
        left: -10px;
        right: -10px;
        margin-top: 12px;
        border-radius: 12px;
        max-height: 400px;
    }
    
    .jina-search-results::before {
        left: 30px;
    }
    
    .jina-search-item {
        padding: 10px 16px;
    }
    
    .jina-search-item-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .jina-search-item-title {
        font-size: 13px;
    }
    
    .jina-search-item-description {
        font-size: 11px;
    }
    
    .jina-search-results-header {
        padding: 12px 16px 8px;
    }
    
    .jina-search-results-footer {
        padding: 10px 16px;
    }
    
    .jina-search-section-title {
        padding: 8px 16px 6px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .jina-search-results {
        left: -15px;
        right: -15px;
        max-height: 350px;
    }
    
    .jina-search-item {
        padding: 8px 12px;
    }
    
    .jina-search-item-image {
        width: 36px;
        height: 36px;
        margin-right: 8px;
    }
    
    .jina-search-no-results {
        padding: 30px 16px;
    }
    
    .jina-search-no-results-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 12px;
    }
    
    .jina-search-no-results-icon i {
        font-size: 20px;
    }
    
    .jina-search-no-results-title {
        font-size: 14px;
    }
    
    .jina-search-no-results-text {
        font-size: 13px;
    }
}

/* Animation for search items */
.jina-search-item {
    opacity: 0;
    transform: translateY(10px);
    animation: jina-search-item-appear 0.3s ease forwards;
}

.jina-search-item:nth-child(1) { animation-delay: 0.05s; }
.jina-search-item:nth-child(2) { animation-delay: 0.1s; }
.jina-search-item:nth-child(3) { animation-delay: 0.15s; }
.jina-search-item:nth-child(4) { animation-delay: 0.2s; }
.jina-search-item:nth-child(5) { animation-delay: 0.25s; }
.jina-search-item:nth-child(6) { animation-delay: 0.3s; }
.jina-search-item:nth-child(7) { animation-delay: 0.35s; }
.jina-search-item:nth-child(8) { animation-delay: 0.4s; }

@keyframes jina-search-item-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highlight search terms */
.jina-search-highlight {
    background: rgba(246, 137, 30, 0.2);
    color: var(--primary-color);
    font-weight: 600;
    padding: 1px 2px;
    border-radius: 3px;
}

/* Search overlay for mobile */
.jina-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.jina-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .jina-search-container.active ~ .jina-search-overlay {
        opacity: 1;
        visibility: visible;
    }
}

/* Search suggestions quick access */
.jina-search-suggestions {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.jina-search-suggestion-item {
    display: flex;
    align-items: center;
    padding: 6px 20px;
    color: #6b7280;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.jina-search-suggestion-item:hover {
    background: #f9fafb;
    color: var(--primary-color);
}

.jina-search-suggestion-item i {
    margin-right: 8px;
    font-size: 10px;
}

/* Loading state for entire results */
.jina-search-results.loading .jina-search-results-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.jina-search-results-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #6b7280;
}

.jina-search-results-loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: jina-search-spin 1s linear infinite;
}

.jina-search-results-loading-text {
    font-size: 13px;
    font-weight: 500;
}

/* trang cố định start */
/* ====================================
   JINA KOREA - MINIMAL PAGE DESIGN
   ================================== */

   .page {
    min-height: 100vh;
    background: var(--white-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Header Styles */
.page .page-header {
    padding: var(--space-xl) 0;
    text-align: center;
    border-bottom: 1px solid rgba(246, 137, 30, 0.1);
    margin-bottom: var(--space-xl);
}

.page .page-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 var(--space-md) 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page .page-description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Main Content Styles */
.page .page-main {
    padding-bottom: var(--space-xl);
}

.page .page-content {
    max-width: 100%;
}

/* Content Typography */
.page .page-content h1,
.page .page-content h2 {
    color: var(--text-dark);
    font-weight: 600;
    margin: var(--space-xl) 0 var(--space-lg) 0;
    line-height: 1.3;
}

.page .page-content h2 {
    font-size: 2rem;
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.page .page-content h3 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.5rem;
    margin: var(--space-lg) 0 var(--space-md) 0;
}

.page .page-content p {
    margin: 0 0 var(--space-md) 0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Hero Section */
.page .hero-section {
    background: linear-gradient(135deg, #fff 0%, #fef8f3 100%);
    padding: var(--space-xl);
    border-radius: 12px;
    border: 1px solid rgba(246, 137, 30, 0.1);
}

.page .hero-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    border: none;
    display: block;
    font-size: 2.5rem;
}

.page .hero-section p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
}

/* Grid Layouts */
.page .benefits-grid,
.page .industry-showcase,
.page .success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.page .benefit-item,
.page .industry-card,
.page .success-story {
    background: #fff;
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(246, 137, 30, 0.08);
    border: 1px solid rgba(246, 137, 30, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page .benefit-item::before,
.page .industry-card::before,
.page .success-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--third-color) 100%);
}

.page .benefit-item:hover,
.page .industry-card:hover,
.page .success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(246, 137, 30, 0.15);
}

.page .benefit-item h3,
.page .industry-card h3,
.page .success-story h3 {
    color: var(--primary-color);
    margin: 0 0 var(--space-md) 0;
    font-size: 1.3rem;
}

/* Process Steps */
.page .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.page .step {
    text-align: center;
    padding: var(--space-lg);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(246, 137, 30, 0.08);
    border: 1px solid rgba(246, 137, 30, 0.1);
    transition: all 0.3s ease;
}

.page .step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(246, 137, 30, 0.12);
}

.page .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(246, 137, 30, 0.3);
}

.page .step h3 {
    color: var(--text-dark);
    margin: 0 0 var(--space-sm) 0;
    font-size: 1.25rem;
}

.page .step p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Lists */
.page .page-content ul {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.page .page-content li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: var(--space-lg);
    margin: var(--space-sm) 0;
}

.page .page-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.page .page-content li:last-child {
    border-bottom: none;
}

/* CTA Section */
.page .cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--third-color) 100%);
    color: white;
    padding: var(--space-xl);
    border-radius: 12px;
    text-align: center;
    margin: var(--space-xl) 0;
}

.page .cta-section h2 {
    color: white;
    border: none;
    margin-bottom: var(--space-lg);
    font-size: 2rem;
}

.page .cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.page .cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.page .btn-primary,
.page .btn-secondary {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.page .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.page .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.page .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.page .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Blockquote */
.page .commitment-statement {
    margin: var(--space-xl) 0;
    text-align: center;
}

.page .commitment-statement blockquote {
    background: #f8f9fa;
    padding: var(--space-xl);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 0;
    font-style: italic;
    position: relative;
}

.page .commitment-statement blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: var(--space-sm);
    left: var(--space-lg);
    font-family: serif;
    opacity: 0.3;
}

.page .commitment-statement blockquote p {
    font-size: 1.2rem;
    color: #444;
    margin: 0 0 var(--space-md) 0;
    padding-left: var(--space-lg);
}

.page .commitment-statement cite {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-container {
        padding: 0 var(--space-md);
    }
    
    .page .page-header {
        padding: var(--space-lg) 0;
    }
    
    .page .page-title {
        font-size: 2rem;
    }
    
    .page .page-description {
        font-size: 1.1rem;
    }
    
    .page .hero-section {
        padding: var(--space-lg);
    }
    
    .page .hero-section h2 {
        font-size: 1.8rem;
    }
    
    .page .benefits-grid,
    .page .industry-showcase,
    .page .success-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .page .process-steps {
        grid-template-columns: 1fr;
    }
    
    .page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page .btn-primary,
    .page .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .page .benefit-item,
    .page .industry-card,
    .page .success-story,
    .page .step {
        padding: var(--space-md);
    }
    
    .page .commitment-statement blockquote {
        padding: var(--space-lg);
    }
    
    .page .commitment-statement blockquote::before {
        font-size: 3rem;
    }
}

/* Print Styles */
@media print {
    .page .cta-section,
    .page .cta-buttons {
        display: none;
    }
    
    .page {
        background: white;
    }
    
    .page .benefit-item,
    .page .industry-card,
    .page .success-story,
    .page .step {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* trang cố định end */
footer iframe {
  pointer-events: all !important;
}