@charset "UTF-8";
.dropdown-toggle::after {
  display: none;
}

/* Screen reader only class - скрывает контент визуально, но оставляет доступным для программ чтения с экрана */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Global cursor pointer for all interactive elements */
/* Force pointer cursor even with custom cursor - override cursor: none */
body,
html {
  cursor: auto !important;
}

/* Override cursor: none for all interactive elements */
a,
button,
.btn,
.nav-link,
.nav-item a,
[role=button],
input[type=submit],
input[type=button],
input[type=reset],
input[type=checkbox],
input[type=radio],
label[for],
select,
.cursor-pointer,
a *,
button *,
.btn *,
.nav-link *,
[data-cursor],
[data-cursor-text],
[data-bs-toggle],
[data-bs-target],
[data-bs-dismiss] {
  cursor: pointer !important;
}

/* Specific overrides for common interactive elements */
a:hover,
a:focus,
a:active,
button:hover,
button:focus,
button:active,
.btn:hover,
.btn:focus,
.btn:active,
.nav-link:hover,
.nav-link:focus,
.nav-link:active,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=submit]:active,
input[type=button]:hover,
input[type=button]:focus,
input[type=button]:active {
  cursor: pointer !important;
}

/* Topbar Phone */
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.topbar-phone i {
  color: var(--white-color);
  font-size: 16px;
}

.navbar-brand picture,
.navbar-brand img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.navbar-brand picture {
  max-width: 250px;
}
.navbar-brand picture img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.navbar-brand img {
  max-width: 250px;
  aspect-ratio: 220/39;
}
@media (min-width: 992px) {
  .navbar-brand picture {
    max-width: 280px;
  }
  .navbar-brand picture img {
    max-width: 220px;
    height: 39px;
    width: 220px;
  }
  .navbar-brand img {
    max-width: 280px;
    width: 220px !important;
    height: 39px !important;
  }
}
@media (max-width: 991px) {
  .navbar-brand picture {
    max-width: 180px;
  }
  .navbar-brand picture img {
    max-width: 200px;
    width: 200px;
    height: auto;
  }
  .navbar-brand img {
    max-width: 200px;
    width: 200px !important;
    height: auto !important;
  }
}

/* Header Right Section */
.header-right-section {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-right-section .btn-primary {
  background-color: #f7941d;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(247, 148, 29, 0.3);
  cursor: pointer !important;
}
.header-right-section .btn-primary:hover {
  background-color: #e6851a;
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.4);
  transform: translateY(-2px);
}
.header-right-section .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(247, 148, 29, 0.3);
}

.topbar-contact-info ul {
  gap: 1px !important;
}

.topbar-contact-info ul li a img {
  max-width: 35px !important;
  margin-right: 6px;
}

.topbar-offer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-offer .wrapper {
  position: relative;
  contain: layout style;
  width: 180px;
  height: 26px;
  min-width: 180px;
  min-height: 26px;
  max-width: 100%;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.topbar-offer .wrapper .topbar-phone {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  line-height: 26px;
}
.topbar-offer .wrapper a,
.topbar-offer .wrapper #topbar-phone-link {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 26px;
  contain: layout;
  flex-shrink: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.topbar-offer .wrapper a:focus-visible,
.topbar-offer .wrapper #topbar-phone-link:focus-visible {
  box-shadow: 0 0 0 2px var(--white-color);
}
.topbar-offer .wrapper .phone-text {
  position: absolute;
  left: 32px;
  top: 0;
  width: 140px;
  height: 26px;
  line-height: 26px;
  box-sizing: border-box;
  font-variant-numeric: tabular-nums;
  transform: translateZ(0);
  overflow: hidden;
  pointer-events: none;
}
.topbar-offer .wrapper a,
.topbar-offer .wrapper #topbar-phone-link {
  pointer-events: auto;
}

.topbar-phone a {
  color: var(--white-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease, color 0.2s ease;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer !important;
}
.topbar-phone a:hover {
  opacity: 0.9;
  color: var(--secondary-color);
}
.topbar-phone a:focus-visible {
  outline: none;
}
.topbar-phone a i {
  font-size: 20px;
}

.footer-contact-content a {
  color: var(--white-color);
  text-decoration: none;
  cursor: pointer !important;
}

.topbar {
  padding: 8px 0;
  position: relative;
  z-index: 101;
}
.topbar .container {
  contain: layout;
}
.topbar .topbar-row {
  height: 40px;
  min-height: 40px;
  contain: layout;
  align-items: center;
}
.topbar .topbar-col {
  min-height: 40px;
  contain: layout;
  display: flex;
  align-items: center;
}
.topbar .topbar-phone a i {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .topbar {
    padding: 7px 0;
  }
  .topbar .topbar-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .topbar .topbar-col {
    flex: 0 0 auto;
    width: auto;
    padding-left: 8px;
    padding-right: 8px;
  }
  .topbar .topbar-contact-info .header-social-icons ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px !important;
    margin: 0;
    padding: 0;
  }
  .topbar .topbar-contact-info .header-social-icons ul li {
    margin: 0;
  }
  .topbar .topbar-contact-info .header-social-icons ul li a {
    display: block;
    padding: 3px;
  }
  .topbar .topbar-contact-info .header-social-icons ul li a img {
    max-width: 24px !important;
    height: auto;
    margin-right: 0 !important;
  }
  .topbar .topbar-offer {
    justify-content: center;
  }
  .topbar .topbar-offer .topbar-phone {
    margin: 0;
  }
  .topbar .topbar-offer .topbar-phone a {
    font-size: 14px;
    gap: 6px;
    white-space: nowrap;
  }
  .topbar .topbar-offer .topbar-phone a i {
    font-size: 14px;
  }
  .topbar .header-top-dropdown .dropdown .dropdown-toggle {
    padding: 6px 10px;
    font-size: 14px;
    min-width: auto;
  }
  .topbar .header-top-dropdown .dropdown .dropdown-toggle i {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .topbar {
    padding: 6px 0;
  }
  .topbar .topbar-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .topbar .topbar-col {
    flex: 0 0 auto;
    width: auto;
    padding-left: 5px;
    padding-right: 5px;
  }
  .topbar .topbar-contact-info .header-social-icons ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px !important;
    margin: 0;
    padding: 0;
  }
  .topbar .topbar-contact-info .header-social-icons ul li {
    margin: 0;
  }
  .topbar .topbar-contact-info .header-social-icons ul li a {
    display: block;
    padding: 2px;
  }
  .topbar .topbar-contact-info .header-social-icons ul li a img {
    max-width: 20px !important;
    height: auto;
    margin-right: 0 !important;
  }
  .topbar .topbar-offer {
    justify-content: center;
  }
  .topbar .topbar-offer .topbar-phone {
    margin: 0;
  }
  .topbar .topbar-offer .topbar-phone a {
    font-size: 12px;
    gap: 4px;
    white-space: nowrap;
  }
  .topbar .topbar-offer .topbar-phone a i {
    font-size: 20px;
  }
  .topbar .topbar-offer .topbar-phone a .phone-text {
    display: inline;
  }
  .topbar .header-top-dropdown .dropdown .dropdown-toggle {
    padding: 4px 8px;
    font-size: 16px;
    min-width: auto;
  }
  .topbar .header-top-dropdown .dropdown .dropdown-toggle i {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .topbar .topbar-row {
    gap: 4px;
  }
  .topbar .topbar-contact-info .header-social-icons ul {
    gap: 1px !important;
  }
  .topbar .topbar-contact-info .header-social-icons ul li a img {
    max-width: 18px !important;
  }
  .topbar .topbar-offer .topbar-phone a {
    font-size: 20px;
  }
}

/* Products CTA Button - Same style as header */
.products .btn-primary,
.products .btn.btn-primary {
  background-color: #f7941d;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(247, 148, 29, 0.3);
  cursor: pointer !important;
}
.products .btn-primary:hover,
.products .btn.btn-primary:hover {
  background-color: #e6851a;
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.4);
  transform: translateY(-2px);
}
.products .btn-primary:active,
.products .btn.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(247, 148, 29, 0.3);
}
.products .btn-characteristics,
.products .btn.btn-characteristics {
  background-color: #ffffff;
  color: #22489e;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 0px;
  border: 2px solid #22489e;
  text-decoration: none;
  display: inline-block;
  max-width: 200px;
  min-width: 150px;
  width: auto;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(34, 72, 158, 0.1);
  cursor: pointer !important;
}
.products .btn-characteristics:hover,
.products .btn.btn-characteristics:hover {
  background-color: #22489e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(34, 72, 158, 0.3);
  transform: translateY(-2px);
}
.products .btn-characteristics:active,
.products .btn.btn-characteristics:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(34, 72, 158, 0.2);
}

/* Contact Form Styles */
.contact-form-box {
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  background-color: #fff;
  margin-bottom: 100px !important;
}
@media (max-width: 767px) {
  .contact-form-box {
    padding: 30px 20px;
  }
}
.contact-form-box .form-control {
  border: 1px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 12px 15px;
  transition: all 0.3s ease;
}
.contact-form-box .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  outline: none;
}
.contact-form-box .form-control::placeholder {
  color: #999;
}
.contact-form-box textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Contact Tabs Styles */
.catalog.info.contact {
  padding: 0;
  background-color: #f8f9fa;
}
.catalog.info.contact .header {
  margin-bottom: 30px;
}
.catalog.info.contact .header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}
.catalog.info.contact .tabs {
  margin-bottom: 20px;
  gap: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* Mobile Dropdown */
}
.catalog.info.contact .tabs #cityTabs {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.catalog.info.contact .tabs #cityTabs .btn-default {
  margin: 0;
  position: relative;
}
.catalog.info.contact .tabs #cityTabs .btn-default.active {
  background: var(--accent-color) !important;
  color: var(--white-color) !important;
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.catalog.info.contact .tabs #cityTabs .btn-default.active::before {
  background: var(--accent-color);
  width: 100%;
  transform: skew(0deg);
  left: 0;
  opacity: 1;
}
.catalog.info.contact .tabs #cityTabs .btn-default.active:hover {
  background-color: var(--accent-color) !important;
  color: var(--white-color) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.catalog.info.contact .tabs #cityTabs .btn-default:not(.active) {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.catalog.info.contact .tabs #cityTabs .btn-default:not(.active):hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.catalog.info.contact .tabs .dropmenu {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}
.catalog.info.contact .tabs .dropmenu .current {
  cursor: pointer;
  padding: 12px 20px;
  border: 2px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  position: relative;
  text-align: left;
}
.catalog.info.contact .tabs .dropmenu .current::after {
  content: "\F107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.catalog.info.contact .tabs .dropmenu .list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 2px solid #ddd;
  border-top: none;
  border-radius: 0 0 5px 5px;
  z-index: 1000;
  margin-top: -2px;
}
.catalog.info.contact .tabs .dropmenu .list span {
  display: block;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.catalog.info.contact .tabs .dropmenu .list span:hover {
  background-color: #f8f9fa;
  color: #f7941d;
}
.catalog.info.contact .tabs .dropmenu .list span:last-child {
  border-radius: 0 0 5px 5px;
}
.catalog.info.contact .map {
  position: relative;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container {
  position: relative;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row {
  height: 100%;
  align-items: center;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box {
  pointer-events: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info {
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info .title.icon-pointer::before {
  content: "\F3C5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--accent-color);
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info .title.icon-phone::before {
  content: "\F095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--accent-color);
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info .address {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info .work-time {
  color: #777;
  margin: 15px 0;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info a {
  color: var(--accent-color);
  text-decoration: none;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info a:hover {
  text-decoration: underline;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info hr {
  margin: 20px 0;
  border-color: #eee;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info .phones {
  margin-bottom: 20px;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info .phones .phone {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info .btn-primary {
  background-color: #f7941d;
  border-color: #f7941d;
  padding: 12px 30px;
  font-weight: 600;
}
.catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info .btn-primary:hover {
  background-color: #e6851a;
  border-color: #e6851a;
}

@media (max-width: 991px) {
  .catalog.info.contact .map .tab-content .tab-pane .map-wrapper {
    height: 500px;
  }
  .catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .catalog.info.contact .map .tab-content .tab-pane .map-wrapper {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .catalog.info.contact .map .tab-content .tab-pane .map-wrapper .google-map {
    position: relative;
    height: 300px;
    width: 100%;
  }
  .catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container {
    position: static;
    height: auto;
    pointer-events: auto;
  }
  .catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row {
    height: auto;
    align-items: flex-start;
  }
  .catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0 !important;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .catalog.info.contact .map .tab-content .tab-pane .map-wrapper .container .row .contact-info-box .info {
    padding: 20px !important;
  }

  .products ul {
    display: none;
  }

  .products-list {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .products-list .product {
    padding-left: 7.5px;
    padding-right: 7.5px;
    margin-bottom: 20px;
  }

  .product .right {
    width: 100%;
    max-width: 140px;
  }

  .product .text-center {
    width: 100%;
    max-width: 320px;
  }
}
@media (min-width: 992px) {
  .offset-lg-6 {
    margin-left: 60%;
  }
}
#products .product {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#products .product .right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.products {
  padding-top: 50px;
  padding-bottom: 50px;
}

.products h2 {
  width: 100% !important;
}

.product .text-center img {
  width: 100%;
  margin-top: 30px;
  height: auto;
  object-fit: contain;
  aspect-ratio: 320/300;
}

.products .title {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 10px;
}

.product .cost {
  font-size: 20px;
  line-height: 32px;
  margin: 0;
}

.products ul {
  list-style: none;
}

.product .btn {
  width: 100%;
  min-width: 100%;
}

#products h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
}

#products h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}

.payment {
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(135deg, rgba(20, 24, 62, 0.85) 0%, rgba(20, 24, 62, 0.8) 100%), url(../images/bp_payment.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.payment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(52, 80, 163, 0.2) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(27, 47, 107, 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.payment::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
  pointer-events: none;
}

.payment-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.payment-header {
  margin-bottom: 30px;
}

.payment-icon {
  margin-bottom: 15px;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
.payment-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 12px rgba(247, 148, 29, 0.3));
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}
.payment .display-3 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #f7941d;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(247, 148, 29, 0.2);
}
@media (max-width: 768px) {
  .payment .display-3 {
    font-size: 28px;
  }
}

.payment-subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .payment-subtitle {
    font-size: 18px;
  }
}

.payment-divider {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f7941d, transparent);
  margin: 0 auto 20px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(247, 148, 29, 0.4);
}

.payment-description {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .payment-description {
    font-size: 14px;
  }
}

.payment-comparison {
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .payment-comparison {
    margin-top: 25px;
    margin-bottom: 15px;
  }
}

.payment-comparison-text {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .payment-comparison-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .payment-options {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 20px;
  }
}

.payment-option {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}
.payment-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .payment-option {
    padding: 15px;
  }
}

.payment-option-discount {
  border-color: rgba(247, 148, 29, 0.3);
}
.payment-option-discount:hover {
  border-color: rgba(247, 148, 29, 0.5);
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.2);
}

.payment-option-installment {
  border-color: rgba(255, 87, 34, 0.3);
  opacity: 0.9;
}
.payment-option-installment:hover {
  border-color: rgba(255, 87, 34, 0.5);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
  opacity: 1;
}

.payment-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-option-icon {
  font-size: 28px;
  line-height: 1;
}
@media (max-width: 768px) {
  .payment-option-icon {
    font-size: 24px;
  }
}

.payment-option h3 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .payment-option h3 {
    font-size: 18px;
  }
}

.payment-option-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
}
.payment-option-benefit strong {
  color: white;
  font-weight: 600;
}
@media (max-width: 768px) {
  .payment-option-benefit {
    font-size: 13px;
  }
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  font-size: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.payment-option-benefit .benefit-icon {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.payment-option-benefit.payment-option-warning .benefit-icon,
.benefit-icon-warning {
  background: rgba(255, 152, 0, 0.2);
  color: #ff9800;
}

.payment-form {
  margin-bottom: 25px;
}

.payment-form-row {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .payment-form-row {
    flex-direction: column;
    gap: 15px;
  }
}

.payment-form-group {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}
@media (max-width: 768px) {
  .payment-form-group {
    width: 100%;
    max-width: 100%;
  }
}

.payment-form-group-btn {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .payment-form-group-btn {
    width: 100%;
  }
}

.payment-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.payment-input-icon {
  position: absolute;
  left: 15px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.payment-input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.payment-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.payment-input:focus {
  outline: none;
  border-color: #f7941d;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(247, 148, 29, 0.3);
}
.payment-input:focus + .payment-input-icon, .payment-input:focus ~ .payment-input-icon {
  opacity: 1;
}
.payment-input:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.payment-btn {
  min-width: 180px;
  width: 100%;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  background-color: #f7941d;
  color: white;
  box-shadow: 0 2px 8px rgba(247, 148, 29, 0.3);
  border-radius: 4px;
  border: none;
  position: relative;
  overflow: hidden;
}
.payment-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.payment-btn:hover {
  background-color: #e6851a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.4);
}
.payment-btn:hover::before {
  left: 100%;
}
.payment-btn:hover svg {
  transform: translateX(3px);
}
.payment-btn:active {
  transform: translateY(0);
  background-color: #e6851a;
  box-shadow: 0 2px 6px rgba(247, 148, 29, 0.3);
}
.payment-btn svg {
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .payment-btn {
    width: 100%;
  }
}

.payment-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .payment-features {
    gap: 15px;
    margin-top: 15px;
  }
}

.payment-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.payment-feature-item:hover {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .payment-feature-item {
    font-size: 14px;
  }
}

.payment-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f7941d, #e6851a);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(247, 148, 29, 0.4);
  flex-shrink: 0;
}

.payment-logo {
  margin-top: 25px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .payment-logo {
    margin-top: 20px;
    padding-top: 15px;
  }
}

.iutecredit-logo {
  max-width: 160px;
  height: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}
.iutecredit-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .iutecredit-logo {
    max-width: 120px;
  }
}

.schema {
  background: url(../images/scema-bg.jpg) no-repeat center 140px;
  background-size: 38.9%;
  padding-top: 75px;
  padding-bottom: 25px;
}

@media (max-width: 991px) {
  .schema {
    background: none;
  }
}
.schema-image-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.schema-image {
  max-width: 100%;
  max-height: 400px;
  height: auto;
  display: inline-block;
  object-fit: contain;
}

@media (min-width: 992px) {
  .schema-image {
    max-width: 500px;
    max-height: 450px;
  }
}
.schema h2 {
  width: 62%;
  text-align: center;
  margin: 0 auto 110px auto;
}

.schema li {
  list-style: none;
  margin-bottom: 90px;
  position: relative;
  z-index: 9;
  cursor: pointer;
  transition: all 0.3s linear;
}

.schema ul li:last-child {
  margin-top: 110px;
}

.schema ul {
  padding-left: 0;
}

.schema ul.padding {
  padding-left: 30px;
}

.schema p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  transition: all 0.3s linear;
}

.schema p.title {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 20px;
}

.schema li:hover p,
.schema li.active p {
  color: #22489e;
  transition: all 0.3s linear;
  opacity: 1;
}

.schema.activated li {
  opacity: 0.5 !important;
}

.schema.activated li:hover,
.schema.activated li.active {
  opacity: 1 !important;
}

.schema .full {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #22489e;
  border-bottom: #22489e dotted 1px;
  font-size: 15px;
  line-height: 22px;
}

.schema .full:hover {
  text-decoration: none;
  border: none;
}

.schema .marker {
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #f7941d;
  transition: all 0.3s linear;
}

.schema .marker:before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.schema li:hover .marker,
.schema li.active .marker {
  transform: scale(1.7);
  background-color: #22489e;
  transition: all 0.3s linear;
}

#marker-1 {
  right: -408px;
  bottom: -40px;
}

#marker-2 {
  right: -440px;
  bottom: 5px;
}

#marker-3 {
  right: -445px;
  bottom: 140px;
}

#marker-4 {
  left: -270px;
  bottom: -50px;
}

#marker-5 {
  left: -220px;
  bottom: 40px;
}

#marker-6 {
  left: -225px;
  bottom: 90px;
}

/* Schema Tablet Responsive Styles */
@media (min-width: 768px) and (max-width: 991px) {
  .schema {
    padding-top: 55px;
    padding-bottom: 30px;
  }

  .schema .container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .schema h2 {
    width: 85%;
    margin: 0 auto 35px auto;
    font-size: 26px;
    line-height: 1.4;
  }

  .schema-image-wrapper {
    margin-bottom: 45px;
  }

  .schema-image {
    max-width: 55%;
    max-height: 350px;
  }

  .schema li {
    margin-bottom: 35px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 72, 158, 0.1);
  }

  .schema li:hover,
.schema li.active {
    background-color: rgba(34, 72, 158, 0.05);
    box-shadow: 0 5px 18px rgba(34, 72, 158, 0.2);
    transform: translateY(-3px);
    border-color: rgba(34, 72, 158, 0.25);
  }

  .schema ul li:last-child {
    margin-top: 0;
    margin-bottom: 0;
  }

  .schema p.title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #22489e;
    line-height: 1.3;
  }

  .schema p {
    font-size: 15px;
    line-height: 22px;
    color: #555;
    margin-bottom: 0;
  }

  .schema li:hover p,
.schema li.active p {
    color: #22489e;
  }

  .schema ul.padding {
    padding-left: 0;
  }

  /* Hide markers and center column on tablet */
  .schema .marker {
    display: none;
  }

  .schema .center {
    display: none;
  }

  /* Optimize column layout for tablet - use 2 columns */
  .schema .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }

  .schema .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .schema .col-md-4:first-child {
    margin-bottom: 0;
  }

  .schema .col-md-4:last-child {
    margin-top: 0;
  }

  /* Add visual separator between columns */
  .schema .col-md-4:first-child {
    position: relative;
    padding-right: 25px;
  }

  .schema .col-md-4:last-child {
    padding-left: 25px;
  }

  .schema .col-md-4:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(34, 72, 158, 0.15), rgba(34, 72, 158, 0.15), transparent);
    border-radius: 1px;
  }

  /* Improve list spacing on tablet */
  .schema ul {
    margin-bottom: 0;
  }

  .schema .col-md-4:last-child ul {
    margin-top: 0;
  }
}
/* Schema Mobile Responsive Styles (small tablets and phones) */
@media (max-width: 767px) {
  .schema {
    padding-top: 40px;
    padding-bottom: 15px;
  }

  .schema .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .schema h2 {
    width: 100%;
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 1.3;
    padding: 0;
  }

  .schema-image-wrapper {
    margin-bottom: 30px;
  }

  .schema-image {
    max-width: 80%;
  }

  .schema li {
    margin-bottom: 30px;
    padding: 18px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(34, 72, 158, 0.1);
  }

  .schema li:hover,
.schema li.active {
    background-color: rgba(34, 72, 158, 0.05);
    box-shadow: 0 4px 16px rgba(34, 72, 158, 0.2);
    transform: translateY(-3px);
    border-color: rgba(34, 72, 158, 0.3);
  }

  .schema ul li:last-child {
    margin-bottom: 0;
    margin-top: 0;
  }

  .schema p.title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #22489e;
  }

  .schema p {
    font-size: 13px;
    line-height: 18px;
    color: #555;
    margin-bottom: 0;
  }

  .schema li:hover p,
.schema li.active p {
    color: #22489e;
  }

  .schema .marker {
    display: none;
  }

  .schema .center {
    display: none;
  }

  /* Stack columns vertically on mobile and reset all paddings/margins */
  .schema .row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .schema .col-12,
.schema .col-md-4 {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .schema .col-12:last-child,
.schema .col-md-4:last-child {
    margin-bottom: 0;
  }

  /* Reset ul padding on mobile */
  .schema ul {
    padding-left: 0;
    margin-bottom: 0;
  }

  .schema ul.padding {
    padding-left: 0;
  }

  /* Add visual separator between left and right groups on mobile */
  .schema .col-12:first-of-type,
.schema .col-md-4:first-of-type {
    margin-bottom: 30px;
  }

  .schema .col-12:first-of-type::after,
.schema .col-md-4:first-of-type::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #22489e, #f7941d);
    margin: 20px auto 0;
    border-radius: 2px;
  }
}
@media (max-width: 480px) {
  .schema {
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .schema .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .schema h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .schema-image-wrapper {
    margin-bottom: 25px;
  }

  .schema-image {
    max-width: 90%;
  }

  .schema li {
    padding: 12px;
    margin-bottom: 20px;
  }

  .schema p.title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .schema p {
    font-size: 12px;
    line-height: 17px;
  }

  /* Ensure no extra padding on very small screens */
  .schema .row {
    margin-left: 0;
    margin-right: 0;
  }

  .schema .col-12,
.schema .col-md-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .schema ul {
    padding-left: 0;
  }
}
/* Popup styles */
#callback .modal-content {
  border-radius: 0px;
  border: none;
}

#callback h2 {
  margin-bottom: 20px;
}

#callback button {
  cursor: pointer !important;
}

.wrapper-callback .callback-image {
  padding: 0;
  margin: 0;
}

.modal {
  --bs-modal-width: 705px;
  margin: 0 auto;
}

.modal-dialog .col-md-6 {
  padding: 60px 15px 20px 20px;
}

.modal-dialog p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
}

.modal-dialog h2 + p {
  margin-bottom: 30px;
}

.modal-dialog .form-control {
  margin-bottom: 16px;
}

.modal-dialog .form-label,
#callback .form-label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}

.modal-dialog .btn {
  min-width: 100%;
  width: 100%;
  margin-bottom: 16px;
  cursor: pointer !important;
}

#callback .modal-dialog .btn,
#callback .modal-dialog button.btn,
#callback button.btn-primary {
  cursor: pointer !important;
}

#callback .btn-primary {
  background-color: #f7941d;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(247, 148, 29, 0.3);
  cursor: pointer !important;
}
#callback .btn-primary:hover {
  background-color: #e6851a;
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.4);
  transform: translateY(-2px);
}
#callback .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(247, 148, 29, 0.3);
}

#review-popup .modal-content {
  padding: 60px 90px 60px 90px;
}

#review-popup .modal-dialog .col-md-6 {
  padding: 0 15px 0 15px;
}

#review-popup textarea {
  line-height: 30px;
  height: 160px;
}

#review-popup .btn {
  width: 280px;
  min-width: 280px;
}

#question-popup .modal-content {
  padding: 60px 90px 60px 90px;
}

#question-popup .modal-dialog .col-md-6 {
  padding: 0 15px 0 15px;
}

#question-popup textarea {
  line-height: 30px;
  height: 160px;
}

#question-popup .btn {
  width: 280px;
  min-width: 280px;
}

#calculate-popup .col-6 {
  border-left: #e8e8e8 solid 1px;
}

#calculate-popup .col-auto img {
  margin-top: 50px;
}

#calculate-popup .logo {
  position: absolute;
  left: 40px;
  bottom: 55px;
  display: block;
  width: 180px;
  height: 30px;
  background: url(img/logo-gray.png) no-repeat left bottom;
}

.popup-info {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 100%;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: white;
  box-shadow: 0 0 110px rgba(0, 0, 0, 0.35);
  z-index: 100;
  padding: 60px 0;
  overflow: hidden;
  overflow-y: scroll;
}

.popup-info.popup-menu {
  top: 0;
  bottom: 0;
  right: auto;
  left: -1150px;
  padding: 0;
  overflow: hidden;
}

.popup-info.popup-menu .row,
.popup-info.popup-menu h2 {
  padding: 0 20px;
}

.popup-info.popup-menu .bg {
  background: #f7f9fa;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: #e8e8e8 solid 1px;
  border-bottom: #e8e8e8 solid 1px;
  margin-bottom: 15px;
}

.popup-info.popup-menu h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 100px;
  color: #3a3a3a;
  margin-bottom: 0;
}

.popup-info.popup-menu .row-menu b {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #21499b;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.popup-info.popup-menu .row-menu a {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #20263c;
  margin-bottom: 10px;
}

.close-popup-info {
  opacity: 1;
  position: fixed;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  display: none;
  background: #21499b url(img/close-white.png) no-repeat center center;
  transition: all 0.3s linear;
  z-index: 999;
}

.close-popup-info:hover {
  background-image: url(img/close.png);
  background-color: white;
  transition: all 0.3s linear;
}

.popup-menu-close {
  opacity: 0;
  position: fixed;
  top: -100px;
  left: 714px;
  width: 56px;
  height: 56px;
  /*display: none;*/
  background: #21499b url(img/close-white.png) no-repeat center center;
  transition: all 0.3s linear;
  z-index: 999;
}

.popup-menu-close:hover {
  background-image: url(img/close.png);
  background-color: white;
  transition: all 0.3s linear;
}

.open-popup-info .close-popup-info {
  display: block;
}

.wrapper-callback {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.modal-content .close {
  cursor: pointer !important;
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 20px;
  border: none;
  background: none;
}

#numbers {
  padding-top: 60px;
  padding-bottom: 75px;
  margin-top: 60px;
}

.numbers {
  padding-top: 60px;
  padding-bottom: 75px;
}

.numbers .col-4 {
  border-left: #e8e8e8 solid 1px;
}

.numbers .col-4:first-child {
  border: none;
}

.numbers p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #20263c;
}

.numbers p.title {
  position: relative;
  /*font-family: 'Avenir';*/
  font-weight: 700;
  font-size: 120px;
  line-height: 120px;
  color: #22489e;
  background: url(../images/branch.png) no-repeat center center;
  margin-bottom: 10px;
}

.numbers p.title .small {
  position: absolute;
  /*font-family: 'Avenir';*/
  font-weight: 700;
  /*???*/
  font-size: 22px;
  margin-left: -20px;
  margin-top: 2px;
}

/* Callback Modal Alternative Contacts */
.callback-alternative-contacts {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
.callback-alternative-contacts p {
  color: #666;
  font-size: 14px;
}

.callback-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.callback-social-link {
  display: inline-block;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.callback-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.callback-social-link:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.free table td {
  border: #e1e1e1 solid 1px;
  padding: 45px;
  width: 33%;
}

#services h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}

.swiper-container-free-services {
  position: relative;
}
.swiper-container-free-services .swiper-slide {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  padding-top: 50px;
  transition: all 0.3s ease;
  position: relative;
}
.swiper-container-free-services .swiper-slide.service-included {
  border: 2px solid rgba(76, 175, 80, 0.5);
}
.swiper-container-free-services .swiper-slide.service-paid {
  border: 2px solid rgba(255, 152, 0, 0.5);
}
.swiper-container-free-services .swiper-slide .service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
}
.swiper-container-free-services .swiper-slide .badge-included {
  background: rgba(76, 175, 80, 0.9);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.swiper-container-free-services .swiper-slide .badge-paid {
  background: rgba(255, 152, 0, 0.9);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.swiper-container-free-services .swiper-slide img {
  width: 70%;
  max-width: 120px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
}
.swiper-container-free-services .swiper-slide .title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.swiper-container-free-services .swiper-slide p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.swiper-container-free-services .services-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 0px;
  padding-top: 20px;
}
.swiper-container-free-services .carousel-left,
.swiper-container-free-services .carousel-right {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.swiper-container-free-services .carousel-left svg,
.swiper-container-free-services .carousel-right svg {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.swiper-container-free-services .carousel-left circle,
.swiper-container-free-services .carousel-right circle {
  transition: all 0.3s ease;
}
.swiper-container-free-services .carousel-left path,
.swiper-container-free-services .carousel-right path {
  transition: all 0.3s ease;
}
.swiper-container-free-services .carousel-left:hover,
.swiper-container-free-services .carousel-right:hover {
  transform: scale(1.1);
}
.swiper-container-free-services .carousel-left:hover circle,
.swiper-container-free-services .carousel-right:hover circle {
  fill: #f7941d;
  stroke: #f7941d;
}
.swiper-container-free-services .carousel-left:hover path,
.swiper-container-free-services .carousel-right:hover path {
  stroke: white;
}
.swiper-container-free-services .carousel-left:active,
.swiper-container-free-services .carousel-right:active {
  transform: scale(0.95);
}

#services,
#products {
  margin-bottom: 20px;
  margin-top: 20px;
}

.section-title h2 {
  font-size: 32px;
}

.floating-call-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #f7941d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.4);
  z-index: 999;
  transition: all 0.3s ease-in-out;
  border: none;
  padding: 0;
  color: white;
  cursor: pointer !important;
}
@media (min-width: 992px) {
  .floating-call-button {
    display: none !important;
  }
}
.floating-call-button i {
  font-size: 24px;
  color: white;
  transform: scaleX(-1);
}
.floating-call-button:hover {
  background-color: #e6851a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.5);
  color: white;
}
.floating-call-button:hover i {
  transform: scaleX(-1);
}
.floating-call-button:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
}
.floating-call-button:active i {
  transform: scaleX(-1);
}
.floating-call-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #f7941d;
  opacity: 0.6;
  animation: pulse-ring 2s ease-out infinite;
}
@media (max-width: 767px) {
  .floating-call-button {
    width: 56px;
    height: 56px;
    bottom: 20px;
    left: 20px;
  }
  .floating-call-button i {
    font-size: 22px;
    transform: scaleX(-1);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .floating-call-button {
    width: 58px;
    height: 58px;
    bottom: 25px;
    right: 25px;
  }
  .floating-call-button i {
    font-size: 23px;
    transform: scaleX(-1);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.hero.hero-slider-layout {
  --hero-orange: #f7941d;
}
.hero.hero-slider-layout .swiper {
  position: relative;
}
.hero.hero-slider-layout .hero-slide {
  position: relative;
  min-height: 720px;
  height: 720px;
}
.hero.hero-slider-layout .hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(13, 17, 23, 0.82) 0%, rgba(13, 17, 23, 0.45) 48%, rgba(13, 17, 23, 0.25) 100%);
}
.hero.hero-slider-layout .hero-slider-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero.hero-slider-layout .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero.hero-slider-layout .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
  padding: 48px 0 108px;
}
.hero.hero-slider-layout .hero-content,
.hero.hero-slider-layout .hero-form-card,
.hero.hero-slider-layout .hero-features-bar,
.hero.hero-slider-layout .hero-nav,
.hero.hero-slider-layout .hero-pagination {
  pointer-events: auto;
}
.hero.hero-slider-layout .hero-overlay__row {
  align-items: center;
}
.hero.hero-slider-layout .hero-content {
  max-width: 640px;
}
.hero.hero-slider-layout .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
.hero.hero-slider-layout .hero-badge__star {
  color: #ffc107;
  font-size: 15px;
}
.hero.hero-slider-layout .hero-title {
  margin: 0 0 16px;
  max-width: 640px;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero.hero-slider-layout .hero-title__accent {
  color: var(--hero-orange);
}
.hero.hero-slider-layout .hero-lead {
  margin: 0 0 28px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.55;
}
.hero.hero-slider-layout .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 24px;
}
.hero.hero-slider-layout .hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  background: var(--hero-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero.hero-slider-layout .hero-btn-primary:hover, .hero.hero-slider-layout .hero-btn-primary:focus {
  background: #e08510;
  color: #fff;
  transform: translateY(-1px);
}
.hero.hero-slider-layout a.hero-video-btn,
.hero.hero-slider-layout .hero-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
.hero.hero-slider-layout a.hero-video-btn:hover,
.hero.hero-slider-layout .hero-video-btn:hover {
  opacity: 0.88;
  color: #fff;
  text-decoration: none;
}
.hero.hero-slider-layout .hero-video-btn__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  font-size: 14px;
}
.hero.hero-slider-layout .hero-video-btn__play i {
  margin-left: 3px;
}
.hero.hero-slider-layout .hero-video-btn__text {
  max-width: 220px;
}
.hero.hero-slider-layout .hero-form-card {
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(18, 22, 29, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}
.hero.hero-slider-layout .hero-form-card__title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}
.hero.hero-slider-layout .hero-form-card__subtitle {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}
.hero.hero-slider-layout .hero-form-field {
  position: relative;
  margin-bottom: 14px;
}
.hero.hero-slider-layout .hero-form-field > i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-size: 16px;
  pointer-events: none;
}
.hero.hero-slider-layout .hero-form-input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 15px;
}
.hero.hero-slider-layout .hero-form-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.hero.hero-slider-layout .hero-form-input:focus {
  outline: none;
  border-color: rgba(247, 148, 29, 0.65);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}
.hero.hero-slider-layout .hero-form-message {
  min-height: 1.25em;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.4;
}
.hero.hero-slider-layout .hero-form-message.is-error {
  color: #ff8a8a;
}
.hero.hero-slider-layout .hero-form-message.is-success {
  color: #8fe3a0;
}
.hero.hero-slider-layout .hero-form-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  border: none;
  border-radius: 10px;
  background: var(--hero-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.hero.hero-slider-layout .hero-form-submit:hover, .hero.hero-slider-layout .hero-form-submit:focus {
  background: #e08510;
  color: #fff;
}
.hero.hero-slider-layout .hero-form-submit:disabled {
  opacity: 0.7;
}
.hero.hero-slider-layout .hero-form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}
.hero.hero-slider-layout .hero-form-privacy i {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}
.hero.hero-slider-layout .hero-features-bar {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 4;
  padding: 0;
  background: none;
  border: none;
  pointer-events: none;
}
.hero.hero-slider-layout .hero-features-bar .container {
  pointer-events: auto;
}
.hero.hero-slider-layout .hero-features {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 14px 6px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(13, 17, 23, 0.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.hero.hero-slider-layout .hero-features__item {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}
.hero.hero-slider-layout .hero-features__item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero.hero-slider-layout .hero-features__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.hero.hero-slider-layout .hero-features__icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.hero.hero-slider-layout .hero-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(13, 17, 23, 0.55);
  color: #fff;
  font-size: 16px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  pointer-events: auto;
}
.hero.hero-slider-layout .hero-nav:hover {
  background: rgba(13, 17, 23, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.hero.hero-slider-layout .hero-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.hero.hero-slider-layout .hero-nav-prev {
  left: 24px;
}
.hero.hero-slider-layout .hero-nav-next {
  right: 24px;
}
.hero.hero-slider-layout .hero-pagination {
  position: absolute;
  bottom: 108px !important;
  left: 0 !important;
  right: 0;
  z-index: 5;
  width: 100% !important;
  text-align: center !important;
  padding: 0 !important;
  pointer-events: auto;
}
.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  opacity: 1;
  transition: width 0.3s ease, background 0.3s ease;
}
.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
  width: 32px;
  background: var(--hero-orange);
}
.hero.hero-slider-layout .hero-video-modal .modal-content {
  overflow: hidden;
  border: none;
  border-radius: 12px;
  background: #12161d;
}
.hero.hero-slider-layout .hero-video-modal .btn-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero.hero-slider-layout .hero-slide {
    min-height: 620px;
    height: 620px;
  }
  .hero.hero-slider-layout .hero-overlay {
    padding: 40px 0 100px;
  }
  .hero.hero-slider-layout .hero-form-card {
    padding: 22px 20px 20px;
  }
  .hero.hero-slider-layout .hero-features__item {
    padding: 0 10px;
    font-size: 12px;
  }
  .hero.hero-slider-layout .hero-nav-prev {
    left: 12px;
  }
  .hero.hero-slider-layout .hero-nav-next {
    right: 12px;
  }
}
@media (max-width: 767px) {
  .hero.hero-slider-layout .hero-slide {
    min-height: 880px;
    height: 880px;
  }
  .hero.hero-slider-layout .hero-slide::after {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.2) 0%, rgba(13, 17, 23, 0.65) 42%, rgba(13, 17, 23, 0.92) 100%);
  }
  .hero.hero-slider-layout .hero-overlay {
    justify-content: flex-start;
    padding: 16px 0 200px;
  }
  .hero.hero-slider-layout .hero-content {
    max-width: none;
  }
  .hero.hero-slider-layout .hero-badge {
    margin-bottom: 14px;
    font-size: 12px;
  }
  .hero.hero-slider-layout .hero-title {
    font-size: 28px;
  }
  .hero.hero-slider-layout .hero-lead {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .hero.hero-slider-layout .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .hero.hero-slider-layout .hero-btn-primary {
    display: none;
  }
  .hero.hero-slider-layout .hero-form-card {
    margin-top: 4px;
  }
  .hero.hero-slider-layout .hero-features-bar {
    bottom: 12px;
    padding: 0 8px;
  }
  .hero.hero-slider-layout .hero-features-bar .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }
  .hero.hero-slider-layout .hero-features {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 12px;
    padding: 12px 12px;
    scrollbar-width: none;
  }
  .hero.hero-slider-layout .hero-features::-webkit-scrollbar {
    display: none;
  }
  .hero.hero-slider-layout .hero-features__item {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 220px;
    padding: 0 14px;
    scroll-snap-align: start;
  }
  .hero.hero-slider-layout .hero-features__item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .hero.hero-slider-layout .hero-features__text {
    font-size: 12px;
    line-height: 1.3;
  }
  .hero.hero-slider-layout .hero-nav {
    display: none;
  }
  .hero.hero-slider-layout .hero-pagination {
    bottom: 90px !important;
  }
}
@media (max-width: 480px) {
  .hero.hero-slider-layout .hero-title {
    font-size: 24px;
  }
  .hero.hero-slider-layout .hero-form-card__title {
    font-size: 22px;
  }
  .hero.hero-slider-layout .hero-features__item {
    min-width: 180px;
    max-width: 200px;
  }
}

.swiper-container-numbers {
  position: relative;
  overflow: visible;
  padding: 0;
}
.swiper-container-numbers .swiper-numbers {
  overflow: visible;
}
.swiper-container-numbers .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.swiper-container-numbers .swiper-slide {
  width: auto;
  flex-shrink: 0;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-container-numbers .number-slider {
  text-align: center;
  padding: 20px 15px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.swiper-container-numbers .number-slider p.title {
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
  color: #22489e;
  margin-bottom: 10px;
  position: relative;
  background: url(../images/branch.png) no-repeat center center !important;
  background-size: contain !important;
  min-height: 90px;
  order: 1;
  width: 100%;
  display: block;
  padding: 0;
}
.swiper-container-numbers .number-slider p {
  font-size: 18px;
  line-height: 1.4;
  color: #20263c;
  margin: 0;
  order: 2;
}
@media (max-width: 480px) {
  .swiper-container-numbers {
    padding: 0;
  }
  .swiper-container-numbers .number-slider {
    padding: 15px 10px;
  }
  .swiper-container-numbers .number-slider .title {
    font-size: 70px;
  }
  .swiper-container-numbers .number-slider p {
    font-size: 16px;
  }
}

.about-description-photos {
  padding: 120px 0;
  background-color: #fff;
}
.about-description-photos .about-description-content .section-title {
  margin-bottom: 0;
}
.about-description-photos .about-description-content .section-title p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}
.about-description-photos .about-description-content .section-title p:last-child {
  margin-bottom: 0;
}
.about-description-photos .about-description-images figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}
.about-description-photos .about-description-images figure img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.about-description-photos .about-description-images figure img:hover {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .about-description-photos {
    padding: 80px 0;
  }
  .about-description-photos .about-description-content {
    margin-bottom: 40px;
  }
  .about-description-photos .about-description-images figure img {
    height: 200px;
  }
}

.our-stores {
  padding: 120px 0;
  background-color: #f8f9fa;
}
.our-stores .section-title {
  margin-bottom: 60px;
}
.our-stores .section-title p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}
.our-stores .store-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.our-stores .store-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.our-stores .store-item .store-image figure {
  margin: 0;
  overflow: hidden;
  height: 250px;
}
.our-stores .store-item .store-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.our-stores .store-item:hover .store-image figure img {
  transform: scale(1.1);
}
.our-stores .store-item .store-content {
  padding: 25px;
}
.our-stores .store-item .store-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #20263c;
}
.our-stores .store-item .store-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
@media (max-width: 991px) {
  .our-stores {
    padding: 80px 0;
  }
  .our-stores .section-title {
    margin-bottom: 40px;
  }
  .our-stores .store-item {
    margin-bottom: 30px;
  }
  .our-stores .store-item .store-image figure {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .our-stores {
    padding: 60px 0;
  }
  .our-stores .store-item .store-content {
    padding: 20px;
  }
  .our-stores .store-item .store-content h3 {
    font-size: 20px;
  }
  .our-stores .store-item .store-content p {
    font-size: 14px;
  }
}

.footer-logo img {
  max-width: 250px;
}

.text-bold {
  font-weight: 600;
}

.our-testimonial-btt {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  background: var(--primary-color) !important;
  position: relative;
}
.our-testimonial-btt h2 {
  color: var(--white-color) !important;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.our-testimonial-btt .section-row {
  margin-bottom: 0px;
}
.our-testimonial-btt .section-title {
  position: relative;
  padding-bottom: 0px;
}
.our-testimonial-btt .icon-comments {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  z-index: 1;
}
.our-testimonial-btt .icon-comments svg {
  width: 100px;
  height: 100px;
  display: block;
}
.our-testimonial-btt .section-title-content {
  margin-top: 10px;
  text-align: right;
}
.our-testimonial-btt .testimonial-btn {
  white-space: nowrap;
}
.our-testimonial-btt .promotion-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0;
}
.our-testimonial-btt .promotion-section .promotion-description {
  font-size: 12px;
  margin-bottom: 0px;
  color: var(--white-color);
  opacity: 0.95;
}
.our-testimonial-btt .promotion-content {
  text-align: center;
  width: 100%;
  max-width: 800px;
  min-height: 200px;
  contain: layout;
}
.our-testimonial-btt .promotion-title {
  color: var(--white-color);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 1.5em;
}
.our-testimonial-btt .promotion-description {
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
  opacity: 0.95;
}
.our-testimonial-btt .countdown-timer {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 20px;
  line-height: 1.5;
  contain: layout;
  min-height: 2.25em;
}
.our-testimonial-btt .timer-value {
  color: var(--white-color);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: inline-block;
  min-width: 2.5ch;
  text-align: center;
}
.our-testimonial-btt .promotion-title-discount {
  color: #FF3B30;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: inline-block;
  min-width: 4ch;
  vertical-align: baseline;
}
.our-testimonial-btt .timer-value-updating {
  animation: timerUpdate 0.3s ease;
  transform-origin: center center;
  will-change: opacity;
}
@keyframes timerUpdate {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
.our-testimonial-btt .timer-label {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 400;
  opacity: 0.9;
  margin-right: 8px;
}
@media (max-width: 991px) {
  .our-testimonial-btt {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .our-testimonial-btt h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
  }
  .our-testimonial-btt .section-title {
    padding-bottom: 40px;
  }
  .our-testimonial-btt .icon-comments {
    left: 50%;
    top: -15px;
  }
  .our-testimonial-btt .icon-comments svg {
    width: 80px;
    height: 80px;
  }
  .our-testimonial-btt .section-title-content {
    margin-top: 10px;
    text-align: center;
  }
  .our-testimonial-btt .testimonial-btn {
    padding: 14px 28px !important;
    font-size: 16px;
  }
  .our-testimonial-btt .promotion-title {
    font-size: 24px;
  }
  .our-testimonial-btt .promotion-description {
    font-size: 16px;
  }
  .our-testimonial-btt .timer-value {
    font-size: 32px;
  }
  .our-testimonial-btt .timer-label {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .our-testimonial-btt {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .our-testimonial-btt h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 25px;
    padding: 0 15px;
  }
  .our-testimonial-btt .section-title {
    padding-bottom: 0px;
  }
  .our-testimonial-btt .icon-comments {
    display: none;
    left: 50%;
    top: -10px;
  }
  .our-testimonial-btt .icon-comments svg {
    width: 60px;
    height: 60px;
  }
  .our-testimonial-btt .section-title-content {
    margin-top: 15px;
    padding: 0 15px;
    text-align: center;
  }
  .our-testimonial-btt .testimonial-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 12px 20px !important;
    font-size: 15px;
    white-space: normal;
  }
  .our-testimonial-btt .testimonial-btn i {
    font-size: 16px !important;
  }
  .our-testimonial-btt .promotion-section {
    padding: 25px 0;
  }
  .our-testimonial-btt .promotion-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .our-testimonial-btt .promotion-description {
    font-size: 15px;
    margin-bottom: 25px;
    padding: 0 15px;
  }
  .our-testimonial-btt .countdown-timer {
    gap: 6px 10px;
    margin-top: 15px;
  }
  .our-testimonial-btt .timer-value {
    font-size: 28px;
  }
  .our-testimonial-btt .timer-label {
    font-size: 15px;
    margin-right: 6px;
  }
}
@media (max-width: 480px) {
  .our-testimonial-btt {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
  .our-testimonial-btt h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .our-testimonial-btt .icon-comments {
    display: none;
  }
  .our-testimonial-btt .icon-comments svg {
    width: 50px;
    height: 50px;
  }
  .our-testimonial-btt .testimonial-btn {
    padding: 10px 18px !important;
    font-size: 14px;
  }
  .our-testimonial-btt .testimonial-btn span {
    font-size: 14px;
  }
  .our-testimonial-btt .testimonial-btn i {
    font-size: 14px !important;
  }
  .our-testimonial-btt .promotion-section {
    padding: 0px 0;
  }
  .our-testimonial-btt .promotion-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .our-testimonial-btt .promotion-description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .our-testimonial-btt .countdown-timer {
    gap: 5px 8px;
  }
  .our-testimonial-btt .timer-value {
    font-size: 24px;
  }
  .our-testimonial-btt .timer-label {
    font-size: 14px;
    margin-right: 5px;
  }
}

@media (max-width: 767px) {
  .about-us .icon-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .about-us .about-us-item .icon-box::before {
    display: none !important;
  }
  .about-us .about-us-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}
.map-wrapper .btn-sm:hover {
  background-color: var(--accent-color);
  color: #fff !important;
  text-decoration: none !important;
}

/* YouTube Videos Integration Styles */
.project-videos {
  margin-top: 40px;
  margin-bottom: 40px;
}
.project-videos h2 {
  margin-bottom: 30px;
}
.project-videos .project-videos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .project-videos .project-videos-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.project-videos .video-item {
  position: relative;
}
.project-videos .video-item .video-wrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: #000;
}
.project-videos .video-item .video-wrapper:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.project-videos .video-item .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.project-videos .video-item .video-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(238, 90, 82, 0.3);
}
.project-videos .video-item .video-badge i {
  margin-right: 4px;
}

/* Admin Panel Video Styles */
#video .video-input-row {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
  transition: all 0.2s ease;
}
#video .video-input-row:hover {
  background: #e9ecef;
}
#video .video-input-row input[type=text] {
  flex: 1;
  border-radius: 4px;
  border: 1px solid #ced4da;
  padding: 8px 12px;
}
#video .video-input-row input[type=text]:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
#video .video-input-row .video-btns {
  display: flex;
  gap: 5px;
}
#video .video-input-row .video-btns .btn {
  min-width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}
#video .video-input-row .video-btns .btn:hover {
  transform: scale(1.05);
}
#video .video-input-row .label {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
}
#video .help-block {
  margin-bottom: 20px;
  padding: 15px;
  background: #e7f3ff;
  border-left: 4px solid #2196f3;
  border-radius: 4px;
}
#video .help-block ul {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 20px;
}
#video .help-block ul li {
  margin-bottom: 5px;
  font-size: 13px;
  color: #495057;
  font-family: "Courier New", monospace;
}
#video .help-block i {
  color: #2196f3;
  margin-right: 5px;
}

/* Project Sidebar CTA Box */
.sidebar-cta-box {
  background: linear-gradient(135deg, #f7941d 0%, #ff6b35 100%);
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(247, 148, 29, 0.3);
  color: #fff;
}
.sidebar-cta-box .sidebar-cta-title {
  margin-bottom: 20px;
}
.sidebar-cta-box .sidebar-cta-title h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.sidebar-cta-box .sidebar-cta-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}
.sidebar-cta-box .sidebar-cta-button .btn {
  background: #fff;
  color: #f7941d;
  border: 2px solid #fff;
  font-weight: 600;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.sidebar-cta-box .sidebar-cta-button .btn i {
  margin-right: 8px;
}
.sidebar-cta-box .sidebar-cta-button .btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-detail-list {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.project-detail-list .project-detail-title h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.project-detail-list .project-detail-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Contact Office Images */
.contact-office-image {
  width: 200px !important;
  height: 200px !important;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-office-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Contact Info Box Spacing Improvements */
.contact-info-box .info p {
  line-height: 1.5;
}
.contact-info-box .info .mb-1 {
  margin-bottom: 0.5rem !important;
}
.contact-info-box .info .mb-2 {
  margin-bottom: 0.75rem !important;
}
.contact-info-box .info hr.my-2 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}
.contact-info-box .info .title {
  font-weight: 600;
  color: #333;
}
.contact-info-box .info .phones {
  font-size: 16px;
}
.contact-info-box .info .phones .phone a {
  color: #f7941d;
  text-decoration: none;
  font-weight: 500;
}
.contact-info-box .info .phones .phone a:hover {
  color: #d67d15;
  text-decoration: underline;
}

/* Responsive adjustments for contact images */
@media (max-width: 768px) {
  .contact-office-image {
    width: 150px !important;
    height: 150px !important;
  }
}
@media (max-width: 576px) {
  .contact-office-image {
    width: 120px !important;
    height: 120px !important;
  }
}
/* Contact Info Layout - Text Left, Photo Right */
.contact-info-text {
  flex-grow: 1;
}

.contact-office-photo {
  flex-shrink: 0;
}

/* Responsive adjustments for contact layout */
@media (max-width: 768px) {
  .info .d-flex.gap-3 {
    flex-direction: column;
  }

  .contact-office-photo {
    order: -1;
    /* Photo appears first on mobile */
    align-self: flex-start;
  }

  .contact-office-image {
    width: 150px !important;
    height: 150px !important;
  }
}
@media (max-width: 576px) {
  .contact-office-image {
    width: 120px !important;
    height: 120px !important;
  }
}
.about-production {
  scroll-margin-top: 120px;
  padding: 80px 0;
  background: #f4f6f9;
}
.about-production__intro {
  max-width: 820px;
}
.about-production .section-title {
  margin-bottom: 24px;
}
.about-production .section-title h3 {
  color: #f7941d;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-production .section-title h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  color: #14183e;
  margin-bottom: 16px;
}
.about-production .section-title p {
  color: #5c5f6b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.about-production__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.about-production__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}
.about-production__list li i {
  flex-shrink: 0;
  margin-top: 3px;
  color: #f7941d;
}
.about-production__hint {
  margin: 0;
  color: #666;
  font-size: 14px;
  font-style: italic;
}
.about-production__videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 8px auto 0;
}
.about-production__video-item {
  flex: 0 0 300px;
  width: 300px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #12161d;
  box-shadow: 0 14px 32px rgba(20, 24, 62, 0.14);
}
.about-production__video-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 533px;
  background: #000;
}
.about-production__video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.about-production__video-label {
  margin: 0;
  padding: 10px 12px;
  background: #14183e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
.about-production__poster {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.about-production__poster img {
  display: block;
  width: 100%;
  height: auto;
}
.about-production__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 22px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.about-production__play i {
  margin-left: 4px;
}

@media (max-width: 991px) {
  .about-production__videos {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 4px 6px;
    scrollbar-width: none;
  }
  .about-production__videos::-webkit-scrollbar {
    display: none;
  }

  .about-production__video-item {
    flex: 0 0 260px;
    width: 260px;
  }

  .about-production__video-ratio {
    max-height: 462px;
  }
}
@media (max-width: 767px) {
  .about-production {
    scroll-margin-top: 96px;
    padding: 56px 0;
  }
  .about-production .section-title h2 {
    font-size: 28px;
  }

  .about-production__videos {
    gap: 12px;
  }

  .about-production__video-item {
    flex: 0 0 220px;
    width: 220px;
  }

  .about-production__video-ratio {
    max-height: 391px;
  }

  .about-production__video-label {
    font-size: 12px;
    padding: 8px 6px;
  }
}
/* Our Stores Section */
.our-stores-section {
  padding: 80px 0;
  background: #f9f9f9;
}
.our-stores-section .section-title {
  margin-bottom: 50px;
}
.our-stores-section .section-title h3 {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.our-stores-section .section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}
.our-stores-section .section-title p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.store-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}
.store-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.store-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.store-item:hover .store-image img {
  transform: scale(1.1);
}

.store-content {
  padding: 30px;
}
.store-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.store-info {
  margin-bottom: 25px;
}
.store-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}
.store-info .info-item:last-child {
  margin-bottom: 0;
}
.store-info .info-item i {
  color: #22489e;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.store-info .info-item p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.store-btn {
  margin-top: 20px;
}
.store-btn .btn-default {
  background: #22489e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #22489e;
}
.store-btn .btn-default:hover {
  background: transparent;
  color: #22489e;
  transform: translateY(-2px);
}

/* Responsive Styles for Our Stores */
@media (max-width: 1199px) {
  .store-content h3 {
    font-size: 20px;
  }

  .store-info .info-item p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .our-stores-section {
    padding: 60px 0;
  }
  .our-stores-section .section-title h2 {
    font-size: 32px;
  }

  .store-image {
    height: 250px;
  }

  .store-content {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .our-stores-section {
    padding: 40px 0;
  }
  .our-stores-section .section-title {
    margin-bottom: 30px;
  }
  .our-stores-section .section-title h2 {
    font-size: 28px;
  }
  .our-stores-section .row {
    justify-content: center;
  }

  .store-content {
    padding: 20px;
  }
  .store-content h3 {
    font-size: 20px;
  }

  .store-image {
    height: 200px;
  }
}
.projects-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.projects-tabs {
  border-bottom: 2px solid #e9ecef;
  flex: 1;
  min-width: 0;
}

.projects-tabs .nav-item {
  margin-bottom: -2px;
}

.projects-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: #666;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
  white-space: nowrap;
}

.projects-tabs .nav-link:hover {
  color: #22489e;
  border-bottom-color: #22489e;
}

.projects-tabs .nav-link.active {
  color: #22489e;
  border-bottom-color: #22489e;
  background: transparent;
}

.btn-catalog {
  background-color: #22489e;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer !important;
}

.btn-catalog:hover {
  background-color: #1a3a7a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 72, 158, 0.4);
}

.btn-catalog i {
  margin-right: 8px;
}

.project-item-boxes {
  margin-top: 20px;
}

.project-item {
  margin-bottom: 30px;
}

#catalogModal .modal-body {
  padding: 0;
}

#catalogModal iframe {
  min-height: calc(100vh - 200px);
}

@media (max-width: 768px) {
  .projects-tabs-wrapper {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    margin-bottom: 10px;
  }

  .projects-tabs {
    width: 100%;
  }

  .projects-tabs .nav-link {
    padding: 10px 16px;
    font-size: 14px;
  }

  .btn-catalog {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
}
/* Category Buttons Styles */
.our-Project-nav {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 0 0 60px 0;
}
.our-Project-nav .btn-category {
  position: relative;
  background-color: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
  padding: 12px 24px;
  transition: all 0.3s ease-in-out;
  cursor: pointer !important;
  white-space: nowrap;
}
.our-Project-nav .btn-category:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}
.our-Project-nav .btn-category.active-btn {
  background-color: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}
.our-Project-nav .btn-category.active-btn:hover {
  background-color: var(--accent-color);
}
.our-Project-nav .btn-category:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.our-Project-nav .btn-category.btn-video {
  background-color: #cecfd4;
  color: #3450A3;
  border-color: #14183E;
}
.our-Project-nav .btn-category.btn-video:hover {
  background-color: #3450A3;
  border-color: #3450A3;
  color: #ffffff;
}
.our-Project-nav .btn-category.btn-video.active-btn {
  background-color: #3450A3;
  border-color: #3450A3;
  color: #ffffff;
}
.our-Project-nav .btn-category.btn-video.active-btn:hover {
  background-color: #1B6AAA;
}
@media (max-width: 768px) {
  .our-Project-nav {
    gap: 10px;
    margin-bottom: 40px;
  }
  .our-Project-nav .btn-category {
    font-size: 14px;
    padding: 10px 20px;
  }
}
@media (max-width: 480px) {
  .our-Project-nav {
    gap: 8px;
    margin-bottom: 30px;
  }
  .our-Project-nav .btn-category {
    font-size: 13px;
    padding: 8px 16px;
  }
}

.button-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  justify-content: flex-end;
}
.button-wrapper .button-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}
.button-wrapper .btn-catalog-pdf {
  background-color: #f7941d;
  color: #ffffff;
  border-color: #f7941d;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 2px solid #f7941d;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
  padding: 8px 16px;
  transition: all 0.3s ease-in-out;
  cursor: pointer !important;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(247, 148, 29, 0.3);
  width: auto;
  min-width: auto;
}
.button-wrapper .btn-catalog-pdf i {
  font-size: 18px;
}
.button-wrapper .btn-catalog-pdf:hover {
  background-color: #e6851a;
  border-color: #e6851a;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 148, 29, 0.4);
}
.button-wrapper .btn-catalog-pdf:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(247, 148, 29, 0.3);
}
@media (max-width: 768px) {
  .button-wrapper {
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 40px;
  }
  .button-wrapper .button-title {
    font-size: 16px;
  }
  .button-wrapper .btn-catalog-pdf {
    font-size: 14px;
    padding: 10px 20px;
  }
}
@media (max-width: 480px) {
  .button-wrapper {
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 30px;
    display: flex;
    justify-content: flex-end;
  }
  .button-wrapper .button-title {
    font-size: 14px;
  }
  .button-wrapper .btn-catalog-pdf {
    font-size: 13px;
    padding: 8px 16px;
  }
}

#pdfModal .modal-content {
  border-radius: 0px;
  border: none;
  padding: 0;
}

#pdfModal .modal-header {
  padding: 30px 30px 20px 30px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 0;
}
#pdfModal .modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
}

#pdfModal .modal-body {
  padding: 0;
}

#pdfModal .modal-footer {
  padding: 20px 30px 30px 30px;
  border-top: 1px solid #e8e8e8;
  justify-content: flex-end;
}
#pdfModal .modal-footer .btn-primary {
  min-width: auto;
  width: auto;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #pdfModal .modal-header {
    padding: 20px 20px 15px 20px;
  }
  #pdfModal .modal-header h2 {
    font-size: 20px;
  }

  #pdfModal .modal-footer {
    padding: 15px 20px 20px 20px;
  }

  #pdfModal.modal {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }

  #pdfModal .modal-dialog {
    margin: 0;
    height: 100%;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  #pdfModal .modal-content {
    height: 100%;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    border-radius: 0;
  }

  #pdfModal .modal-body {
    flex: 1;
    overflow: hidden;
    padding: 0;
    min-height: 0;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  #pdfModal .modal-body.pdf-container {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  #pdfModal .modal-body object,
#pdfModal .modal-body iframe {
    width: 100%;
    flex: 1;
    min-height: 100vh;
    border: none;
    display: block;
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.topbar-offer-col {
  justify-content: flex-end;
}

.header-top-dropdown .dropdown-toggle {
  padding: 8px 0px;
}

.topbar-offer-center {
  justify-content: center;
}