@charset "UTF-8";
.header {
  background-color: #1D1D1D;
}
.header .header-top {
  padding: 1rem 0;
  border-bottom: 1px solid rgb(49.4, 49.4, 49.4);
}
.header .header-top .navbar-brand .logo-img {
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}
.header .header-top .navbar-brand .logo-img:hover {
  transform: scale(1.05);
}
.header .header-bottom {
  padding: 0.5rem 0;
}

.header-contacts {
  gap: 2rem;
}
.header-contacts .contact-item .contact-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}
.header-contacts .contact-item .contact-link:hover {
  color: #43DDFF;
}
.header-contacts .contact-item:not(:last-child) {
  position: relative;
  padding-right: 2rem;
}
.header-contacts .contact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #505050;
}

.btn-call {
  background-color: #43DDFF;
  color: #1D1D1D;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 1rem;
}
.btn-call:hover {
  background-color: rgb(118, 230.2234042553, 255);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 221, 255, 0.3);
}
.btn-call:active {
  transform: translateY(0);
}

.header-bottom .navbar-nav {
  gap: 0.5rem;
}
.header-bottom .navbar-nav .nav-item .nav-link {
  color: #FFFFFF !important;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.header-bottom .navbar-nav .nav-item .nav-link:hover {
  color: #43DDFF !important;
  background-color: rgb(41.75, 41.75, 41.75);
}
.header-bottom .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  border-top-color: #FFFFFF;
  transition: border-top-color 0.3s ease;
  margin-left: 0.5rem;
}
.header-bottom .navbar-nav .nav-item .nav-link:hover.dropdown-toggle::after {
  border-top-color: #43DDFF;
}
.header-bottom .navbar-nav .nav-item.show .nav-link {
  color: #43DDFF !important;
  background-color: rgb(41.75, 41.75, 41.75);
}

.dropdown-menu {
  background-color: rgb(41.75, 41.75, 41.75);
  border: 1px solid rgb(67.25, 67.25, 67.25);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem !important;
}
.dropdown-menu .dropdown-item {
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #43DDFF;
  color: #1D1D1D;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
  background: transparent;
  width: 30px;
  height: 30px;
  position: relative;
}
.navbar-toggler .burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.navbar-toggler:hover .burger-line {
  background-color: #43DDFF;
}
.navbar-toggler[aria-expanded=true] .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.navbar-toggler[aria-expanded=true] .burger-line:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded=true] .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1399.98px) {
  .header-bottom .navbar-collapse {
    display: none !important;
  }
  .logo-img {
    max-width: 150px !important;
  }
}
@media (max-width: 768px) {
  .logo-img {
    max-width: 130px !important;
  }
}
@media (min-width: 1400px) {
  .navbar-toggler {
    display: none !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-menu {
  animation: fadeIn 0.3s ease;
}

.offcanvas {
  background-color: #1D1D1D;
}
.offcanvas .offcanvas-header {
  border-bottom: 1px solid rgb(54.5, 54.5, 54.5);
  padding: 1.5rem;
}
.offcanvas .offcanvas-header .offcanvas-title {
  color: #FFFFFF;
  font-weight: 600;
}
.offcanvas .offcanvas-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}
.offcanvas .offcanvas-header .btn-close:hover {
  opacity: 1;
}
.offcanvas .offcanvas-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offcanvas-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.offcanvas-menu .offcanvas-link {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgb(41.75, 41.75, 41.75);
  transition: all 0.3s ease;
  position: relative;
}
.offcanvas-menu .offcanvas-link:hover {
  color: #43DDFF;
  background-color: rgb(36.65, 36.65, 36.65);
}
.offcanvas-menu .offcanvas-link.dropdown-toggle::after {
  content: "›";
  position: absolute;
  right: 1.5rem;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  border: 0 none;
}
.offcanvas-menu .offcanvas-dropdown.active .offcanvas-link.dropdown-toggle::after {
  transform: rotate(-90deg);
}

.offcanvas-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgb(36.65, 36.65, 36.65);
  display: none;
}
.offcanvas-submenu.show {
  display: block;
}
.offcanvas-submenu .offcanvas-link {
  padding-left: 2.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgb(34.1, 34.1, 34.1);
}

.offcanvas-contacts {
  padding: 1.5rem;
  border-top: 1px solid rgb(54.5, 54.5, 54.5);
  background-color: rgb(34.1, 34.1, 34.1);
}
.offcanvas-contacts .contact-item {
  margin-bottom: 1rem;
}
.offcanvas-contacts .contact-item:last-child {
  margin-bottom: 1.5rem;
}
.offcanvas-contacts .contact-item .contact-link {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}
.offcanvas-contacts .contact-item .contact-link:hover {
  color: #43DDFF;
}
.offcanvas-contacts .btn-call {
  width: 100%;
  padding: 0.75rem;
  margin-left: 0;
}

.page-section {
  background: #1D1D1D;
  color: #adb5bd;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 140px;
  position: relative;
}
.section-header img {
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 40px 80px rgba(0, 222, 255, 0.15), 0 0 0 1px rgba(0, 222, 255, 0.1);
}

.section-header__content {
  position: relative;
  z-index: 2;
}

.section-title {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 30px;
  text-shadow: 0 4px 20px rgba(0, 222, 255, 0.2);
  letter-spacing: -0.03em;
}
.section-title--large {
  font-size: 4rem;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 0%, #00DEFF 50%, #adb5bd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.section-title--large::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00DEFF, transparent);
  border-radius: 4px;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .section-title--large {
    font-size: 2.8rem;
  }
}

.section-subtitle {
  font-size: 1.5rem;
  color: #adb5bd;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-top: 40px;
  position: relative;
  display: inline-block;
  padding: 0 30px;
}
.section-subtitle::before, .section-subtitle::after {
  content: "✦";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #00DEFF;
  font-size: 0.8rem;
  opacity: 0.6;
}
.section-subtitle::before {
  left: 0;
}
.section-subtitle::after {
  right: 0;
}

.services-section {
  margin-bottom: 120px;
  position: relative;
}
.services-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 222, 255, 0.1), rgba(0, 222, 255, 0.3), rgba(0, 222, 255, 0.1), transparent);
}
.services-section .section-title {
  text-align: center;
  margin-bottom: 100px;
  font-size: 2.2rem;
  position: relative;
}
.services-section .section-title::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #00DEFF 0%, transparent 100%);
  border-radius: 3px;
}
.services-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: 50%;
  transform: translateX(50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #00DEFF 100%);
  border-radius: 3px;
}
@media (max-width: 768px) {
  .services-section .section-title {
    font-size: 2.4rem;
  }
}

.intro-text {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 100px;
  font-weight: 300;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0 40px;
}
.intro-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 4rem;
  color: #00DEFF;
  opacity: 0.3;
  font-family: serif;
}
@media (max-width: 768px) {
  .intro-text {
    font-size: 1.2rem;
    margin-bottom: 80px;
    padding: 0 20px;
  }
}

.page-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

.card {
  background: linear-gradient(145deg, rgba(31, 41, 43, 0.9) 0%, rgba(42, 54, 56, 0.7) 100%), radial-gradient(circle at 20% 80%, rgba(0, 222, 255, 0.1) 0%, transparent 50%);
  border-radius: 24px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  flex: 1;
  min-width: 300px;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 222, 255, 0.1) 0%, transparent 30%, transparent 70%, rgba(0, 222, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00DEFF 0%, transparent 20%, transparent 80%, #00DEFF 100%);
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(0, 222, 255, 0.3);
  box-shadow: 0 35px 70px rgba(0, 222, 255, 0.15), 0 0 0 1px rgba(0, 222, 255, 0.1), inset 0 0 50px rgba(0, 222, 255, 0.05);
}
.card:hover::before, .card:hover::after {
  opacity: 1;
}

.card_title {
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
  line-height: 1.3;
  z-index: 2;
}
.card_title::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #00DEFF, transparent);
  border-radius: 3px;
  transition: all 0.4s ease;
}
.card:hover .card_title::before {
  width: 60px;
  background: linear-gradient(90deg, #00DEFF, #ffffff, transparent);
}

.card_text {
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 300;
  position: relative;
  z-index: 2;
  color: #adb5bd;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.feature-list_item {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  font-weight: 300;
  color: #adb5bd;
}
.feature-list_item::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #00DEFF;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  transform: translateX(0);
}
.feature-list_item:hover {
  color: #ffffff;
  padding-left: 45px;
  transform: translateX(5px);
}
.feature-list_item:hover::before {
  transform: translateX(5px);
  color: #ffffff;
}
.feature-list_item:last-child {
  border-bottom: none;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 222, 255, 0.1) 10%, rgba(0, 222, 255, 0.4) 25%, #00DEFF 50%, rgba(0, 222, 255, 0.4) 75%, rgba(0, 222, 255, 0.1) 90%, transparent 100%);
  margin: 100px 0;
  position: relative;
}
.divider::before, .divider::after {
  content: "❖";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #00DEFF;
  font-size: 1rem;
  background: #1D1D1D;
  padding: 0 15px;
}
.divider::before {
  left: 20%;
}
.divider::after {
  right: 20%;
}

.cta-section {
  background: linear-gradient(135deg, rgba(31, 41, 43, 0.95) 0%, rgba(42, 54, 56, 0.9) 100%), radial-gradient(ellipse at center, rgba(0, 222, 255, 0.1) 0%, transparent 70%);
  border-radius: 28px;
  padding: 100px 80px;
  text-align: center;
  border: 1px solid rgba(0, 222, 255, 0.15);
  margin-top: 120px;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 222, 255, 0.1), transparent, transparent, rgba(0, 222, 255, 0.05), transparent);
  animation: rotate 20s linear infinite;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 40px;
  }
}

.cta-section__title {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #ffffff 0%, #00DEFF 60%, #adb5bd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .cta-section__title {
    font-size: 2.2rem;
  }
}

.cta-section__description {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 50px;
  font-weight: 300;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cta-section__description {
    font-size: 1.1rem;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00DEFF 0%, #0099cc 100%);
  color: #1D1D1D;
  padding: 20px 50px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.03em;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 222, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}
.button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 222, 255, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #1D1D1D;
}
.button:hover::before {
  left: 100%;
}
.button:active {
  transform: translateY(-2px) scale(1.02);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1200px) {
  .row-cols-lg-4 .card,
  .row-cols-lg-3 .card {
    min-width: 280px;
  }
}
@media (max-width: 992px) {
  .row-cols-md-2 .card {
    min-width: 340px;
  }
  .services-section {
    margin-bottom: 100px;
  }
  .services-section .section-title {
    margin-bottom: 80px;
  }
  .divider {
    margin: 80px 0;
  }
  .divider::before, .divider::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-section {
    padding: 80px 0;
  }
  .section-header {
    margin-bottom: 100px;
  }
  .section-header img {
    margin-bottom: 50px;
  }
  .services-section {
    margin-bottom: 80px;
  }
  .card {
    padding: 40px 30px;
    min-width: 100%;
  }
  .cta-section {
    margin-top: 100px;
    padding: 60px 30px;
  }
  .divider {
    margin: 60px 0;
  }
}
@media (max-width: 576px) {
  .section-title--large {
    font-size: 2.2rem;
  }
  .services-section .section-title {
    font-size: 2rem;
  }
  .cta-section__title {
    font-size: 1.8rem;
  }
  .cta-section__description {
    font-size: 1rem;
  }
  .button {
    padding: 18px 40px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }
  .card {
    padding: 35px 25px;
  }
}
.contact-block {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-block__title {
  color: #00DEFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.contact-block__value {
  color: #adb5bd;
  font-size: 1.2rem;
  line-height: 1.6;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
.contact-block__value:hover {
  color: #ffffff;
  transform: translateX(5px);
}
.contact-block__value + .contact-block__value {
  margin-top: 8px;
}

.requisites {
  background: rgba(0, 222, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(0, 222, 255, 0.1);
}

.requisites__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.requisites__item:last-child {
  border-bottom: none;
}

.requisites__label {
  color: #adb5bd;
  font-size: 0.95rem;
  font-weight: 300;
  flex: 0 0 45%;
  line-height: 1.4;
}

.requisites__value {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  flex: 0 0 55%;
  line-height: 1.4;
  text-align: right;
}

.map-container {
  margin-top: 50px;
  position: relative;
}
.map-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, #00DEFF 0%, transparent 50%);
  border-radius: 25px;
  opacity: 0.1;
  z-index: -1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.button--outline {
  background: transparent;
  color: #00DEFF;
  border: 2px solid #00DEFF;
  box-shadow: none;
}
.button--outline:hover {
  background: #00DEFF;
  color: #1D1D1D;
  transform: translateY(-5px) scale(1.05);
}

.row-cols-lg-2 .card {
  min-width: 100%;
}
@media (max-width: 992px) {
  .row-cols-lg-2 .card {
    min-width: 100%;
  }
}

.contact-page .card {
  padding: 45px 35px;
}
@media (max-width: 768px) {
  .contact-page .card {
    padding: 35px 25px;
  }
}
.contact-page .section-title--large::after {
  width: 80px;
}

a[href^="tel:"],
a[href^="mailto:"] {
  font-weight: 500;
}
a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
  text-decoration: none;
}

#yandex-map {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
#yandex-map .ymaps-2-1-79-ground-pane {
  filter: grayscale(0.3) contrast(1.1);
}

@media (max-width: 768px) {
  .contact-block__value {
    font-size: 1.1rem;
  }
  .requisites__item {
    flex-direction: column;
    gap: 5px;
  }
  .requisites__label,
  .requisites__value {
    flex: none;
    text-align: left;
  }
  .requisites__value {
    font-weight: 500;
  }
  #yandex-map {
    height: 400px !important;
  }
}
@media (max-width: 576px) {
  .contact-block__value {
    font-size: 1rem;
  }
  #yandex-map {
    height: 350px !important;
  }
  .cta-buttons .button {
    min-width: 250px;
  }
}
.timeline-section {
  margin: 120px 0;
  position: relative;
}
.timeline-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 222, 255, 0.1), rgba(0, 222, 255, 0.3), rgba(0, 222, 255, 0.1), transparent);
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 222, 255, 0.3) 10%, #00DEFF 50%, rgba(0, 222, 255, 0.3) 90%, transparent 100%);
  box-shadow: 0 0 30px rgba(0, 222, 255, 0.2);
}
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
}
.timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: 50%;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(odd) {
    padding-right: 0;
    padding-left: 80px;
    justify-content: flex-start;
  }
}
.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: 40px;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.timeline-item:nth-child(odd) .timeline-image {
  position: absolute;
  right: calc(50% - 250px);
  width: 200px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-image {
    display: none;
  }
}
.timeline-item:nth-child(odd) .timeline-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
}
.timeline-item:nth-child(odd):hover .timeline-year {
  transform: translate(-50%, -150%);
}
.timeline-item:nth-child(odd):hover .timeline-image {
  opacity: 1;
  transform: translateX(-20px) scale(1.05);
}
.timeline-item:nth-child(odd):hover .timeline-image img {
  transform: scale(1.1);
}
.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: 50%;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(even) {
    padding-left: 80px;
    justify-content: flex-start;
  }
}
.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
  margin-left: 40px;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.timeline-item:nth-child(even) .timeline-image {
  position: absolute;
  left: calc(50% - 250px);
  width: 200px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}
@media (max-width: 768px) {
  .timeline-item:nth-child(even) .timeline-image {
    display: none;
  }
}
.timeline-item:nth-child(even) .timeline-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
}
.timeline-item:nth-child(even):hover .timeline-year {
  transform: translate(-50%, -150%);
}
.timeline-item:nth-child(even):hover .timeline-image {
  opacity: 1;
  transform: translateX(20px) scale(1.05);
}
.timeline-item:nth-child(even):hover .timeline-image img {
  transform: scale(1.1);
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #00DEFF 0%, #0099cc 100%);
  border-radius: 50%;
  border: 3px solid #1D1D1D;
  box-shadow: 0 0 0 4px rgba(0, 222, 255, 0.3), 0 0 30px rgba(0, 222, 255, 0.5);
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (max-width: 768px) {
  .timeline-item::before {
    left: 30px;
  }
}
.timeline-item:hover::before {
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 0 0 6px rgba(0, 222, 255, 0.4), 0 0 50px rgba(0, 222, 255, 0.7);
}
.timeline-item:hover .timeline-year {
  background: linear-gradient(135deg, #00DEFF 0%, #0099cc 100%);
  color: #1D1D1D;
  box-shadow: 0 10px 30px rgba(0, 222, 255, 0.4), 0 0 0 2px rgba(0, 222, 255, 0.2);
}
.timeline-item:hover .timeline-content {
  transform: translateY(-10px);
  border-color: rgba(0, 222, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 222, 255, 0.15), 0 0 0 1px rgba(0, 222, 255, 0.2);
}
.timeline-item:hover .timeline-content::before {
  opacity: 1;
  transform: scale(1);
}

.timeline-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(31, 41, 43, 0.95) 0%, rgba(42, 54, 56, 0.9) 100%);
  color: #00DEFF;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid rgba(0, 222, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .timeline-year {
    left: 30px;
    top: 0;
    transform: translateY(-50%) !important;
  }
}

.timeline-content {
  background: linear-gradient(145deg, rgba(31, 41, 43, 0.9) 0%, rgba(42, 54, 56, 0.7) 100%), radial-gradient(circle at 20% 80%, rgba(0, 222, 255, 0.1) 0%, transparent 50%);
  border-radius: 20px;
  padding: 35px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100%;
  max-width: 450px;
}
.timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 222, 255, 0.1) 0%, transparent 30%, transparent 70%, rgba(0, 222, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .timeline-content {
    max-width: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.timeline-content h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}
.timeline-content h3::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #00DEFF, transparent);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.timeline-content p {
  color: #adb5bd;
  line-height: 1.6;
  font-size: 1.05rem;
  margin: 0;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.timeline-image::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(0, 222, 255, 0.1) 0%, rgba(0, 222, 255, 0.05) 50%, transparent 100%);
  border-radius: 20px;
  z-index: -1;
  filter: blur(5px);
}
.timeline-image::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(0, 222, 255, 0.2);
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.timeline-image:hover::after {
  opacity: 1;
}

@keyframes timelineFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.timeline-item {
  animation: timelineFadeIn 0.8s ease-out forwards;
}
.timeline-item:nth-child(1) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.6s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.8s;
}
.timeline-item:nth-child(5) {
  animation-delay: 1s;
}
.timeline-item:nth-child(6) {
  animation-delay: 1.2s;
}
.timeline-item:nth-child(7) {
  animation-delay: 1.4s;
}
.timeline-item:nth-child(8) {
  animation-delay: 1.6s;
}
.timeline-item:nth-child(9) {
  animation-delay: 1.8s;
}
.timeline-item:nth-child(10) {
  animation-delay: 2s;
}

@media (max-width: 992px) {
  .timeline-section {
    margin: 100px 0;
  }
  .timeline {
    padding: 50px 0;
  }
  .timeline-item {
    margin-bottom: 70px;
  }
  .timeline-content {
    padding: 30px 25px;
  }
}
@media (max-width: 768px) {
  .timeline-section {
    margin: 80px 0;
  }
  .timeline {
    padding: 40px 0;
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-item {
    margin-bottom: 60px;
    padding-left: 80px !important;
    padding-right: 0 !important;
  }
  .timeline-year {
    left: 30px;
    top: 0;
    transform: translateY(-50%) !important;
    font-size: 1rem;
    padding: 10px 20px;
  }
  .timeline-content {
    padding: 25px 20px;
  }
  .timeline-content h3 {
    font-size: 1.3rem;
  }
  .timeline-content p {
    font-size: 1rem;
  }
  .timeline-image {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .timeline-section {
    margin: 60px 0;
  }
  .timeline {
    padding: 30px 0;
  }
  .timeline-item {
    margin-bottom: 50px;
    padding-left: 60px !important;
  }
  .timeline-year {
    left: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  .timeline-content {
    padding: 20px 15px;
  }
  .timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .timeline-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 222, 255, 0.4), 0 0 0 0 rgba(0, 222, 255, 0.3);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 222, 255, 0), 0 0 0 20px rgba(0, 222, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 222, 255, 0), 0 0 0 0 rgba(0, 222, 255, 0);
  }
}
.timeline-item:nth-child(1)::before {
  animation: pulse 3s infinite 1s;
}

.modern-footer {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
  color: #A1A7AF;
  padding: 4rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}
.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #43DDFF, transparent);
}
.modern-footer .footer-main {
  margin-bottom: 3rem;
}
.modern-footer .footer-main .footer-brand .company-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.modern-footer .footer-main .footer-brand .company-badge .company-name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #FFFFFF 0%, #A1A7AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modern-footer .footer-main .footer-brand .company-badge .logo-wrapper .footer-logo {
  height: 40px;
  width: auto;
}
.modern-footer .footer-main .footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.modern-footer .footer-main .footer-actions .privacy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(67, 221, 255, 0.1);
  border: 1px solid rgba(67, 221, 255, 0.2);
  border-radius: 6px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.modern-footer .footer-main .footer-actions .privacy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(67, 221, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.modern-footer .footer-main .footer-actions .privacy-btn:hover {
  background: rgba(67, 221, 255, 0.2);
  border-color: #43DDFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(67, 221, 255, 0.15);
}
.modern-footer .footer-main .footer-actions .privacy-btn:hover::before {
  left: 100%;
}
.modern-footer .footer-main .footer-actions .privacy-btn:hover .fa.arrow {
  transform: translateX(3px);
}
.modern-footer .footer-main .footer-actions .privacy-btn .fa.arrow {
  transition: transform 0.3s ease;
}
.modern-footer .footer-main .footer-actions .footer-tagline {
  color: #A1A7AF;
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}
.modern-footer .footer-divider {
  margin: 2rem 0 3rem;
}
.modern-footer .footer-divider .divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(67, 221, 255, 0.3) 50%, transparent 100%);
}
.modern-footer .fa {
  font-style: normal;
  font-size: 1.25rem;
  opacity: 0.8;
}
.modern-footer .footer-info-grid {
  margin-bottom: 3rem;
}
.modern-footer .footer-info-grid .info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}
.modern-footer .footer-info-grid .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #43DDFF, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modern-footer .footer-info-grid .info-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(67, 221, 255, 0.2);
  transform: translateY(-5px);
}
.modern-footer .footer-info-grid .info-card:hover::before {
  opacity: 1;
}
.modern-footer .footer-info-grid .info-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.modern-footer .footer-info-grid .info-card .card-header .card-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block {
  margin-bottom: 1rem;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block:last-child {
  margin-bottom: 0;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block .info-label {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.modern-footer .footer-info-grid .info-card .card-content .info-block .info-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  line-height: 1.4;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot {
  margin-bottom: 1rem;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot:last-child {
  margin-bottom: 0;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot .time-label {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.modern-footer .footer-info-grid .info-card .card-content .time-slot .time-value {
  color: #A1A7AF;
  font-size: 0.8rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item {
  margin-bottom: 1rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item:last-child {
  margin-bottom: 0;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-label {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #A1A7AF;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-link:hover {
  color: #43DDFF;
  transform: translateX(5px);
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .contact-link.small {
  font-size: 0.75rem;
}
.modern-footer .footer-info-grid .info-card .card-content .contact-item .email-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.modern-footer .footer-info-grid .info-card .card-content .address-block .address-city {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.modern-footer .footer-info-grid .info-card .card-content .address-block .address-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  line-height: 1.4;
}
.modern-footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.modern-footer .footer-bottom .tech-info .tech-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  opacity: 0.6;
}
.modern-footer .footer-bottom .footer-meta {
  text-align: right;
}
.modern-footer .footer-bottom .footer-meta .meta-text {
  color: #A1A7AF;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 992px) {
  .modern-footer {
    padding: 3rem 0 1.5rem;
  }
  .modern-footer .footer-main .footer-brand .company-badge {
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .modern-footer .footer-main .footer-actions {
    align-items: center;
    text-align: center;
  }
  .modern-footer .footer-bottom .footer-meta {
    text-align: center;
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .modern-footer .footer-main .footer-brand .company-badge {
    text-align: center;
  }
  .modern-footer .info-card {
    text-align: center;
  }
  .modern-footer .info-card .card-header {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .modern-footer {
    padding: 2rem 0 1rem;
  }
  .modern-footer .footer-main .footer-actions .privacy-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  .modern-footer .footer-info-grid .info-card {
    padding: 1.25rem;
  }
}/*# sourceMappingURL=page.css.map */