/* [project]/src/components/Footer/footer.css [app-client] (css) */
.footer {
  color: #fff;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  margin-top: auto;
}

[data-theme="light"] .footer {
  background: linear-gradient(135deg, #0a4f52 0%, #065558 50%, #033e41 100%);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}

.footer-grid {
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
  display: grid;
}

.footer-column {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.footer-title {
  color: #fff;
  margin: 0 0 8px;
  padding-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.footer-title:after {
  content: "";
  background: linear-gradient(90deg, #fff, #0000);
  border-radius: 2px;
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer-about {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  filter: brightness(0) invert();
  width: auto;
  height: 50px;
}

.footer-description {
  color: #ffffffd9;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-contact {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.footer-contact-item {
  color: #ffffffd9;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  transition: all .3s;
  display: flex;
}

.footer-contact-item:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact-item svg {
  color: #ffffffb3;
  flex-shrink: 0;
}

.footer-links {
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.footer-links li {
  transition: transform .2s;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: #ffffffd9;
  font-size: 15px;
  text-decoration: none;
  transition: color .3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
}

.footer-map {
  border-radius: 12px;
  width: 100%;
  transition: transform .3s;
  overflow: hidden;
  box-shadow: 0 4px 12px #0000004d;
}

.footer-map:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px #0006;
}

.footer-map iframe {
  filter: grayscale(20%) contrast(1.1);
  width: 100%;
  height: 200px;
  display: block;
}

.footer-bottom {
  background: #0003;
  border-top: 1px solid #ffffff1a;
  padding: 24px 0;
}

.footer-bottom-container {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.footer-copyright {
  align-items: center;
  display: flex;
}

.footer-copyright p {
  color: #fffc;
  margin: 0;
  font-size: 14px;
}

.footer-copyright strong {
  color: #fff;
  font-weight: 600;
}

.footer-social {
  align-items: center;
  gap: 16px;
  display: flex;
}

.footer-social a {
  color: #ffffffd9;
  background: #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.footer-social a:hover {
  color: #fff;
  background: #fff3;
  transform: translateY(-3px);
}

.footer-social a:active {
  transform: translateY(-1px);
}

@media screen and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    max-width: 100%;
  }

  .footer-container {
    padding: 50px 20px 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-container {
    padding: 40px 16px 24px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-description {
    font-size: 14px;
  }

  .footer-contact-item {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-bottom-container {
    text-align: center;
    flex-direction: column;
    gap: 16px;
  }

  .footer-copyright p {
    font-size: 13px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-map iframe {
    height: 180px;
  }
}

@media screen and (max-width: 480px) {
  .footer-container {
    padding: 32px 16px 20px;
  }

  .footer-logo img {
    height: 40px;
  }

  .footer-title {
    font-size: 15px;
  }

  .footer-description {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .footer-contact-item {
    font-size: 12px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-social a svg {
    width: 18px;
    height: 18px;
  }

  .footer-map iframe {
    height: 160px;
  }

  .footer-copyright p {
    font-size: 12px;
  }
}

/* [project]/src/components/Navbar/navbar.css [app-client] (css) */
.navbar {
  z-index: 1000;
  background: var(--primary-background-color);
  width: 100%;
  transition: all .3s;
  top: 0;
  left: 0;
  right: 0;
}

.non-scrolled-navbar {
  position: relative;
  box-shadow: 0 2px 10px #0000000d;
}

.scrolled-navbar {
  position: fixed;
  box-shadow: 0 4px 20px #0000001a;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 40px;
  transition: all .3s;
  display: flex;
}

.navbar-logo {
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
}

.navbar-logo-image-container {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  transition: transform .3s;
  display: flex;
  overflow: hidden;
}

.navbar-logo-image {
  object-fit: cover;
  border-radius: 8px;
}

.navbar-links-container {
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.navbar-link {
  color: var(--primary-color);
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 10px 15px 5px 10px;
  font-family: Montserrat, sans-serif;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
}

.navbar-link:hover {
  color: #36daef;
}

.navbar-link-active:after {
  content: "";
  background: #36daef;
  border-radius: 2px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
}

.navbar-theme-controller {
  align-items: center;
  display: flex;
}

.navbar-theme-toggle-circle {
  cursor: pointer;
  background: #d9dee7;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .3s;
  display: flex;
  box-shadow: 0 2px 8px #00000026;
}

.navbar-theme-single-icon {
  color: #000;
  transition: all .3s;
}

.navbar-mobile-toggle {
  cursor: pointer;
  z-index: 1002;
  color: var(--primary-color);
  background: none;
  border: none;
  padding: 8px;
  display: none;
}

.navbar-mobile-toggle:hover {
  opacity: .7;
}

.navbar-mobile-sidebar {
  background: var(--primary-background-color);
  z-index: 1001;
  width: 100%;
  height: 100vh;
  transition: right .4s cubic-bezier(.4, 0, .2, 1);
  position: fixed;
  top: 0;
  right: -100%;
  overflow-y: auto;
  box-shadow: -5px 0 30px #00000026;
}

.navbar-mobile-sidebar-active {
  right: 0;
}

.navbar-sidebar-header {
  background: var(--primary-background-color);
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  display: flex;
}

.navbar-sidebar-logo {
  align-items: center;
  gap: 12px;
  display: flex;
}

.navbar-sidebar-logo-image {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.navbar-sidebar-logo-image img {
  object-fit: cover;
  border-radius: 8px;
}

.navbar-sidebar-close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
}

.navbar-sidebar-close:hover {
  background: #0000000d;
  transform: rotate(90deg);
}

.navbar-sidebar-links {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-sidebar-links li {
  margin: 0;
}

.navbar-sidebar-link {
  color: var(--primary-color);
  align-items: center;
  padding: 20px 25px;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
}

.navbar-sidebar-link:hover {
  background: var(--secondary-background-color);
}

.navbar-sidebar-link-active {
  color: #36daef;
  font-weight: 600;
}

.navbar-sidebar-theme {
  background: var(--primary-background-color);
  margin: 0;
  padding: 0;
}

.navbar-sidebar-theme-option {
  cursor: pointer;
  width: 100%;
  color: var(--primary-color);
  text-align: left;
  background: none;
  border: none;
  align-items: center;
  gap: 12px;
  padding: 20px 25px;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all .3s;
  display: flex;
}

.navbar-sidebar-theme-option:last-child {
  border-bottom: none;
}

.navbar-sidebar-theme-option-active {
  color: #06c;
  font-weight: 600;
}

.navbar-sidebar-theme-option svg {
  flex-shrink: 0;
}

.navbar-desktop-only {
  display: flex;
}

.navbar-mobile-only {
  display: none;
}

@media (max-width: 968px) {
  .navbar-container {
    padding: 15px 30px;
  }

  .navbar-links-container {
    gap: 25px;
  }

  .navbar-link {
    padding: 8px 12px;
    font-size: .9rem;
  }

  .navbar-theme-toggle-circle {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 15px 25px;
  }

  .navbar-desktop-only {
    display: none !important;
  }

  .navbar-mobile-only, .navbar-mobile-toggle {
    display: flex;
  }

  .navbar-mobile-sidebar {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 12px 20px;
  }

  .navbar-sidebar-header {
    padding: 18px 20px;
  }

  .navbar-sidebar-link {
    padding: 12px 20px;
    font-size: .95rem;
  }

  .navbar-sidebar-theme-option {
    padding: 18px 20px;
    font-size: .95rem;
  }
}

/*# sourceMappingURL=src_components_dee32aea._.css.map*/