/** General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    font-family: "Geometria", sans-serif;
}
@font-face {
    font-family: "Geometria";
    src: url("/fonts/geometria_bold.otf");
    font-weight: 900;
}
@font-face {
    font-family: "Geometria";
    src: url("/fonts/geometria.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Geometria";
    src: url("/fonts/geometria_light.otf");
    font-weight: 300;
}
body {
    overflow-x: hidden;
    min-width: 280px;
    background: #081422;
    display: flex;
    color: white;
    flex-direction: column;
    min-height: 100vh;
}
main {
    padding-top: 100px;
    flex: 1;
}
main > section:first-child {
    padding-top: 0 !important;
}
a {
    text-decoration: none;
    color: inherit;
}
.button {
    border-radius: 12px;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
header {
    width: 100%;
    padding: 10px 25px;
    backdrop-filter: blur(12px);
    background: rgba(9, 23, 40, 0.64);
    border-bottom: 1px solid rgba(43, 106, 141, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.3rem;
}
.desktop-header > a {
    font-weight: 600;
    margin: 0 5px;
    position: relative;
}
.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.link:hover::after {
    transform: scaleX(1);
}
.link.selected::after {
    transform: scaleX(1);
}
.phone-btn {
    display: inline-block;
    padding: 10px;
    background-color: #ededed;
    font-weight: 600;
    color: #2f5d73;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s ease;
}
.header-content {
    width: 100%;
    z-index: 500;
    position: fixed;
}
.menu-btn {
    display: none;
}
@media (max-width: 1000px) {
    .desktop-header {
        display: none !important;
    }
    .menu-btn {
        display: block;
    }
    .phone-btn {
        width: 100%;
        font-size: 1.3rem;
        text-align: center;
    }
}
.burger {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}
.burger span {
    display: block;
    width: 32px;
    height: 3px;
    background: white;
    border-radius: 999px;
    transition:
        transform 0.35s ease,
        opacity 0.25s ease;
}
.menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
}
#menu-toggle:checked + .burger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
#menu-toggle:checked + .burger span:nth-child(2) {
    opacity: 0;
}
#menu-toggle:checked + .burger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.header-content:has(#menu-toggle:checked) .menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.mobile-nav > a:not(.phone-btn) {
    font-weight: 500;
}
footer {
    width: 100%;
    padding: 20px 35px;
    border-top: 1px solid rgba(43, 106, 141, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-nav {
    font-size: 1.2rem;
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
        font-size: 1.2rem;
    }
    section.request{
        flex-direction: column !important;
        gap: 50px;
    }
    #requestForm {
        width: 100% !important;
    }
}
.block {
    background: rgba(10, 26, 46, 0.5);
    border: 1px solid rgba(43, 106, 141, 0.2);
    border-radius: 12px;
    gap: 20px;
    flex: 1;
    padding: 20px 30px;
}
.circle {
    display: grid;
    place-items: center;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid rgba(43, 106, 141, 0.4);
}
p {
    color: rgba(255, 255, 255, 0.7);
}
section.request {
    padding: 40px 20px;
    justify-content: space-evenly;
}
.contact {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
form {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.button.form {
    background: #2b6a8d;
    color: white;
    display: flex;
    transition: .2s;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.button.form:hover {
    background: #3a92c2;
    color: white;
}
input {
    border: 1px solid rgba(43, 106, 141, 0.3);
    border-radius: 6px;
    color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    background: rgba(10, 26, 46, 0.5);
}
.modalWindow {
    position: fixed;
    width: 100%;
    height: 100%;
    transition: .5s ease;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.production .block {
    display: flex;
    background: none;
    border: none;
    flex-direction: column;
    gap: 20px;
}
.production .block img {
    border-radius: 12px;
}
/*! Special Classes */
.y {
    display: flex;
    gap: 20px;
    align-items: center;
}
.x {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.center {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.none {
    display: none;
}
.hidden {
    opacity: 0;
    pointer-events: none;
}
.flex {
    display: flex;
    gap: 20px;
}
.column {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.p {
    padding: 40px 20px;
}
/*? Animation */
[anim] {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease,
    clip-path 0.8s ease;
  will-change: opacity, transform, filter, clip-path;
}
[anim].in-view {
  opacity: 1;
  transform: none;
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}
[anim="fade-up"] {
  transform: translateY(40px);
}
[anim="fade-down"] {
  transform: translateY(-40px);
}
[anim="fade-left"] {
  transform: translateX(40px);
}
[anim="fade-right"] {
  transform: translateX(-40px);
}
[anim="zoom-in"] {
  transform: scale(0.9);
}
[anim="zoom-out"] {
  transform: scale(1.08);
}
[anim="blur-in"] {
  filter: blur(10px);
  transform: translateY(20px);
}
[anim="clip-reveal"] {
  clip-path: inset(0 100% 0 0);
}
[anim="rotate-in"] {
  transform: rotate(-6deg) scale(0.95);
}
[anim="line-reveal"] {
  transform: scaleX(0);
  transform-origin: left;
}
[anim="line-reveal"].in-view {
  transform: scaleX(1);
}