@charset "UTF-8";
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --bs-font-sans-serif: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
}
body {
  font-family: "Outfit", sans-serif !important;
  font-size: 15px;
  font-weight: 400;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bs-gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--bs-gray-400);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--bs-gray-600);
}
@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 1200px !important;
  }
}
@media (min-width: 1200px) {
  .container, .container-xl, .container-lg, .container-md, .container-sm {
    max-width: 1220px !important;
  }
}
@media (min-width: 1400px) {
  .container, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
    max-width: 1320px !important;
  }
}
.navbar {
  position: relative;
  z-index: 1030;
  background: transparent;
  color: #fff;
}
.navbar .nav-link {
  color: #fff;
}
@media (max-width: 991px) {
  .navbar .nav-link {
    color: #333333;
    top: 0;
  }
}
.navbar.show {
  transform: translateY(0);
  animation: slide-down 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #333333;
}
.navbar.show .nav-link {
  color: #333333;
}
.navbar.scrolled {
  transform: translateY(0);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .navbar-brand .logo {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease 0.1s;
}
.navbar.scrolled .navbar-nav .nav-link, .navbar.scrolled .btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease 0.2s;
}
.navbar.scrolled .navbar-nav .nav-item:nth-child(1) .nav-link, .navbar.scrolled .navbar-nav .nav-item:nth-child(1) .btn {
  transition-delay: 0.2s;
}
.navbar.scrolled .navbar-nav .nav-item:nth-child(2) .nav-link, .navbar.scrolled .navbar-nav .nav-item:nth-child(2) .btn {
  transition-delay: 0.25s;
}
.navbar.scrolled .navbar-nav .nav-item:nth-child(3) .nav-link, .navbar.scrolled .navbar-nav .nav-item:nth-child(3) .btn {
  transition-delay: 0.3s;
}
.navbar.scrolled .navbar-nav .nav-item:nth-child(4) .nav-link, .navbar.scrolled .navbar-nav .nav-item:nth-child(4) .btn {
  transition-delay: 0.35s;
}
.navbar.scrolled .navbar-nav .nav-item:nth-child(5) .nav-link, .navbar.scrolled .navbar-nav .nav-item:nth-child(5) .btn {
  transition-delay: 0.4s;
}
.navbar.scrolled .navbar-nav .nav-item:nth-child(6) .nav-link, .navbar.scrolled .navbar-nav .nav-item:nth-child(6) .btn {
  transition-delay: 0.45s;
}
.navbar.scrolled .navbar-nav .nav-item:nth-child(7) .nav-link, .navbar.scrolled .navbar-nav .nav-item:nth-child(7) .btn {
  transition-delay: 0.5s;
}
.navbar.scrolled .navbar-nav .nav-item:nth-child(8) .nav-link, .navbar.scrolled .navbar-nav .nav-item:nth-child(8) .btn {
  transition-delay: 0.55s;
}
.navbar.scrolled .navbar-nav .nav-item:nth-child(9) .nav-link, .navbar.scrolled .navbar-nav .nav-item:nth-child(9) .btn {
  transition-delay: 0.6s;
}
.navbar.scrolled .navbar-nav .nav-item:nth-child(10) .nav-link, .navbar.scrolled .navbar-nav .nav-item:nth-child(10) .btn {
  transition-delay: 0.65s;
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDownStagger {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.navbar .navbar-brand .logo {
  transition: all 0.3s ease;
  transform-origin: left center;
}
.navbar .navbar-nav .nav-link {
  transition: all 0.3s ease;
  position: relative;
}
.navbar .navbar-nav .nav-link:hover {
  transform: translateY(-2px) !important;
  color: var(--bs-primary) !important;
}
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary) !important;
  font-weight: 600;
}
.navbar .btn {
  transition: all 0.3s ease;
}
.navbar .btn:hover {
  transform: translateY(-2px) scale(1.05) !important;
}
.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.navbar .dropdown-menu .dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all 0.2s ease;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
  transform: translateX(5px);
}
@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    margin-top: 1rem;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  }
  .navbar .navbar-collapse .navbar-nav .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .navbar .navbar-collapse .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  .navbar .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  .navbar .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar .navbar-toggler .navbar-toggler-icon {
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }
}
.navbar.show .navbar-toggler .navbar-toggler-icon, .navbar.scrolled .navbar-toggler .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%2833, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.page-loading .navbar-slide-down {
  transform: translateY(-100%);
}
html {
  scroll-behavior: smooth;
}
body {
  padding-top: 0;
}
header.navbar-slide-down {
  background: transparent;
}
header.navbar-slide-down.show {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  animation: slide-down 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
header.navbar-slide-down.show .white-link {
  color: #333333 !important;
}
header.navbar-slide-down.show .white-link:hover {
  color: #ff9f1c !important;
}
h1 {
  line-height: 1.3;
  font-size: 45px;
}
h1, h2 {
  font-weight: 600;
}
h1, h2, h3 {
  margin-bottom: 1.5rem;
}
h2 {
  font-size: 36px;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 25px;
  font-weight: 500;
}
h1, h2, h3, h4, h5 {
  color: #011627;
}
p {
  line-height: 1.7;
  color: #718096;
}
.text-orange {
  color: #ff9f1c;
}
.text-white p {
  color: #fff;
}
.text-link {
  color: #718096;
}
.white-link {
  color: #fff;
}
.white-link:hover {
  color: #ff9f1c;
}
@media (max-width: 664px) {
  h1 {
    font-size: 35px;
  }
}
.card {
  border-radius: 15px;
}
.card .card-header {
  border: none;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.card .card-img-radius {
  border-radius: 15px;
}
.card.card-item {
  margin-bottom: 25px;
  position: relative;
}
.card.card-item:hover .card-img::before {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.card.card-item:hover .card-img .case-link {
  margin-top: 0px;
  opacity: 1;
}
.card.card-item .card-img {
  position: relative;
}
.card.card-item .card-img img {
  border-radius: 15px;
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.card.card-item .card-img::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(255, 159, 28, 0.7);
  transform: scaleY(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 15px;
}
.card.card-item .card-img .case-link {
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #ff9f1c !important;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  left: 50%;
  top: 50%;
  font-size: 28px;
  margin-top: 50px;
  opacity: 0;
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.card.card-item .card-content {
  bottom: 0;
  position: absolute;
  padding: 16px;
  background: linear-gradient(180deg, transparent 0%, black 100%);
  margin-top: 10px;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  border-radius: 15px;
  width: 100%;
}
.card.card-services-item {
  position: relative;
  margin-bottom: 25px;
  background: #fff;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
}
.card.card-services-item img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}
.card.card-services-item .card-service-body {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card.card-services-item .card-service-arrow {
  margin-top: auto;
}
.card.card-services-item::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  left: 0px;
  top: 0px;
  opacity: 0;
  border-top: 5px solid #ff9f1c;
  border-left: 5px solid #ff9f1c;
  transition: all 0.5s ease-in-out;
}
.card.card-services-item::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  border-bottom: 5px solid #ff9f1c;
  border-right: 5px solid #ff9f1c;
  transition: all 0.5s ease-in-out;
}
.card.card-services-item:hover::before {
  width: 80px;
  height: 80px;
  opacity: 1;
  border-top-left-radius: 15px;
}
.card.card-services-item:hover::after {
  width: 80px;
  height: 80px;
  opacity: 1;
  border-bottom-right-radius: 15px;
}
.card.card-services-item:hover .card-service-icon {
  transform: rotateX(360deg);
}
.card.card-services-item .card-service-icon {
  margin-top: -50px;
  align-self: flex-end;
  margin-bottom: 25px;
  transition: all 0.5s ease-in-out;
}
.card.card-services-item .card-service-icon .lucide {
  width: 50px;
  height: 50px;
  font-size: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff9f1c;
  color: #fff;
  stroke-width: 0.7;
  border-bottom-right-radius: 15px;
}
.btn {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.btn-icon {
  display: flex;
  padding: 11px 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn.btn-icon span {
  width: 26px;
  height: 26px;
  border-radius: 2px;
  margin-left: 10px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
}
.btn.btn-primary {
  background-color: #ff9f1c;
  border: 1px solid #ff9f1c;
  color: #fff;
}
.btn.btn-primary:hover {
  background-color: #008aff;
  border-color: #008aff;
  box-shadow: 0 8px 25px rgba(1, 22, 39, 0.4);
}
.btn.btn-primary:hover.btn-icon span {
  background-color: #ff9f1c;
}
.btn.btn-primary.btn-icon span {
  background-color: #011627;
}
.btn.btn-secondary {
  background-color: #011627;
  border: 1px solid #011627;
}
.btn.btn-secondary:hover {
  background-color: #ff9f1c;
  border-color: #ff9f1c;
  box-shadow: 0 8px 25px rgba(255, 159, 28, 0.4);
}
.btn.btn-secondary:hover.btn-icon span {
  background-color: #011627;
}
.btn.btn-secondary.btn-icon span {
  background-color: #ff9f1c;
}
.accordion .card {
  border-radius: 0.375rem !important;
}
.accordion .accordion-body {
  color: #718096;
}
.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #ff9f1c;
  border-radius: 50%;
  flex-shrink: 0;
}
.accordion-icon .lucide {
  width: 18px;
  height: 18px;
  color: white;
  stroke-width: 2;
}
.accordion-button {
  font-size: 18px;
  font-weight: 700;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.175);
}
.form-control {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
  border: none;
  padding: 13px;
  border: 2px solid transparent;
}
.form-control:focus {
  border: 2px solid #ff9f1c;
  outline: 0;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
}
.lucide {
  stroke-width: 0.7;
}
.background-light {
  background-color: #f8fafc;
}
.background-orange-bright {
  background-color: #ff9f1c;
}
.background-navy-dark {
  background-color: #011627;
}
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(0deg, rgba(0, 10, 91, 0.8) 0%, rgba(0, 10, 91, 0.8) 50%);
  background: -moz-linear-gradient(0deg, rgba(0, 10, 91, 0.8) 0%, rgba(0, 10, 91, 0.8) 50%);
  background: linear-gradient(0deg, rgba(0, 10, 91, 0.8) 0%, rgba(0, 10, 91, 0.8) 50%);
  opacity: 0.8;
}
.gradient-edge-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, #011627 0%, rgba(0, 10, 91, 0) 100%);
}
.background-opacity {
  background-color: rgba(0, 0, 0, 0.5);
}
section {
  padding: 4rem 0;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
}
.hp-banner {
  position: relative;
  background-image: url("../img/banner/banner1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 110px 0px;
}
@media (max-width: 992px) {
  .hp-banner {
    padding-top: 160px;
  }
}
.inner-banner {
  background: url("https://live.themewild.com/logistox/assets/img/breadcrumb/breadcrumb.jpg");
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
  z-index: 1;
}
.inner-banner.garde-meuble-banner {
  background: url("../img/banner/garde-meuble.jpg");
}
.inner-banner .inner-content {
  position: relative;
}
.inner-banner .inner-content h1 {
  text-transform: uppercase;
  color: #fff;
}
.multi-step-form-wrapper {
  padding: 40px 20px;
}
.form-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 25px;
}
.form-progress::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  height: 1px;
  background: #e9ecef;
  z-index: 0;
}
@media (max-width: 768px) {
  .form-progress::before {
    display: none;
  }
}
.form-progress .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-progress .progress-step .step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 3px solid #e9ecef;
}
.form-progress .progress-step .step-icon svg {
  width: 20px;
  height: 20px;
  color: #6c757d;
  transition: all 0.3s ease;
}
.form-progress .progress-step .step-title {
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
  transition: all 0.3s ease;
}
.form-progress .progress-step.active .step-icon, .form-progress .progress-step.completed .step-icon {
  background: #ff9f1c;
  border-color: #ff9f1c;
}
.form-progress .progress-step.active .step-icon svg, .form-progress .progress-step.completed .step-icon svg {
  color: white;
}
.form-progress .progress-step.active .step-title, .form-progress .progress-step.completed .step-title {
  color: #ff9f1c;
  font-weight: 600;
}
.form-progress .progress-step.completed .step-icon {
  background: #008aff;
  border-color: #008aff;
}
.form-progress .progress-step.completed .step-title {
  color: #008aff;
}
.form-step {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}
.form-step.active {
  display: block;
}
.step-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
}
.step-header {
  background: linear-gradient(135deg, #ff9f1c, #f7931e);
  color: white;
  padding: 30px;
  text-align: center;
}
.step-header h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.step-header h3 svg {
  width: 28px;
  height: 28px;
}
.step-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 16px;
}
.step-content {
  padding: 40px;
}
.volume-input-group {
  display: flex;
  gap: 15px;
  align-items: end;
}
.volume-input-group .volume-input {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  height: 60px;
  border-radius: 15px;
}
.volume-input-group .calculator-btn {
  height: 60px;
  border-radius: 15px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.helpful-text {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  border-left: 4px solid #ff9f1c;
}
.address-section {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
}
.address-section .address-title {
  color: #495057;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.address-section .address-title svg {
  color: #ff9f1c;
}
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .form-navigation {
    flex-wrap: wrap;
  }
}
.form-navigation .btn {
  min-width: 120px;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.form-navigation .btn:hover {
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .form-navigation .btn:last-child {
    margin-top: 20px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .form-progress {
    gap: 10px;
    flex-wrap: wrap;
  }
  .form-progress .progress-step .step-icon {
    width: 40px;
    height: 40px;
  }
  .form-progress .progress-step .step-icon svg {
    width: 16px;
    height: 16px;
  }
  .form-progress .progress-step .step-title {
    font-size: 12px;
  }
  .form-progress .progress-step:nth-child(2) {
    margin: 10px 0;
  }
  .step-content {
    padding: 20px;
  }
  .step-header {
    padding: 20px;
  }
  .step-header h3 {
    font-size: 20px;
  }
  .volume-input-group {
    flex-direction: column;
  }
  .volume-input-group .calculator-btn {
    width: 100%;
  }
}
.nav-tabs {
  border-bottom: none;
  gap: 12px;
  margin-bottom: 24px;
}
.nav-tabs .nav-item {
  margin-bottom: 0;
}
.nav-tabs .nav-link {
  border: none;
  border-radius: 12px;
  background-color: #f8f9fa;
  color: #6c757d;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.nav-tabs .nav-link::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
}
.nav-tabs .nav-link[data-icon="living-room"]::before {
  font-family: "Font Awesome 6 Free";
  content: "";
  font-weight: 900;
  font-size: 16px;
  color: #6c757d;
  background: none;
}
.nav-tabs .nav-link[data-icon="kitchen"]::before {
  font-family: "Font Awesome 6 Free";
  content: "";
  font-weight: 900;
  font-size: 16px;
  color: #6c757d;
  background: none;
}
.nav-tabs .nav-link[data-icon="bedroom"]::before {
  font-family: "Font Awesome 6 Free";
  content: "";
  font-weight: 900;
  font-size: 16px;
  color: #6c757d;
  background: none;
}
.nav-tabs .nav-link[data-icon="bathroom"]::before {
  font-family: "Font Awesome 6 Free";
  content: "";
  font-weight: 900;
  font-size: 16px;
  color: #6c757d;
  background: none;
}
.nav-tabs .nav-link[data-icon="office"]::before {
  font-family: "Font Awesome 6 Free";
  content: "";
  font-weight: 900;
  font-size: 16px;
  color: #6c757d;
  background: none;
}
.nav-tabs .nav-link:hover {
  background-color: #e9ecef;
  color: #495057;
  transform: translateY(-1px);
}
.nav-tabs .nav-link:hover::before {
  filter: brightness(0.8);
}
.nav-tabs .nav-link.active {
  background-color: #ff9f1c;
  color: white;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}
.nav-tabs .nav-link.active[data-icon="living-room"]::before, .nav-tabs .nav-link.active[data-icon="kitchen"]::before, .nav-tabs .nav-link.active[data-icon="bedroom"]::before, .nav-tabs .nav-link.active[data-icon="bathroom"]::before, .nav-tabs .nav-link.active[data-icon="office"]::before {
  color: white;
}
.nav-tabs .nav-link:focus {
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  outline: none;
}
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.items-grid .item-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.items-grid .item-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.items-grid .item-card .item-image {
  margin-bottom: 12px;
}
.items-grid .item-card .item-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.items-grid .item-card .item-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.items-grid .item-card .item-info .item-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.items-grid .item-card .item-info .item-controls .btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: 0;
}
.items-grid .item-card .item-info .item-controls .btn:hover {
  background-color: #ff9f1c;
  border-color: #ff9f1c;
  color: white;
}
.items-grid .item-card .item-info .item-controls .item-quantity {
  width: 60px;
  text-align: center !important;
  font-weight: bold;
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 32px;
  padding: 0 !important;
  margin: 0;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  background: white;
}
.items-grid .item-card .item-info .item-controls .item-quantity:focus {
  outline: none;
  border-color: #ff9f1c;
}
.items-grid .item-card .item-info .item-controls .item-quantity::-webkit-outer-spin-button, .items-grid .item-card .item-info .item-controls .item-quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.items-grid .item-card .item-info .item-controls .item-quantity::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.items-grid .item-card.selected {
  border-color: #ff9f1c;
  background-color: rgba(255, 107, 53, 0.05);
}
.items-grid .item-card.selected .item-quantity {
  border-color: #ff9f1c;
  background-color: rgba(255, 107, 53, 0.1);
}
@media (max-width: 768px) {
  .items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .items-grid .item-card {
    padding: 12px;
  }
  .items-grid .item-card .item-image img {
    width: 60px;
    height: 60px;
  }
  .items-grid .item-card .item-info h5 {
    font-size: 12px;
    min-height: 32px;
  }
  .items-grid .item-card .item-controls .btn {
    width: 28px;
    height: 28px;
  }
  .items-grid .item-card .item-controls .item-quantity {
    width: 50px;
    height: 28px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .items-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.calculator-result {
  top: 50%;
}
.add-custom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #dee2e6;
  background: #f8f9fa;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 200px;
  text-decoration: none;
}
.add-custom-item:hover {
  border-color: #007bff;
  background: #e3f2fd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}
.add-custom-item:hover .custom-item-icon {
  background: #007bff;
  transform: scale(1.1);
}
.add-custom-item:hover .plus-icon {
  color: #fff;
}
.add-custom-item:hover .item-info h5 {
  color: #007bff;
  font-weight: 600;
}
.add-custom-item .custom-item-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.add-custom-item .plus-icon {
  font-size: 3rem;
  font-weight: bold;
  color: #007bff;
  transition: all 0.3s ease;
}
.add-custom-item .item-info h5 {
  text-align: center;
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.calculator-result .card {
  overflow: hidden;
}
.calculator-result .card .card-header {
  background-color: #f8f9fa !important;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 1.25rem;
}
.calculator-result .card .card-header .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #495057;
  margin: 0;
}
.calculator-result .card .card-body {
  padding: 1.25rem;
}
.calculator-result .summary-item {
  font-size: 0.9rem;
}
.calculator-result .summary-item .text-muted {
  color: #6c757d !important;
}
.calculator-result .summary-item #items-count {
  font-weight: 600;
  color: #495057;
}
.calculator-result .summary-item #clear-list-btn {
  opacity: 0.7;
  transition: all 0.2s ease;
}
.calculator-result .summary-item #clear-list-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}
.calculator-result .summary-item #clear-list-btn:focus {
  box-shadow: none;
}
.calculator-result .summary-item #clear-list-btn i {
  font-size: 1rem;
}
.calculator-result hr {
  border-color: #e9ecef;
  opacity: 0.5;
}
.calculator-result #calculated-volume {
  font-weight: 700;
  font-size: 1.5rem;
}
.calculator-result #calculate-btn {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}
.calculator-result #calculate-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
}
.calculator-result #calculate-btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
@media (max-width: 768px) {
  .calculator-result {
    position: relative !important;
    top: auto !important;
    margin-top: 2rem;
  }
  .calculator-result .card-body {
    padding: 1rem;
  }
  .calculator-result .summary-item {
    font-size: 0.85rem;
  }
  .calculator-result #calculated-volume {
    font-size: 1.25rem;
  }
}
.footer {
  background-color: #011627;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer .position-absolute img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.8) contrast(1.2);
  transition: all 0.3s ease;
}
.footer .footer-main {
  padding-top: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-main .footer-widget {
  margin-bottom: 40px;
}
.footer .footer-main .footer-widget .footer-contact .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}
.footer .footer-main .footer-widget .footer-contact .contact-item:hover {
  transform: translateX(5px);
}
.footer .footer-main .footer-widget .footer-contact .contact-item:hover .contact-icon {
  background: linear-gradient(135deg, #ff9f1c, #f7931e);
  transform: scale(1.1);
}
.footer .footer-main .footer-widget .footer-contact .contact-item .contact-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-top: 5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.footer .footer-main .footer-widget .footer-contact .contact-item .contact-icon .lucide {
  color: #fff;
  width: 18px;
  height: 18px;
}
.footer .footer-main .footer-widget .footer-contact .contact-item .contact-content {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}
.footer .footer-main .footer-widget .footer-contact .contact-item .contact-content strong {
  color: #fff;
  display: block;
  margin-bottom: 3px;
}
.footer .footer-main .footer-widget .footer-contact .contact-item .contact-content .contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .footer-main .footer-widget .footer-contact .contact-item .contact-content .contact-link:hover {
  color: #ff9f1c;
  text-decoration: none;
}
.footer .footer-main .footer-widget .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-main .footer-widget .footer-links li {
  margin-bottom: 12px;
}
.footer .footer-main .footer-widget .footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}
.footer .footer-main .footer-widget .footer-links li a:hover {
  color: #ff9f1c;
}
.footer .footer-main .footer-widget .footer-links li a:hover::before {
  opacity: 1;
}
.footer .footer-bottom {
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.2);
}
.footer .footer-bottom .footer-bottom-content .copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}
.footer .footer-bottom .footer-bottom-content .copyright a {
  color: #ff9f1c;
  text-decoration: none;
}
.footer .footer-bottom .footer-bottom-content .copyright a:hover {
  text-decoration: underline;
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-links li a:hover {
  color: #ff9f1c;
}
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.map-container #leaflet-map {
  height: 400px;
  width: 100%;
}
.custom-marker-icon {
  background: transparent;
  border: none;
}
.custom-marker-icon .marker-container {
  position: relative;
  width: 40px;
  height: 50px;
}
.custom-marker-icon .marker-container .marker-shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 6px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: shadowPulse 2s ease-in-out infinite;
}
.custom-marker-icon .marker-container .marker-pin {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff6b35, #ff9f1c);
  border: 3px solid white;
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: markerBounce 2s ease-in-out infinite;
}
.custom-marker-icon .marker-container .marker-pin .marker-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-marker-icon .marker-container .marker-pin .marker-inner svg {
  width: 12px;
  height: 12px;
  color: #ff6b35;
  transform: rotate(-45deg);
}
.custom-marker-icon .marker-container .marker-pin .marker-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid #ff6b35;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 3s ease-out infinite;
  opacity: 0;
}
.custom-popup-wrapper .leaflet-popup-content-wrapper {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: none;
  padding: 0;
  overflow: hidden;
}
.custom-popup-wrapper .leaflet-popup-content {
  margin: 0;
  padding: 0;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-header {
  background: linear-gradient(135deg, #ff6b35, #ff9f1c);
  color: white;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-header h4 svg {
  width: 18px;
  height: 18px;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-header .popup-status {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-header .popup-status svg {
  width: 12px;
  height: 12px;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-body {
  padding: 15px;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-body p {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 14px;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-body p svg {
  width: 14px;
  height: 14px;
  color: #ff6b35;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-body .popup-actions {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-body .popup-actions .popup-btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-body .popup-actions .popup-btn svg {
  width: 14px;
  height: 14px;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-body .popup-actions .popup-btn.primary {
  background: #ff6b35;
  color: white;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-body .popup-actions .popup-btn.primary:hover {
  background: #ff4602;
  transform: translateY(-1px);
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-body .popup-actions .popup-btn.secondary {
  background: #f8f9fa;
  color: #666;
  border: 1px solid #e9ecef;
}
.custom-popup-wrapper .leaflet-popup-content .custom-popup .popup-body .popup-actions .popup-btn.secondary:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}
.custom-popup-wrapper .leaflet-popup-tip {
  background: white;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1);
}
.service-area-tooltip {
  background: rgba(255, 107, 53, 0.9);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
}
@keyframes markerBounce {
  0%, 100% {
    transform: translateX(-50%) rotate(-45deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(-45deg) translateY(-3px);
  }
}
@keyframes shadowPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.1;
  }
}
@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.leaflet-control-layers {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
}
.leaflet-control-layers .leaflet-control-layers-list {
  padding: 10px;
}
.leaflet-control-layers .leaflet-control-layers-list label {
  font-size: 14px;
  margin: 8px 0;
  cursor: pointer;
}
.leaflet-control-layers .leaflet-control-layers-list label:hover {
  color: #ff6b35;
}
.leaflet-control-zoom {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.leaflet-control-zoom a {
  border: none;
  background: white;
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease;
}
.leaflet-control-zoom a:hover {
  background: #ff6b35;
  color: white;
}
.leaflet-control-zoom a:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.leaflet-control-zoom a:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
/*
 * jQuery Bootstrap Responsive Tabs v2.0.1 | Valeriu Timbuc - vtimbuc.com
 * github.com/vtimbuc/bootstrap-responsive-tabs
 * @license WTFPL http://www.wtfpl.net/about/
 */
.responsive-tabs-container .tab-pane {
  margin-bottom: 15px;
}
.responsive-tabs-container .accordion-link {
  display: none;
  margin-bottom: 10px;
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-radius: 3px;
  border: 1px solid #ddd;
  color: #333;
}
@media (max-width: 767px) {
  .responsive-tabs-container.accordion-xs .nav-tabs {
    display: none;
  }
  .responsive-tabs-container.accordion-xs .accordion-link {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .responsive-tabs-container.accordion-sm .nav-tabs {
    display: none;
  }
  .responsive-tabs-container.accordion-sm .accordion-link {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .responsive-tabs-container.accordion-md .nav-tabs {
    display: none;
  }
  .responsive-tabs-container.accordion-md .accordion-link {
    display: block;
  }
}
@media (min-width: 1200px) {
  .responsive-tabs-container.accordion-lg .nav-tabs {
    display: none;
  }
  .responsive-tabs-container.accordion-lg .accordion-link {
    display: block;
  }
}
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.pricing-card.pricing-professional {
  background: linear-gradient(90deg, #011627 0%, #000a5b 100%);
  color: white;
  transform: scale(1.05);
  z-index: 2;
}
.pricing-card.pricing-professional:hover {
  transform: scale(1.05) translateY(-5px);
}
.pricing-card.pricing-professional .pricing-price {
  color: white;
}
.pricing-card.pricing-professional .pricing-description {
  color: rgba(255, 255, 255, 0.9);
}
.pricing-card.pricing-professional .feature-item {
  color: white;
}
.pricing-card.pricing-professional .feature-item .lucide {
  color: #2DCA8C;
}
.pricing-card.pricing-professional .pricing-cta {
  background: white;
  color: #ff9f1c;
}
.pricing-card.pricing-professional .pricing-cta:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}
.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}
.pricing-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}
.pricing-professional .pricing-icon {
  background: rgba(255, 255, 255, 0.2);
}
.pricing-icon .lucide {
  width: 24px;
  height: 24px;
  color: #000;
}
.pricing-professional .pricing-icon .lucide {
  color: white;
}
.pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-professional .pricing-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.pricing-badge span {
  color: #ff9f1c;
  font-weight: 700;
}
.pricing-professional .pricing-badge span {
  color: white;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
}
.pricing-price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 0.25rem;
}
.pricing-description {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}
.pricing-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.5;
}
.pricing-item .lucide {
  width: 20px;
  height: 20px;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: all 0.2s ease;
}
.pricing-item .lucide:hover {
  transform: scale(1.1);
}
.pricing-card .pricing-item.feature-disabled {
  color: #9ca3af;
  text-decoration: line-through;
}
.pricing-card .pricing-item.feature-disabled .lucide {
  background: #f8d7da !important;
  color: #721c24 !important;
}
.pricing-card .pricing-item .lucide {
  width: 22px;
  height: 22px;
  background: #D5F4E8;
  color: #2DCA8C;
  border-radius: 50%;
  padding: 4px;
}
.pricing-card .pricing-item span {
  flex: 1;
  text-align: left;
}
.pricing-professional span {
  color: white;
}
@media (max-width: 1024px) {
  .pricing-card.pricing-professional {
    transform: none;
  }
  .pricing-card.pricing-professional:hover {
    transform: translateY(-5px);
  }
}
@media (max-width: 768px) {
  .pricing-card {
    padding: 1.5rem;
  }
  .pricing-price {
    font-size: 2.5rem;
  }
  .pricing-icon {
    width: 50px;
    height: 50px;
  }
  .pricing-icon .lucide {
    width: 20px;
    height: 20px;
  }
}
.carousel {
  background: transparent;
  padding: 80px 20px;
  position: relative;
  padding-top: 30px;
}
.blockquote {
  max-width: 800px;
  margin: 0 auto;
  color: #0a2c3d;
}
/* Dots */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #bdbdbd;
}
.carousel-indicators .active {
  background-color: #ff9f1c;
  border: 0;
  width: 14px;
  height: 14px;
}
/* Arrows */
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 50%, 50%;
  transition: background-color 0.3s ease;
}
.carousel-control-prev-icon:hover, .carousel-control-next-icon:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.modern-cta-block {
  border-radius: 25px;
  background: #011627;
  overflow: hidden;
  position: relative;
}
.cta-content {
  z-index: 3;
  position: relative;
}
.cta-content .cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.cta-content .cta-badge .lucide {
  width: 18px;
  height: 18px;
}
.cta-content .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.cta-content .cta-title .text-warning {
  color: #ff9f1c !important;
}
.cta-content .cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.cta-content .cta-features .feature-point {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.cta-content .cta-features .feature-point .feature-icon {
  width: 20px;
  height: 20px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.cta-content .cta-features .feature-point .feature-icon .lucide {
  width: 12px;
  height: 12px;
  color: white;
}
.cta-content .cta-features .feature-point span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.cta-visual {
  position: relative;
  z-index: 3;
}
.cta-visual .calculator-preview {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
  transition: all 0.3s ease;
}
.cta-visual .calculator-preview:hover {
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}
.cta-visual .calculator-preview .preview-header {
  margin-bottom: 20px;
}
.cta-visual .calculator-preview .preview-header h4 {
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 5px;
}
.cta-visual .calculator-preview .preview-header p {
  color: #64748b;
  margin: 0;
  font-size: 14px;
}
.cta-visual .calculator-preview .preview-form .form-group {
  margin-bottom: 15px;
}
.cta-visual .calculator-preview .preview-form .form-group label {
  color: #374151;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}
.cta-visual .calculator-preview .preview-form .form-group input, .cta-visual .calculator-preview .preview-form .form-group select {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 15px;
  width: 100%;
  font-size: 14px;
  transition: all 0.2s ease;
}
.cta-visual .calculator-preview .preview-form .form-group input:focus, .cta-visual .calculator-preview .preview-form .form-group select:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.cta-visual .calculator-preview .preview-form .btn-calculate {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
  font-size: 14px;
}
.cta-visual .calculator-preview .preview-form .btn-calculate .lucide {
  width: 16px;
  height: 16px;
}
@media (max-width: 991.98px) {
  .modern-cta-block {
    min-height: auto;
  }
  .modern-cta-block::before {
    display: none;
  }
  .cta-content {
    padding: 40px 0;
    text-align: center;
  }
  .cta-content .cta-title {
    font-size: 2rem;
  }
  .cta-content .cta-buttons .btn {
    margin-bottom: 15px;
    width: 100%;
  }
  .cta-visual {
    margin-top: 40px;
  }
  .cta-visual .calculator-preview {
    transform: none;
  }
  .cta-visual .calculator-preview:hover {
    transform: none;
  }
}
@media (max-width: 767.98px) {
  .cta-content .cta-title {
    font-size: 1.75rem;
  }
  .cta-content .cta-features {
    text-align: left;
    margin-top: 30px;
  }
}
/* Zone Intervention Styles */
.zones-list h3 {
  color: var(--bs-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.zone-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.zone-item {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  background: white;
  border: 2px solid var(--bs-gray-100);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.zone-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--bs-primary-rgb), 0.1), transparent);
  transition: left 0.5s ease;
}
.zone-item:hover::before {
  left: 100%;
}
.zone-item:hover {
  border-color: var(--bs-primary);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.15);
}
.zone-item.active {
  border-color: var(--bs-primary);
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.05), rgba(var(--bs-primary-rgb), 0.1));
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.2);
}
.zone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(224deg, #008aff, #003b6c);
  border-radius: 12px;
  margin-right: 1rem;
  position: relative;
  z-index: 1;
}
.zone-item:hover .zone-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.3);
}
.zone-icon .lucide {
  color: white;
  width: 24px;
  height: 24px;
}
.zone-info {
  flex: 1;
  position: relative;
  z-index: 1;
}
.zone-info h5 {
  margin: 0 0 0.25rem 0;
  font-weight: 600;
  color: var(--bs-dark);
  font-size: 1rem;
  transition: color 0.3s ease;
}
.zone-item:hover .zone-info h5 {
  color: var(--bs-primary);
}
.zone-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--bs-gray-600);
}
.zone-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--bs-gray-100);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.zone-item:hover .zone-arrow {
  background: linear-gradient(224deg, #008aff, #003b6c);
  transform: translateX(4px);
}
.zone-arrow .lucide {
  width: 16px;
  height: 16px;
  color: var(--bs-gray-600);
  transition: color 0.3s ease;
}
.zone-item:hover .zone-arrow .lucide {
  color: white;
}
.map-container {
  position: sticky;
  top: 2rem;
}
#zones-map {
  border: 2px solid var(--bs-gray-100);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .zone-item {
    padding: 1rem;
  }
  .zone-icon {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
  }
  .zone-icon .lucide {
    width: 20px;
    height: 20px;
  }
  .zone-info h5 {
    font-size: 0.9rem;
  }
  .zone-info p {
    font-size: 0.8rem;
  }
  .map-container {
    position: relative;
    margin-top: 2rem;
  }
  #zones-map {
    height: 400px !important;
  }
}
/* City Marker Styles */
.city-marker {
  background: transparent !important;
  border: none !important;
}
.city-marker-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.city-marker-pin {
  width: 30px;
  height: 30px;
  background: var(--marker-color, var(--bs-primary));
  border: 3px solid white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}
.city-marker-pin:hover {
  transform: rotate(-45deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.city-marker-pin .lucide {
  transform: rotate(45deg);
  color: white;
  width: 16px;
  height: 16px;
}
.city-marker-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--marker-color, var(--bs-primary));
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: 1;
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -70%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -70%) scale(1.5);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -70%) scale(2);
    opacity: 0;
  }
}
/* City Popup Styles */
.city-popup {
  font-family: "Outfit", sans-serif;
  min-width: 250px;
}
.city-popup .popup-header {
  padding: 0.75rem 1rem 0.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.05), rgba(var(--bs-primary-rgb), 0.1));
  border-radius: 8px 8px 0 0;
}
.city-popup .popup-header h5 {
  margin: 0;
  font-weight: 600;
  color: var(--bs-dark);
  font-size: 1rem;
}
.city-popup .popup-body {
  padding: 0 1rem 1rem;
}
.city-popup .popup-body p {
  margin: 0 0 1rem 0;
  color: var(--bs-gray-700);
  font-size: 0.875rem;
  line-height: 1.4;
}
.city-popup .popup-actions {
  display: flex;
  gap: 0.5rem;
}
.city-popup .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.city-popup .btn .lucide {
  width: 14px;
  height: 14px;
}
/* Override Leaflet popup styles */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: none;
  padding: 0;
}
.leaflet-popup-content {
  margin: 0;
  line-height: 1.4;
}
.leaflet-popup-tip {
  background: white;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
a {
  text-decoration: none !important;
  color: #000;
}
.logo {
  max-height: 60px;
  width: auto;
}
.footer-logo {
  max-height: 70px;
  width: auto;
}
.floating-phone-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}
.phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(224deg, #ff9f1c, #c53500);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(255, 159, 28, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
.phone-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 159, 28, 0.6);
}
.phone-btn .lucide {
  color: white;
  font-size: 24px;
}
@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(255, 159, 28, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 159, 28, 0.7), 0 0 0 10px rgba(255, 159, 28, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(255, 159, 28, 0.4);
  }
}
.feature-area {
  position: relative;
  margin-top: -110px;
  z-index: 1;
}
.feature-area .feature-area-wrapper {
  background: #fff;
  box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
}
.feature-area .feature-area-wrapper .feature-item {
  padding: 25px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  border-right: 2px solid #ff9f1c;
}
@media (max-width: 992px) {
  .feature-area .feature-area-wrapper .feature-item {
    border-right: 0;
    border-bottom: 2px solid #ff9f1c;
  }
}
.feature-area .feature-area-wrapper .feature-item.active {
  background: #ff9f1c;
}
.feature-area .feature-area-wrapper .feature-item.active .feature-icon .lucide {
  color: white;
}
.feature-area .feature-area-wrapper .feature-item:hover {
  background: #ff9f1c;
}
.feature-area .feature-area-wrapper .feature-item:hover .feature-icon {
  transform: rotateX(360deg);
}
.feature-area .feature-area-wrapper .feature-item:hover .feature-icon .lucide {
  color: white;
}
.feature-area .feature-area-wrapper .feature-item .feature-icon {
  margin-bottom: 20px;
  transition: all 0.5s ease-in-out;
}
.feature-area .feature-area-wrapper .feature-item .feature-icon .lucide {
  width: 50px;
  height: 50px;
  color: #ff9f1c;
  line-height: 1;
}
.about-section {
  padding: 80px 0;
}
.about-section .about-image-wrapper {
  position: relative;
}
.about-section .about-image-wrapper .decorative-dots {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #ff9f1c 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.6;
  z-index: -1;
  animation: bounceLeftRight 7s ease-in-out infinite;
}
@keyframes bounceLeftRight {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-15px);
  }
  75% {
    transform: translateX(15px);
  }
}
.about-section .about-image-wrapper .floating-image {
  position: absolute;
  top: 130px;
  right: 0px;
  width: 380px;
  z-index: 2;
  height: 500px;
}
.about-section .about-image-wrapper .floating-image img {
  border: 8px solid white;
  height: 100%;
  object-fit: cover;
}
.about-section .about-image-wrapper > img {
  position: relative;
  z-index: 1;
}
.about-section .about-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff9f1c;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-section .about-content .section-badge .badge-icon {
  width: 16px;
  height: 16px;
}
.about-section .about-content .about-features .feature-item .feature-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.about-section .about-content .about-features .feature-item .feature-title .feature-icon {
  width: 24px;
  height: 24px;
  color: #ff9f1c;
  flex-shrink: 0;
}
.about-section .about-content .about-features .feature-item .feature-text {
  margin: 0;
}
@media (max-width: 991.98px) {
  .about-section {
    padding: 60px 0;
  }
  .about-section .about-image-wrapper {
    margin-bottom: 0;
  }
  .about-section .about-image-wrapper .floating-image {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 20px;
    width: 200px;
  }
  .about-section .about-image-wrapper .floating-image img {
    border: 4px solid white;
  }
  .about-section .about-image-wrapper .decorative-dots {
    display: none;
  }
  .about-section .about-image-wrapper .plane-figure {
    display: none;
  }
  .about-section .about-content {
    padding-left: 0 !important;
    text-align: center;
  }
  .about-section .about-content .section-badge {
    justify-content: center;
  }
  .about-section .about-content .about-features {
    text-align: left;
  }
  .about-section .about-content .about-features .feature-item .feature-title {
    justify-content: flex-start;
  }
}
@media (max-width: 767.98px) {
  .about-section {
    padding: 40px 0;
  }
  .about-section .about-image-wrapper .floating-image {
    width: 100%;
    display: block;
  }
  .about-section .about-image-wrapper > img {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
  }
  .about-section .about-content .about-features .feature-item {
    margin-bottom: 25px;
  }
  .about-section .about-content .about-features .feature-item .feature-title {
    font-size: 1rem;
  }
  .about-section .about-content .about-features .feature-item .feature-title .feature-icon {
    width: 20px;
    height: 20px;
  }
  .about-section .about-content .about-features .feature-item .feature-text {
    font-size: 14px;
  }
}
.plane-figure {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  bottom: -110px;
  animation: bounceUpDown 3s ease-in-out infinite;
}
.plane-figure img {
  width: 170px;
}
@keyframes bounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-info .contact-item .contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b35, #ff9f1c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.contact-info .contact-item .contact-icon .lucide {
  color: white;
  font-size: 24px;
}
.contact-info .contact-item .contact-content {
  flex: 1;
}
.contact-info .contact-item .contact-content h5 {
  margin: 0 0 5px 0;
}
.contact-info .contact-item .contact-content p {
  margin: 0;
}
.banner-buttons .btn {
  width: fit-content;
  white-space: nowrap;
  min-width: auto;
}
@media (max-width: 575.98px) {
  .banner-buttons .btn {
    align-self: flex-start;
    width: auto;
  }
}
@media (max-width: 991.98px) {
  .banner-buttons {
    align-items: flex-start !important;
  }
  .banner-buttons .btn {
    width: auto;
    max-width: 250px;
  }
}
@media (min-width: 992px) {
  .banner-buttons {
    align-items: center;
  }
  .banner-buttons .btn {
    flex: 0 0 auto;
  }
}
.feature-list {
  margin-bottom: 0;
}
.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
  color: #718096;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #ff9f1c;
  border-radius: 50%;
}
.feature-list.feature-list-white li {
  color: white;
}
.feature-list.feature-list-white li::before {
  background: #fff;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.partner-item:hover {
  transform: translateY(-5px);
}
.partner-logo {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}
.partner-logo:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}
.partner-logo img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
}
.partner-logo:hover img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
  .partner-logo {
    padding: 1rem;
    min-height: 80px;
  }
  .partner-logo img {
    max-height: 50px;
  }
}
@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.statistics-section {
  background: linear-gradient(135deg, #003b6c 0%, #003b6c 70%, #008aff 100%);
  position: relative;
  overflow: hidden;
}
.stat-item {
  padding: 2rem 1rem;
  text-align: center;
  color: white;
  position: relative;
  transition: all 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-10px);
}
.stat-item:hover .stat-icon i {
  transform: scale(1.2);
  color: #ffd700 !important;
}
.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.stat-icon i {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}
.stat-number {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  counter-reset: stat-counter;
}
.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.stat-suffix {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.stat-underline {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 2px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.stat-item:hover .stat-underline {
  width: 80px;
  background: linear-gradient(90deg, #ffed4e, #ffd700);
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stat-number.animate {
  animation: countUp 0.6s ease-out;
}
@media (max-width: 768px) {
  .stat-item {
    padding: 1.5rem 0.5rem;
    margin-bottom: 2rem;
  }
  .stat-number {
    font-size: 2.8rem;
  }
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  .stat-icon i {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 576px) {
  .statistics-section {
    padding: 3rem 0;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .stat-label {
    font-size: 1rem;
  }
}
.clean-stats-section {
  background: #f8fafc;
  padding: 80px 0;
}
.clean-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0;
  transition: all 0.3s ease;
}
.clean-stat-card:hover {
  transform: translateY(-5px);
}
.clean-stat-card:hover .stat-icon-box {
  background: linear-gradient(135deg, #011627, #003366);
  transform: scale(1.05);
}
.clean-stat-card:hover .stat-big-number {
  color: #008aff;
}
.stat-icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #003b6c, #008aff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 59, 108, 0.3);
}
.stat-icon-box .lucide {
  width: 32px;
  height: 32px;
  color: white;
  transition: all 0.3s ease;
}
.stat-content {
  flex: 1;
  padding-top: 8px;
}
.stat-big-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
  transition: all 0.3s ease;
}
.stat-description {
  color: #718096;
  margin: 0;
}
@keyframes cleanCountUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  60% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.stat-big-number.animate {
  animation: cleanCountUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 768px) {
  .clean-stats-section {
    padding: 60px 0;
  }
  .clean-stat-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 40px;
  }
  .stat-icon-box {
    width: 70px;
    height: 70px;
  }
  .stat-icon-box .lucide {
    width: 28px;
    height: 28px;
  }
  .stat-big-number {
    font-size: 2.8rem;
  }
  .stat-description {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .clean-stats-section {
    padding: 40px 0;
  }
  .stat-big-number {
    font-size: 2.2rem;
  }
  .stat-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 6px;
  }
  .stat-icon-box .lucide {
    width: 24px;
    height: 24px;
  }
}
.documents-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}
.documents-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 100"><defs><pattern id="docs-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(0,59,108,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23docs-pattern)"/></svg>');
  opacity: 0.6;
}
.documents-header {
  position: relative;
  z-index: 2;
}
.documents-header .section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 59, 108, 0.1);
  color: #003b6c;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 59, 108, 0.2);
}
.documents-header .section-badge .lucide {
  width: 16px;
  height: 16px;
}
.documents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.documents-category {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.documents-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f1f5f9;
}
.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}
.documents-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.document-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #003b6c;
  transition: all 0.3s ease;
}
.document-item:hover {
  background: #f1f5f9;
  transform: translateX(5px);
  border-left-color: #008aff;
}
.document-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 59, 108, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.document-icon .lucide {
  width: 20px;
  height: 20px;
  color: #003b6c;
}
.document-text {
  flex: 1;
}
.document-text p {
  margin-bottom: 0;
}
.documents-footer {
  position: relative;
  z-index: 2;
}
.info-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon .lucide {
  width: 32px;
  height: 32px;
  color: white;
}
.info-content {
  flex: 1;
  text-align: left;
}
.info-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.info-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.info-content .btn {
  display: inline-flex;
  align-items: center;
}
.info-content .btn i {
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .documents-section {
    padding: 60px 0;
  }
  .documents-header .section-title {
    font-size: 2rem;
  }
  .documents-header .section-subtitle {
    font-size: 1.1rem;
  }
  .documents-category {
    padding: 2rem 1.5rem;
  }
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .document-item {
    padding: 1.25rem;
  }
  .info-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
  .info-card .info-content {
    text-align: center;
  }
  .info-icon {
    width: 70px;
    height: 70px;
  }
  .info-icon .lucide {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 576px) {
  .documents-header .section-title {
    font-size: 1.75rem;
  }
  .documents-header .section-badge {
    font-size: 13px;
    padding: 10px 20px;
  }
  .documents-category {
    padding: 1.5rem 1rem;
  }
  .document-item {
    gap: 15px;
    padding: 1rem;
  }
  .document-icon {
    width: 35px;
    height: 35px;
  }
  .document-icon .lucide {
    width: 18px;
    height: 18px;
  }
  .info-card {
    padding: 1.5rem;
  }
}
.rounded-lg {
  border-radius: 40px !important;
}
.card {
  border-radius: 40px;
}
.card .card-body {
  padding: 2rem;
}
.partners-img {
  max-height: 160px;
}
.banner-news {
  height: 390px;
}
.banner-news img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner-login {
  background-image: url(../img/banner/banner-login.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
