@charset "UTF-8";
/*!
Theme Name: Adaptify
Author: thanos-pakou
Author URI: https://github.com/thanos-pakou
Description: This is a custom theme for Adaptify
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: adaptify
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(16, 41, 80, 0.08);
  height: 90px;
}
@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }
}
.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}
@media (max-width: 768px) {
  .site-header__container {
    padding: 15px 20px;
  }
}
.site-header__logo {
  flex-shrink: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  gap: 5px;
}
.site-header__logo .custom-logo-link img {
  height: 35px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header__logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: opacity 0.3s ease;
}
.site-header__logo-link:hover {
  opacity: 0.8;
}
.site-header__name {
  font-size: 1.2rem;
  font-weight: 400;
  color: #102950;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .site-header__name {
    font-size: 1rem;
  }
}
.site-header__subtitle {
  font-size: 0.75rem;
  color: #102950;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .site-header__subtitle {
    font-size: 0.65rem;
  }
}
@media (max-width: 768px) {
  .site-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }
  .site-header__nav.active {
    right: 0;
  }
}
.site-header__menu-wrapper {
  display: flex;
  align-items: center;
}
.site-header__menu, .site-header__menu-wrapper ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1024px) {
  .site-header__menu, .site-header__menu-wrapper ul {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .site-header__menu, .site-header__menu-wrapper ul {
    flex-direction: column;
    gap: 30px;
  }
}
.site-header__menu li,
.site-header__menu .menu-item,
.site-header__menu .page_item, .site-header__menu-wrapper ul li,
.site-header__menu-wrapper ul .menu-item,
.site-header__menu-wrapper ul .page_item {
  margin: 0;
  padding: 0;
  position: relative;
}
.site-header__menu li a,
.site-header__menu .menu-item a,
.site-header__menu .page_item a, .site-header__menu-wrapper ul li a,
.site-header__menu-wrapper ul .menu-item a,
.site-header__menu-wrapper ul .page_item a {
  text-decoration: none;
  color: #102950;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
  display: block;
}
.site-header__menu li a::after,
.site-header__menu .menu-item a::after,
.site-header__menu .page_item a::after, .site-header__menu-wrapper ul li a::after,
.site-header__menu-wrapper ul .menu-item a::after,
.site-header__menu-wrapper ul .page_item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffec88;
  transition: width 0.3s ease;
}
.site-header__menu li a:hover,
.site-header__menu .menu-item a:hover,
.site-header__menu .page_item a:hover, .site-header__menu-wrapper ul li a:hover,
.site-header__menu-wrapper ul .menu-item a:hover,
.site-header__menu-wrapper ul .page_item a:hover {
  color: #a9ecec;
}
.site-header__menu li a:hover::after,
.site-header__menu .menu-item a:hover::after,
.site-header__menu .page_item a:hover::after, .site-header__menu-wrapper ul li a:hover::after,
.site-header__menu-wrapper ul .menu-item a:hover::after,
.site-header__menu-wrapper ul .page_item a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .site-header__menu li a,
  .site-header__menu .menu-item a,
  .site-header__menu .page_item a, .site-header__menu-wrapper ul li a,
  .site-header__menu-wrapper ul .menu-item a,
  .site-header__menu-wrapper ul .page_item a {
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: none;
    letter-spacing: normal;
    padding: 10px 0;
  }
}
.site-header__menu li.current-menu-item a, .site-header__menu li.current_page_item a, .site-header__menu li.current-page-ancestor a, .site-header__menu li.current_page_parent a,
.site-header__menu .menu-item.current-menu-item a,
.site-header__menu .menu-item.current_page_item a,
.site-header__menu .menu-item.current-page-ancestor a,
.site-header__menu .menu-item.current_page_parent a,
.site-header__menu .page_item.current-menu-item a,
.site-header__menu .page_item.current_page_item a,
.site-header__menu .page_item.current-page-ancestor a,
.site-header__menu .page_item.current_page_parent a, .site-header__menu-wrapper ul li.current-menu-item a, .site-header__menu-wrapper ul li.current_page_item a, .site-header__menu-wrapper ul li.current-page-ancestor a, .site-header__menu-wrapper ul li.current_page_parent a,
.site-header__menu-wrapper ul .menu-item.current-menu-item a,
.site-header__menu-wrapper ul .menu-item.current_page_item a,
.site-header__menu-wrapper ul .menu-item.current-page-ancestor a,
.site-header__menu-wrapper ul .menu-item.current_page_parent a,
.site-header__menu-wrapper ul .page_item.current-menu-item a,
.site-header__menu-wrapper ul .page_item.current_page_item a,
.site-header__menu-wrapper ul .page_item.current-page-ancestor a,
.site-header__menu-wrapper ul .page_item.current_page_parent a {
  color: #a9ecec;
}
.site-header__menu li.current-menu-item a::after, .site-header__menu li.current_page_item a::after, .site-header__menu li.current-page-ancestor a::after, .site-header__menu li.current_page_parent a::after,
.site-header__menu .menu-item.current-menu-item a::after,
.site-header__menu .menu-item.current_page_item a::after,
.site-header__menu .menu-item.current-page-ancestor a::after,
.site-header__menu .menu-item.current_page_parent a::after,
.site-header__menu .page_item.current-menu-item a::after,
.site-header__menu .page_item.current_page_item a::after,
.site-header__menu .page_item.current-page-ancestor a::after,
.site-header__menu .page_item.current_page_parent a::after, .site-header__menu-wrapper ul li.current-menu-item a::after, .site-header__menu-wrapper ul li.current_page_item a::after, .site-header__menu-wrapper ul li.current-page-ancestor a::after, .site-header__menu-wrapper ul li.current_page_parent a::after,
.site-header__menu-wrapper ul .menu-item.current-menu-item a::after,
.site-header__menu-wrapper ul .menu-item.current_page_item a::after,
.site-header__menu-wrapper ul .menu-item.current-page-ancestor a::after,
.site-header__menu-wrapper ul .menu-item.current_page_parent a::after,
.site-header__menu-wrapper ul .page_item.current-menu-item a::after,
.site-header__menu-wrapper ul .page_item.current_page_item a::after,
.site-header__menu-wrapper ul .page_item.current-page-ancestor a::after,
.site-header__menu-wrapper ul .page_item.current_page_parent a::after {
  width: 100%;
  background: #a9ecec;
}
.site-header__menu li::before, .site-header__menu li::after,
.site-header__menu .menu-item::before,
.site-header__menu .menu-item::after,
.site-header__menu .page_item::before,
.site-header__menu .page_item::after, .site-header__menu-wrapper ul li::before, .site-header__menu-wrapper ul li::after,
.site-header__menu-wrapper ul .menu-item::before,
.site-header__menu-wrapper ul .menu-item::after,
.site-header__menu-wrapper ul .page_item::before,
.site-header__menu-wrapper ul .page_item::after {
  display: none;
}
.site-header__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1003;
  position: relative;
  width: 30px;
  height: 30px;
}
@media (max-width: 768px) {
  .site-header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
}
.site-header__toggle-line {
  width: 24px;
  height: 2px;
  background: #102950;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  left: 3px;
}
.site-header__toggle-line:first-child {
  top: 8px;
}
.site-header__toggle-line:nth-child(2) {
  top: 14px;
}
.site-header__toggle-line:last-child {
  top: 20px;
}
.site-header__toggle.active .site-header__toggle-line:first-child {
  transform: rotate(45deg);
  top: 14px;
}
.site-header__toggle.active .site-header__toggle-line:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.site-header__toggle.active .site-header__toggle-line:last-child {
  transform: rotate(-45deg);
  top: 14px;
}
.site-header__toggle:hover .site-header__toggle-line {
  background: #a9ecec;
}

body {
  padding-top: 90px;
}
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

.site-header.hide {
  transform: translateY(-100%);
}

.site-header ul {
  list-style: none !important;
}
.site-header a {
  box-shadow: none !important;
  text-decoration: none !important;
}

.site-footer {
  background: #eefcfd;
  padding: 80px 20px 30px;
  margin-top: 100px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, transparent, #eefcfd);
}
.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 968px) {
  .site-footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
.site-footer__column {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}
.site-footer__column:nth-child(1) {
  animation-delay: 0.1s;
}
.site-footer__column:nth-child(2) {
  animation-delay: 0.2s;
}
.site-footer__column:nth-child(3) {
  animation-delay: 0.3s;
}
@media (max-width: 968px) {
  .site-footer__column--links {
    grid-column: 1/-1;
  }
}
.site-footer__title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #102950;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.site-footer__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ffec88;
}
@media (max-width: 640px) {
  .site-footer__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.site-footer__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #102950;
  opacity: 0.9;
}
@media (max-width: 640px) {
  .site-footer__info-item {
    justify-content: center;
  }
}
.site-footer__info-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__info-item a:hover {
  color: #a9ecec;
}
.site-footer__icon {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.site-footer__hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #102950;
  opacity: 0.9;
  padding: 8px 0;
  border-bottom: 1px solid rgba(16, 41, 80, 0.1);
}
.site-footer__hours-item:last-child {
  border-bottom: none;
}
.site-footer__hours-item--closed .site-footer__time {
  color: #a9ecec;
  font-weight: 500;
}
@media (max-width: 640px) {
  .site-footer__hours-item {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}
.site-footer__day {
  font-weight: 500;
}
.site-footer__time {
  color: #102950;
  opacity: 0.8;
}
.site-footer__note {
  font-size: 0.85rem;
  color: #102950;
  opacity: 0.7;
  font-style: italic;
}
.site-footer__nav .site-footer__menu,
.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 640px) {
  .site-footer__nav .site-footer__menu,
  .site-footer__nav ul {
    align-items: center;
  }
}
.site-footer__nav .site-footer__menu li,
.site-footer__nav ul li {
  margin: 0;
  padding: 0;
}
.site-footer__nav .site-footer__menu li a,
.site-footer__nav ul li a {
  color: #102950;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding: 2px 0;
}
.site-footer__nav .site-footer__menu li a::after,
.site-footer__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffec88;
  transition: width 0.3s ease;
}
.site-footer__nav .site-footer__menu li a:hover,
.site-footer__nav ul li a:hover {
  color: #a9ecec;
  opacity: 1;
}
.site-footer__nav .site-footer__menu li a:hover::after,
.site-footer__nav ul li a:hover::after {
  width: 100%;
}
.site-footer__bottom {
  border-top: 1px solid rgba(16, 41, 80, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 640px) {
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.site-footer__copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: #102950;
  opacity: 0.7;
}
.site-footer__social {
  display: flex;
  gap: 15px;
  display: none;
}
.site-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #102950;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(16, 41, 80, 0.1);
}
.site-footer__social-link:hover {
  background: #a9ecec;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(169, 236, 236, 0.4);
}
.site-footer__social-link svg {
  width: 20px;
  height: 20px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffec88;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #102950;
  box-shadow: 0 5px 20px rgba(255, 236, 136, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #ffe766;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 236, 136, 0.4);
}
.back-to-top svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 640px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bio-page {
  padding: 50px 20px;
  min-height: calc(100vh - 200px);
  margin-top: clamp(30px, 10vh, 60px);
}
.bio-page__container {
  max-width: 900px;
  margin: 0 auto;
}
.bio-page__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.bio-page__header::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #ffec88;
  margin: 30px auto 0;
}
.bio-page__title {
  font-size: 3rem;
  font-weight: 300;
  color: #102950;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
@media (max-width: 768px) {
  .bio-page__title {
    font-size: 2rem;
  }
}
.bio-page__content {
  color: #102950;
  font-size: 1.1rem;
  line-height: 1.8;
}
.bio-page__content p {
  margin-bottom: 1.5em;
  opacity: 0.9;
  text-align: justify;
}
.bio-page__content h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #102950;
  margin: 2em 0 1em;
  position: relative;
  padding-bottom: 10px;
}
.bio-page__content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #a9ecec;
}
.bio-page__content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #102950;
  margin: 1.5em 0 0.8em;
}
.bio-page__content h4,
.bio-page__content h5,
.bio-page__content h6 {
  font-weight: 500;
  color: #102950;
  margin: 1.2em 0 0.6em;
}
.bio-page__content ul,
.bio-page__content ol {
  margin: 1.5em 0;
  padding-left: 2em;
}
.bio-page__content ul li,
.bio-page__content ol li {
  margin-bottom: 0.5em;
  opacity: 0.9;
}
.bio-page__content a {
  color: #a9ecec;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.bio-page__content a:hover {
  border-bottom-color: #a9ecec;
}
.bio-page__content .wp-block-group {
  margin: 2em 0;
}
.bio-page__content .wp-block-columns {
  margin: 2em 0;
  gap: 2em;
}
.bio-page__content .wp-block-image {
  margin: 2em 0;
}
.bio-page__content .wp-block-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(16, 41, 80, 0.1);
}
.bio-page__content .wp-block-image figcaption {
  font-size: 0.9rem;
  color: #102950;
  opacity: 0.7;
  text-align: center;
  margin-top: 10px;
}
.bio-page__content blockquote {
  margin: 2em 0;
  padding: 1.5em;
  background: #eefcfd;
  border-left: 4px solid #ffec88;
  border-radius: 5px;
  font-style: italic;
}
.bio-page__content blockquote p {
  margin-bottom: 0.5em;
}
.bio-page__content blockquote p:last-child {
  margin-bottom: 0;
}
.bio-page__content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
}
.bio-page__content table th,
.bio-page__content table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(16, 41, 80, 0.1);
}
.bio-page__content table th {
  background: #eefcfd;
  font-weight: 500;
}
.bio-page__content .wp-block-button {
  margin: 1.5em 0;
}
.bio-page__content .wp-block-button__link {
  background: #ffec88;
  color: #102950;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}
.bio-page__content .wp-block-button__link:hover {
  background: #ffe766;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 236, 136, 0.3);
}
.bio-page__content hr,
.bio-page__content .wp-block-separator {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffec88, transparent);
  margin: 3em 0;
}
@media (max-width: 768px) {
  .bio-page__content {
    font-size: 1rem;
  }
  .bio-page__content h2 {
    font-size: 1.5rem;
  }
  .bio-page__content h3 {
    font-size: 1.3rem;
  }
}

.contact-page .contact-hero {
  background: linear-gradient(135deg, #eefcfd 0%, #fff 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-page .contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ffec88 0%, transparent 70%);
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}
.contact-page .contact-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #a9ecec 0%, transparent 70%);
  opacity: 0.1;
  animation: float 25s infinite ease-in-out reverse;
}
.contact-page .contact-hero__container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-page .contact-hero__title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  font-size: 3rem;
  font-weight: 300;
  color: #102950;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.contact-page .contact-hero__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #ffec88;
  margin: 30px auto 0;
}
@media (max-width: 768px) {
  .contact-page .contact-hero__title {
    font-size: 2rem;
  }
}
.contact-page .contact-hero__subtitle {
  font-size: 1.3rem;
  color: #102950;
  opacity: 0.8;
  margin: 0;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}
@media (max-width: 768px) {
  .contact-page .contact-hero__subtitle {
    font-size: 1.1rem;
  }
}
.contact-page .contact-main {
  padding: 80px 20px;
}
.contact-page .contact-main__container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-page .contact-main__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 968px) {
  .contact-page .contact-main__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.contact-page .contact-info {
  animation: fadeInLeft 0.8s ease-out;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.contact-page .contact-info__title {
  font-size: 2rem;
  font-weight: 400;
  color: #102950;
  margin: 0 0 40px;
  position: relative;
  padding-bottom: 15px;
  flex: 0 0 100%;
}
.contact-page .contact-info__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #ffec88;
}
.contact-page .contact-info__item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  padding: 25px;
  background: #f8fdfd;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.contact-page .contact-info__item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(169, 236, 236, 0.15);
  background: #fff;
}
.contact-page .contact-info__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #ffec88;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #102950;
}
.contact-page .contact-info__icon svg {
  width: 24px;
  height: 24px;
}
.contact-page .contact-info__content {
  flex: 1;
}
.contact-page .contact-info__content h3 {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #102950;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-page .contact-info__content a {
  display: block;
  font-size: 1.15rem;
  color: #102950;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-bottom: 5px;
}
.contact-page .contact-info__content a:hover {
  color: #a9ecec;
}
.contact-page .contact-info__note {
  font-size: 0.9rem;
  color: #102950;
  opacity: 0.6;
  margin: 0;
}
.contact-page .contact-hours {
  padding: 35px;
  background: linear-gradient(135deg, #fff 0%, #f8fdfd 100%);
  border-radius: 20px;
  border: 1px solid rgba(169, 236, 236, 0.2);
  flex: 0 0 100%;
}
.contact-page .contact-hours__title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #102950;
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.contact-page .contact-hours__title::before {
  content: "🕐";
  font-size: 1.5rem;
}
.contact-page .contact-hours__list {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.contact-page .contact-hours__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 15px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(16, 41, 80, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}
.contact-page .contact-hours__item:hover {
  border-color: #ffec88;
  transform: translateX(3px);
}
.contact-page .contact-hours__item--closed {
  opacity: 0.6;
}
.contact-page .contact-hours__item--closed .contact-hours__time {
  color: #a9ecec;
}
.contact-page .contact-hours__day {
  font-weight: 500;
  color: #102950;
}
.contact-page .contact-hours__time {
  color: #102950;
  opacity: 0.8;
}
.contact-page .contact-hours__time strong {
  font-weight: 500;
}
.contact-page .contact-hours__note {
  margin: 20px 0 0;
  font-size: 0.85rem;
  color: #102950;
  opacity: 0.6;
  font-style: italic;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 41, 80, 0.08);
}
.contact-page .contact-social {
  margin-top: 40px;
  text-align: center;
}
.contact-page .contact-social__title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #102950;
  margin: 0 0 20px;
}
.contact-page .contact-social__links {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.contact-page .contact-social__link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ffec88;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #102950;
  transition: all 0.3s ease;
}
.contact-page .contact-social__link:hover {
  background: #ffec88;
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 236, 136, 0.3);
}
.contact-page .contact-social__link svg {
  width: 24px;
  height: 24px;
}
.contact-page .contact-form {
  animation: fadeInRight 0.8s ease-out;
}
.contact-page .contact-form__title {
  font-size: 2rem;
  font-weight: 400;
  color: #102950;
  margin: 0 0 15px;
  position: relative;
  padding-bottom: 15px;
}
.contact-page .contact-form__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #a9ecec;
}
.contact-page .contact-form__subtitle {
  font-size: 1.05rem;
  color: #102950;
  opacity: 0.8;
  margin: 0 0 40px;
}
.contact-page .contact-form__form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(16, 41, 80, 0.08);
  border: 1px solid rgba(169, 236, 236, 0.2);
}
.contact-page .contact-form__group {
  margin-bottom: 25px;
}
.contact-page .contact-form__group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #102950;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.contact-page .contact-form__group input[type=text],
.contact-page .contact-form__group input[type=email],
.contact-page .contact-form__group input[type=tel],
.contact-page .contact-form__group select,
.contact-page .contact-form__group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  color: #102950;
  background: #f8fdfd;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: inherit;
}
.contact-page .contact-form__group input[type=text]:focus,
.contact-page .contact-form__group input[type=email]:focus,
.contact-page .contact-form__group input[type=tel]:focus,
.contact-page .contact-form__group select:focus,
.contact-page .contact-form__group textarea:focus {
  outline: none;
  border-color: #a9ecec;
  background: #fff;
}
.contact-page .contact-form__group input[type=text]:hover,
.contact-page .contact-form__group input[type=email]:hover,
.contact-page .contact-form__group input[type=tel]:hover,
.contact-page .contact-form__group select:hover,
.contact-page .contact-form__group textarea:hover {
  border-color: #ffec88;
}
.contact-page .contact-form__group select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23102950' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.contact-page .contact-form__group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-page .contact-form__group--checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
}
.contact-page .contact-form__group--checkbox label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #a9ecec;
  cursor: pointer;
}
.contact-page .contact-form__group--checkbox label span {
  flex: 1;
  font-size: 0.9rem;
}
.contact-page .contact-form__group--checkbox label span[data-name=acceptance-gdpr] {
  flex: unset;
}
.contact-page .contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .contact-page .contact-form__row {
    grid-template-columns: 1fr;
  }
}
.contact-page .contact-form__submit {
  position: relative;
  padding-right: 50px !important;
}
.contact-page .contact-form__submit::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='22' y1='2' x2='11' y2='13' stroke='%23102950' stroke-width='2'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2' stroke='%23102950' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.contact-page .contact-form__submit:hover::after {
  transform: translateY(-50%) translateX(5px);
}
.contact-page .contact-map {
  padding: 80px 20px;
  background: #f8fdfd;
}
.contact-page .contact-map__container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-page .contact-map__title {
  font-size: 2rem;
  font-weight: 400;
  color: #102950;
  text-align: center;
  margin: 0 0 50px;
  position: relative;
}
.contact-page .contact-map__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ffec88;
  margin: 20px auto 0;
}
.contact-page .contact-map__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(16, 41, 80, 0.15);
  animation: fadeInUp 0.8s ease-out;
}
.contact-page .contact-map__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .contact-page .contact-map__wrapper {
    padding-bottom: 75%;
  }
}
.contact-page .contact-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #102950 0%, #1a3a63 100%);
  position: relative;
  overflow: hidden;
}
.contact-page .contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(169, 236, 236, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 236, 136, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(169, 236, 236, 0.05) 0%, transparent 50%);
}
.contact-page .contact-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-page .contact-cta__title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  margin: 0 0 25px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}
@media (max-width: 768px) {
  .contact-page .contact-cta__title {
    font-size: 1.8rem;
  }
}
.contact-page .contact-cta__text {
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.9;
  line-height: 1.6;
  margin: 0 0 40px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}
@media (max-width: 768px) {
  .contact-page .contact-cta__text {
    font-size: 1.05rem;
  }
}
.contact-page .contact-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
.contact-page .contact-cta__button {
  padding: 16px 35px;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.contact-page .contact-cta__button--primary {
  background: #ffec88;
  color: #102950;
}
.contact-page .contact-cta__button--primary:hover {
  background: #ffe766;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 236, 136, 0.3);
}
.contact-page .contact-cta__button--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.contact-page .contact-cta__button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}
.contact-page .contact-cta__button svg {
  flex-shrink: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}
.contact-page .wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.contact-page .wpcf7 input[type=text],
.contact-page .wpcf7 input[type=email],
.contact-page .wpcf7 input[type=tel],
.contact-page .wpcf7 input[type=url],
.contact-page .wpcf7 input[type=date],
.contact-page .wpcf7 select,
.contact-page .wpcf7 textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  color: #102950;
  background: #f8fdfd;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: inherit;
}
.contact-page .wpcf7 input[type=text]:focus,
.contact-page .wpcf7 input[type=email]:focus,
.contact-page .wpcf7 input[type=tel]:focus,
.contact-page .wpcf7 input[type=url]:focus,
.contact-page .wpcf7 input[type=date]:focus,
.contact-page .wpcf7 select:focus,
.contact-page .wpcf7 textarea:focus {
  outline: none;
  border-color: #a9ecec;
  background: #fff;
}
.contact-page .wpcf7 input[type=text]:hover,
.contact-page .wpcf7 input[type=email]:hover,
.contact-page .wpcf7 input[type=tel]:hover,
.contact-page .wpcf7 input[type=url]:hover,
.contact-page .wpcf7 input[type=date]:hover,
.contact-page .wpcf7 select:hover,
.contact-page .wpcf7 textarea:hover {
  border-color: #ffec88;
}
.contact-page .wpcf7 textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-page .wpcf7 input[type=submit] {
  background: linear-gradient(135deg, #ffec88 0%, #ffe766 100%);
  color: #102950;
  border: none;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-page .wpcf7 input[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 236, 136, 0.3);
  background: linear-gradient(135deg, #ffe766 0%, #ffec88 100%);
}
.contact-page .wpcf7 .wpcf7-response-output {
  margin: 20px 0;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.contact-page .wpcf7 .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
}
.contact-page .wpcf7 .wpcf7-validation-errors,
.contact-page .wpcf7 .wpcf7-acceptance-missing {
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
}
.contact-page .wpcf7 .wpcf7-mail-sent-ok {
  background: #d4edda;
  border: 1px solid #28a745;
  color: #155724;
}
.contact-page .wpcf7 .wpcf7-mail-sent-ng,
.contact-page .wpcf7 .wpcf7-aborted {
  background: #f8d7da;
  border: 1px solid #dc3545;
  color: #721c24;
}
.contact-page .wpcf7 .wpcf7-spam-blocked {
  background: #f8d7da;
  border: 1px solid #dc3545;
  color: #721c24;
}
.contact-page .wpcf7 .wpcf7-spinner {
  margin-left: 10px;
}
.contact-page .wpcf7.submitting input[type=submit] {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .contact-page .contact-info__item {
    flex-direction: column;
    text-align: center;
  }
  .contact-page .contact-info__icon {
    margin: 0 auto;
  }
  .contact-page .contact-hours {
    padding: 25px 20px;
  }
  .contact-page .contact-hours__item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  .contact-page .contact-form__form {
    padding: 30px 20px;
  }
  .contact-page .contact-cta {
    padding: 60px 20px;
  }
  .contact-page .contact-cta__buttons {
    flex-direction: column;
    width: 100%;
  }
  .contact-page .contact-cta__buttons a {
    width: 100%;
    justify-content: center;
  }
}
@media print {
  .contact-page .contact-hero::before, .contact-page .contact-hero::after {
    display: none;
  }
  .contact-page .contact-map,
  .contact-page .contact-cta {
    display: none;
  }
  .contact-page .contact-form__form {
    display: none;
  }
  .contact-page .contact-info__item {
    page-break-inside: avoid;
  }
}
.error-404-page {
  min-height: calc(100vh - 200px);
}
.error-404-page .error-404-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eefcfd 0%, #fff 50%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
}
.error-404-page .error-404-hero__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.error-404-page .error-404-hero__number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeInScale 0.8s ease-out;
}
@media (max-width: 640px) {
  .error-404-page .error-404-hero__number {
    gap: 10px;
  }
}
.error-404-page .error-404-hero__digit {
  font-size: 8rem;
  font-weight: 300;
  color: #102950;
  line-height: 1;
  opacity: 0.9;
  animation: floatVertical 4s ease-in-out infinite;
}
.error-404-page .error-404-hero__digit:first-child {
  animation-delay: 0s;
}
.error-404-page .error-404-hero__digit:last-child {
  animation-delay: 0.4s;
}
@media (max-width: 640px) {
  .error-404-page .error-404-hero__digit {
    font-size: 5rem;
  }
}
.error-404-page .error-404-hero__circle {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .error-404-page .error-404-hero__circle {
    width: 80px;
    height: 80px;
  }
}
.error-404-page .error-404-hero__circle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  .error-404-page .error-404-hero__circle-svg {
    width: 80px;
    height: 80px;
  }
}
.error-404-page .error-404-hero__zero {
  font-size: 8rem;
  font-weight: 300;
  color: #ffec88;
  line-height: 1;
  animation: pulse 2s ease-in-out infinite;
}
@media (max-width: 640px) {
  .error-404-page .error-404-hero__zero {
    font-size: 5rem;
  }
}
.error-404-page .error-404-hero__title {
  font-size: 2.5rem;
  font-weight: 400;
  color: #102950;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}
@media (max-width: 768px) {
  .error-404-page .error-404-hero__title {
    font-size: 1.8rem;
  }
}
.error-404-page .error-404-hero__subtitle {
  font-size: 1.2rem;
  color: #102950;
  opacity: 0.8;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.5s backwards;
}
@media (max-width: 768px) {
  .error-404-page .error-404-hero__subtitle {
    font-size: 1.05rem;
  }
}
.error-404-page .error-404-hero__decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}
.error-404-page .error-404-hero__decoration--left {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ffec88 0%, transparent 70%);
  top: -100px;
  left: -100px;
}
.error-404-page .error-404-hero__decoration--right {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #a9ecec 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
  animation-delay: 10s;
}
@media (max-width: 768px) {
  .error-404-page .error-404-hero__decoration {
    display: none;
  }
}
.error-404-page .error-404-content {
  padding: 60px 20px;
}
.error-404-page .error-404-content__container {
  max-width: 1000px;
  margin: 0 auto;
}
.error-404-page .error-404-content__message {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}
.error-404-page .error-404-content__message h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #102950;
  margin: 0 0 15px;
}
.error-404-page .error-404-content__message p {
  font-size: 1.1rem;
  color: #102950;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.error-404-page .error-404-options {
  margin-bottom: 60px;
}
.error-404-page .error-404-options__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .error-404-page .error-404-options__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.error-404-page .error-404-option {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(169, 236, 236, 0.2);
  box-shadow: 0 5px 20px rgba(16, 41, 80, 0.05);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out backwards;
}
.error-404-page .error-404-option:nth-child(1) {
  animation-delay: 0.7s;
}
.error-404-page .error-404-option:nth-child(2) {
  animation-delay: 0.8s;
}
.error-404-page .error-404-option:nth-child(3) {
  animation-delay: 0.9s;
}
.error-404-page .error-404-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(16, 41, 80, 0.1);
  border-color: #ffec88;
}
.error-404-page .error-404-option:hover .error-404-option__icon {
  background: #ffec88;
  transform: scale(1.1);
}
.error-404-page .error-404-option__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(169, 236, 236, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #102950;
  transition: all 0.3s ease;
}
.error-404-page .error-404-option__icon svg {
  width: 32px;
  height: 32px;
}
.error-404-page .error-404-option__title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #102950;
  margin: 0 0 10px;
}
.error-404-page .error-404-option__text {
  font-size: 0.95rem;
  color: #102950;
  opacity: 0.7;
  margin: 0 0 20px;
  line-height: 1.5;
}
.error-404-page .error-404-option__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a9ecec;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.error-404-page .error-404-option__link svg {
  transition: transform 0.3s ease;
}
.error-404-page .error-404-option__link:hover {
  color: #102950;
}
.error-404-page .error-404-option__link:hover svg {
  transform: translateX(5px);
}
.error-404-page .error-404-search {
  background: #f8fdfd;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 1s backwards;
}
@media (max-width: 640px) {
  .error-404-page .error-404-search {
    padding: 30px 20px;
  }
}
.error-404-page .error-404-search__title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #102950;
  margin: 0 0 25px;
}
.error-404-page .error-404-search__form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
}
@media (max-width: 640px) {
  .error-404-page .error-404-search__form {
    flex-direction: column;
  }
}
.error-404-page .error-404-search__input {
  flex: 1;
  padding: 14px 20px;
  font-size: 1rem;
  color: #102950;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.error-404-page .error-404-search__input:focus {
  outline: none;
  border-color: #a9ecec;
}
.error-404-page .error-404-search__input::-moz-placeholder {
  color: #102950;
  opacity: 0.5;
}
.error-404-page .error-404-search__input::placeholder {
  color: #102950;
  opacity: 0.5;
}
.error-404-page .error-404-search__button {
  padding: 14px 30px;
  background: #ffec88;
  color: #102950;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.error-404-page .error-404-search__button:hover {
  background: #ffe766;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 236, 136, 0.3);
}
.error-404-page .error-404-search__button svg {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .error-404-page .error-404-search__button {
    justify-content: center;
    width: 100%;
  }
}
.error-404-page .error-404-quick-contact {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #102950 0%, #1a3a63 100%);
  border-radius: 20px;
  color: #fff;
  animation: fadeInUp 0.8s ease-out 1.1s backwards;
}
.error-404-page .error-404-quick-contact p {
  font-size: 1.1rem;
  margin: 0 0 20px;
  opacity: 0.9;
}
.error-404-page .error-404-quick-contact__buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-404-page .error-404-quick-contact__button {
  padding: 12px 25px;
  background: #ffec88;
  color: #102950;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid #ffec88;
}
.error-404-page .error-404-quick-contact__button:hover {
  background: #ffe766;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 236, 136, 0.3);
}
.error-404-page .error-404-quick-contact__button--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.error-404-page .error-404-quick-contact__button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.error-404-page .error-404-quick-contact__button svg {
  flex-shrink: 0;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes floatVertical {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.95);
  }
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -30px);
  }
  66% {
    transform: translate(-20px, 20px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.9882352941);
  color: #333;
}

body,
body * {
  box-sizing: border-box;
}