/*global styles*/
:root {
    /*COLORS*/
    --maincolor: #1a1a1a;
    --pluscolor: #333333;
    --pluscolor2: #cf1f1f;
    --colorhover: #e63a3a;
    --boxcolor: #262626;

    --text-color: #fdf0f0;
    --text-color-second: #b3b3b3;
    --text-color2: #000000;

    /* FONTY */
    --main-font: 'Segoe UI', 'Inter', Roboto, Helvetica, Arial, sans-serif;
    --style-family: 'Oswald', 'Georgia', 'Times New Roman', Times, serif;

    /* WAGI */
    --font-weight: 500;
    --font-weight2: 900;
    --font-weight3: 700;

    --fs-display: clamp(3rem, 5vw + 1rem, 5.5rem);
    --fs-h2: clamp(2rem, 4vw + 1rem, 3.5rem);
    --fs-h3: clamp(1.4rem, 2vw + 1rem, 2.2rem);
    --fs-body: clamp(1rem, 1vw + 0.5rem, 1.2rem);
    --fs-small: clamp(0.85rem, 1vw + 0.3rem, 1rem);

    /* FLUID SPACING */
    --space-section: clamp(60px, 8vw, 100px);
    --space-gap: clamp(20px, 4vw, 50px);
}

/* Accessibility: Ukryty skip-link */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--pluscolor2);
    color: var(--text-color);
    padding: 10px 20px;
    z-index: 9999;
    transition: top 0.3s ease;
    font-family: var(--style-family);
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
}

/* Accessibility: Focus visible (globalny do nawigacji klawiaturą) */
*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--pluscolor2);
    outline-offset: 4px;
}

p {
    text-wrap: pretty;
}

/* block scroll class */
body.no-scroll {
    overflow: hidden;
}

@font-face {
    font-family: 'Oswald';
    font-weight: 400;
    src: url(Oswald/Oswald-VariableFont_wght.woff2);
    font-display: swap;
}

@font-face {
    font-family: 'Oswald-b';
    src: url(Oswald/Oswald-Bold.woff2);
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--maincolor);
    font-weight: var(--font-weight);
    font-family: var(--main-font);
    color: var(--text-color);
    font-size: var(--fs-body);
    min-height: 100vh;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {

    font-family: var(--style-family);
    text-wrap: balance;
}

h1 {
    font-family: 'Oswald-b';
}

h1,
.number,
.numbers {
    font-size: var(--fs-display);
    line-height: 1.1;
    font-weight: var(--font-weight2);
}

h2 {
    font-size: var(--fs-h2);
    font-weight: var(--font-weight3);
}

h3 {
    font-size: var(--fs-h3);
}

p {
    text-wrap: pretty;
    font-size: var(--fs-body);
}

section {
    padding: var(--space-section) 0;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

.container,
#nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.btn,
.ui {
    padding: 15px 30px;
    transition: all 0.3s ease;
    text-align: center;

    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--style-family);
}

.btn:hover,
.ui:hover {
    scale: 1.10;
}

section {
    padding: 80px 0;
}

.btn {
    border: solid 2px var(--text-color);
}

.btn:hover {
    background: var(--text-color);
    color: var(--text-color2);
}

.ui {
    background-color: var(--pluscolor2);
}

#ui {
    background-color: var(--pluscolor2);
    padding: 15px 30px;
    transition: all 0.3s ease;
}

.ui:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(207, 31, 31, 0.6);
}

.ui:hover,
#ui:hover {
    background: var(--colorhover);
}

.entrance,
.slide-left,
.slide-right {
    will-change: opacity, transform;
}

/*nav*/

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--pluscolor);
    z-index: 1000;
    border-bottom: var(--pluscolor2) 2px solid;
}

#nav {
    display: flex;
    justify-content: space-between;
}

#logo {
    height: 50px;
    margin: 10px 0;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.navlink {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-color);
    padding: 15px 25px;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.navlink::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--colorhover);
    transition: width 0.3s ease, left 0.3s ease;
}

.navlink:hover::after {
    width: 100%;
    left: 0;
}

.navlink:hover {
    border-bottom: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    cursor: pointer;
    padding: 10px;
    gap: 6px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 28px;
    background-color: var(--pluscolor2);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/*hero*/

#hero {
    background: linear-gradient(90deg, rgba(0, 0, 0), rgba(0, 0, 0, 0.1)), url(photo/photo-hero.webp) no-repeat center/cover;
    height: 92vh;
    opacity: 1 !important;
    transform: none !important;
}

#hero .container {
    height: 100%;
}

#hero .container div {
    display: flex;
    row-gap: 25px;
    column-gap: 20px;
    flex-direction: column;
}

#hero .container div div {
    display: flex;
    flex-direction: row;
}

/*help section*/

#help .container {
    flex-direction: column;
    gap: 60px;
}


.box-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.box {
    padding: 50px 20px;
    flex: 1;
    text-align: center;
    background-color: #262626;
    border: solid 3px var(--pluscolor);
    transition: all 0.3s ease;
}

#help .box:hover {
    scale: 1.05;
    border-color: var(--pluscolor2);
}


#help .box h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: inline-block;
}

/* Tworzenie kreski */
#help .box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;

    background-color: var(--pluscolor2);
    transition: width 0.3s ease;
}

#help .box:hover h3::after {
    width: 180px;
}

.icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 50%;
    padding: 10px;
    overflow: visible;
    transition: transform 0.3s ease;
    transform-origin: center;
    margin: auto;
}

.icon img {
    width: 100%;
    height: 100%;
    scale: 1.15;
    filter: invert(1) brightness(100%);
}

.box:nth-child(1) .icon img {
    margin-top: 3px;
}

.box:nth-child(3) .icon img {
    scale: 1.20;
}

.box:hover .icon {
    transform: scale(1.1);
}

.box h3 {
    margin: 15px 0;
}

.box p,
.process-box p,
#about p {
    color: var(--text-color-second);
    line-height: 1.6;
}


/*process*/

#process .container {
    flex-direction: column;
    gap: 40px;
}

#process .box-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    margin: 0 auto;
}

#process .box-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--pluscolor2) 10%, var(--pluscolor2) 95%, transparent);
    z-index: 1;
}

#process .box-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid var(--pluscolor2);
    z-index: 1;
}

.box:hover {
    border-color: var(--pluscolor2);
}

#process .box {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-height: 300px;
    width: fit-content;
}

.numbers {
    display: block;
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1;
    color: var(--pluscolor2);
}

/*about*/

#about {
    background-color: var(--pluscolor);
    overflow: hidden;
    padding: 80px 0;
}

#about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
}

.about-content {
    max-width: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-content h2::before {
    content: "WHO I AM";
    display: block;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--pluscolor2);
    margin-bottom: 15px;
    font-family: var(--main-font);
    font-weight: 600;
    opacity: 0.9;
}

.about-content .lead-text {
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
    border-left: 4px solid var(--pluscolor2);
    padding-left: 25px;
    color: var(--text-color) !important;
    font-style: italic;
}

.about-content p:not(.lead-text) {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content .ui {
    width: fit-content;
    padding: 15px 50px;
    margin-top: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.about-content .ui:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.about-image {
    position: relative;
    max-width: 45%;
    width: 100%;
    filter: grayscale(0%);
    min-width: 480px;
}

.about-image::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--pluscolor2);
    z-index: 0;
    transition: transform 0.4s ease;
}

.about-image::after {
    content: "";
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40%;
    height: 40%;
    background: repeating-linear-gradient(45deg,
            var(--pluscolor2),
            var(--pluscolor2) 2px,
            transparent 2px,
            transparent 10px);
    z-index: 0;
    opacity: 0.3;
}

.about-image img {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-image:hover::before {
    transform: translate(10px, 10px);
}


/*stats*/

#stats {
    background-color: var(--pluscolor);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#stats .container {
    justify-content: space-around;
}

.stat-item {
    position: relative;
    padding: 0 30px;
    text-align: center;
}


.number {
    font-family: var(--main-font);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.stat-plus,
.stat-suffix {
    color: var(--pluscolor2);
    font-size: 2.5rem;
    font-weight: 600;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-color-second);
    letter-spacing: 1px;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
}

#note {
    text-align: center;
    width: 100%;
    display: inline-block;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
    letter-spacing: 0.5px;
}

/*faq*/

#faq .container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--pluscolor);
    width: 100%;
    border-left: 4px solid transparent;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.faq-item.active {
    background-color: #222222;
    border-left: 4px solid var(--pluscolor2);
    border-bottom: 1px solid transparent;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: var(--font-weight);
    background: transparent;
    border: none;
    color: var(--text-color);
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--colorhover);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-content {
    overflow: hidden;
    min-height: 0;
}

.faq-content p {
    padding-top: 10px;
    padding-bottom: 30px;
    line-height: 1.6;
    color: var(--text-color-second);
    margin: 0;

    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-item.active .faq-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.icon-container {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.icon-line {
    position: absolute;
    background-color: var(--pluscolor2);
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-line.horizontal {
    width: 100%;
    height: 3px;
}

.icon-line.vertical {
    width: 3px;
    height: 100%;
}

.faq-question:hover .icon-line {
    background-color: var(--colorhover);
}

.faq-item.active .icon-line.vertical {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .icon-line.horizontal {
    transform: translate(-50%, -50%) rotate(180deg);
    background: var(--colorhover);
}

.faq-item.active .faq-question {
    color: var(--text-color);
}

/*reviews*/
#reviews {
    overflow: hidden;
    padding-bottom: 100px;
}

#reviews .container {
    justify-content: center;
}

.review-container {
    position: relative;
    width: 100%;
    padding: 50px 0;
}

.review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            var(--maincolor) 0%,
            transparent 15%,
            transparent 85%,
            var(--maincolor) 100%);
    z-index: 5;
    pointer-events: none;
}

.review-content {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollLeft 60s linear infinite;
    position: relative;
}

.review-content:hover {
    animation-play-state: paused;
}

.review-card {
    background-color: var(--boxcolor);
    padding: 30px;
    width: 420px;
    height: 350px;
    flex-shrink: 0;
    border: 1px solid var(--pluscolor);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: "“";
    position: absolute;
    top: -5px;
    right: 20px;
    font-family: serif;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-7px);
    border-color: var(--pluscolor2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    color: var(--pluscolor2);
    text-align: left;
    width: 100%;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

#reviews p {
    line-height: 1.6;
    margin-bottom: 0;
    color: #ddd;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    font-weight: bold;
    color: var(--text-color);
    text-align: left;
    width: 100%;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 2px solid var(--pluscolor2);
    padding-left: 10px;
    font-family: 'Oswald', sans-serif;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

/*contact - cta*/

#contact {
    background: linear-gradient(90deg, rgba(161, 24, 24, 0.5), rgba(161, 24, 24, 0.5)), url(photo/cta-photo.jpg) no-repeat center/cover;
}

#contact .container {
    display: flex;
    gap: 30px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

/*footer*/

footer {
    background-color: var(--pluscolor);
    padding: 80px 0 0 0;
    border-top: 2px solid var(--pluscolor2);
    margin-top: 50px;
}

footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    padding-bottom: 60px;
}

.footer-column h3 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--pluscolor2);
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 15px;
}

#footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--pluscolor2);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pluscolor2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-links a:hover {
    color: var(--colorhover);
    transform: scale(1.20) translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

/*LINK W STOPCE*/
.signature-link {
    color: inherit;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease, opacity 0.3s ease;
}

.signature-link:hover {
    opacity: 0.8;
    border-bottom-color: currentColor;
}

/* !!!ANIMATIONS!!! */

@keyframes Entrance {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes SlideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes SlideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*anim - hero*/

#hero h1,
#hero p,
#hero .ui,
#hero .btn {
    opacity: 0;
    animation: Entrance 0.8s ease-out forwards;
}

#hero h1 {
    animation-delay: 0.2s;
}

#hero p {
    animation-delay: 0.4s;
}

#hero .ui,
#hero .btn {
    animation-delay: 0.6s;
}

/*animation - class*/

#help .box,
#process .box,
#about .about-content,
#about .about-image,
#stats,
footer,
#contact,
#reviews,
.faq-item,
main#form {
    opacity: 0;
}

.delay-02 {
    animation-delay: 0.2s !important;
}

.delay-04 {
    animation-delay: 0.4s !important;
}

.delay-06 {
    animation-delay: 0.6s !important;
}

.entrance.visible {
    animation: Entrance 0.6s ease forwards;
}

.slide-left.visible {
    animation: SlideLeft 0.6s ease forwards;
}

.slide-right.visible {
    animation: SlideRight 0.6s ease forwards;
}

/*MEDIA QUERIES*/

@media (max-width: 1400px) {
    #process .box {
        max-height: none;
    }

    #hero p {
        max-width: 600px;
        margin-bottom: 25px;
    }

    #hero .container div {
        row-gap: 10px;
    }
}

@media (max-width: 1100px) {
    .box {
        padding: 30px 20px;
    }

    .review-card {
        width: 350px;
        height: 260px;
    }

    #about .about-image {
        max-width: 40%;
    }
}

@media (min-width: 1024px) {
    #process .box-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 160px;
        align-items: start;
    }

    #process .box:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    #process .box:nth-child(2) {
        grid-column: 2;
        grid-row: 2 / 4;
    }

    #process .box:nth-child(3) {
        grid-column: 1;
        grid-row: 3 / 5;
    }

    #process .box:nth-child(4) {
        grid-column: 2;
        grid-row: 4 / 6;
    }

    #process .box {
        position: relative;
    }

    #process .box::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 90px;
        height: 2px;
        background-color: var(--pluscolor);
        z-index: 1;
        transition: background-color 0.3s ease;
    }

    #process .box::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background-color: var(--pluscolor2);
        border: 3px solid var(--pluscolor2);
        border-radius: 50%;
        z-index: 2;
    }

    #process .box:nth-child(odd)::before {
        right: -90px;
    }

    #process .box:nth-child(odd)::after {
        right: -91px;
    }

    #process .box:nth-child(even)::before {
        left: -90px;
    }

    #process .box:nth-child(even)::after {
        left: -91px;
    }

    #process .box:hover {
        border-color: var(--pluscolor2);
        transform: translateY(-5px);
    }

    #process .box:hover::before {
        background-color: var(--pluscolor2);
    }
}

/* MENU MOBILNE & IPAD LAYOUT */
@media (max-width: 1024px) {
    #logo {
        height: 40px;
        position: relative;
        z-index: 1001;
    }

    .hamburger {
        display: flex;
    }

    header nav ul {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        gap: 30px;
    }

    header nav ul.active {
        right: 0;
    }

    .navlink {
        top: 0;
        text-align: center;
        padding: 10px;
        border-bottom: none;
        margin: 0;
        display: block;
        font-size: 2.2rem;
        font-family: var(--style-family);
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--text-color);
        opacity: 0;
        transform: translateY(30px);
        transition: color 0.3s ease, transform 0.4s ease;
    }

    .navlink::after {
        display: none;
    }

    nav #ui {
        display: inline-block;
        font-size: 1.5rem;
        margin-top: 20px;
        background-color: var(--pluscolor2) !important;
        color: #ffffff !important;
        font-family: var(--style-family);
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 15px 40px;
        border: none;
        opacity: 0;
        transform: translateY(30px);
    }

    header nav ul.active .navlink,
    header nav ul.active #ui {
        opacity: 1;
        transform: translateY(0);
    }

    header nav ul.active li:nth-child(1) .navlink {
        transition-delay: 0.1s;
    }

    header nav ul.active li:nth-child(2) .navlink {
        transition-delay: 0.15s;
    }

    header nav ul.active li:nth-child(3) .navlink {
        transition-delay: 0.2s;
    }

    header nav ul.active li:nth-child(4) .navlink {
        transition-delay: 0.25s;
    }

    header nav ul.active li:nth-child(5) .navlink {
        transition-delay: 0.3s;
    }

    header nav ul.active li:last-child #ui {
        transition-delay: 0.4s;
    }

    #process .box-container {
        padding-bottom: 40px;
    }
}

@media (max-width: 900px) {
    #about .container {
        flex-direction: column;
    }

    #about .about-image {
        max-width: 70%;
        min-width: unset;
        margin-top: 40px;
    }

    #about .about-content {
        max-width: 100%;
    }

    h2 {
        text-align: center;
    }

    #about .about-content a.ui {
        margin: 0 auto;
    }

    #hero p {
        max-width: 350px;
    }

    #hero .container div {
        row-gap: 0;
    }

    #hero {
        height: 85vh;
        background-position: 70% center;
    }

    #help .box-container {
        flex-direction: column;
        gap: 30px;
    }

    #help .box {
        padding: 20px;
    }

    #help .box .icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    #hero .container div div {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    #hero .btn,
    #hero .ui {
        width: 100%;
        max-width: 330px;
    }

    footer .footer-column:nth-of-type(1) p {
        width: 250px;
        margin: 0 auto 15px auto;
    }

    #about .about-image {
        width: 100%;
        max-width: 100%;
    }

    #stats .container {
        flex-wrap: wrap;
        row-gap: 40px;
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 50%;
        width: 50%;
        padding: 0 15px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .radio-group {
        flex-direction: column;
    }

    #full-contact {
        padding: 100px 0 60px 0;
    }

    #big-form {
        padding: 30px 20px;
    }
}

@media (max-width: 550px) {

    #about .about-image img,
    .about-image {
        min-height: auto;
    }

    #stats .container {
        padding: 10px;
    }

    .stat-item {
        padding: 0;
        height: auto;
        width: auto;
    }
}

@media (max-width: 370px) {
    .stat-item {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .stat-item:last-child {
        margin-bottom: 0;
    }
}

/*FORM STYLES - CSS*/

#full-contact {
    position: relative;
    background: url('photo/background-form.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    padding: 120px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(197, 30, 30, 0.4), rgba(197, 30, 30, 0.4)), url(photo/background-form.jpg) no-repeat center/cover;

    z-index: 1;
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.form-header p {
    color: var(--text-color-second);
    font-size: 1.1rem;
}

#big-form {
    padding: 50px;
    border-radius: 4px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

#big-form label {
    font-family: var(--style-family);
    font-size: 0.9rem;
    color: var(--text-color-second);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 500;
}

.label-title {
    display: block;
    margin-bottom: 15px !important;
}

#big-form input[type="text"],
#big-form input[type="email"],
#big-form input[type="tel"],
#big-form textarea,
#big-form select {
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid #333;
    color: var(--text-color);
    padding: 15px;
    font-size: 1rem;
    font-family: var(--main-font);
    transition: all 0.3s ease;
    width: 100%;
}

#big-form input:focus,
#big-form textarea:focus,
#big-form select:focus {
    outline: none;
    border-color: var(--pluscolor2);
    background-color: rgba(0, 0, 0, 0.8);
}

textarea {
    resize: none;
}

.radio-group {
    display: flex;
    gap: 15px;
}

.radio-box {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.radio-box input {
    display: none;
}

.radio-custom {
    display: block;
    text-align: center;
    padding: 15px 10px;
    border: 2px solid #333;
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--text-color-second);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.radio-box input:checked+.radio-custom {
    border-color: var(--pluscolor2);
    background-color: var(--pluscolor2);
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(207, 31, 31, 0.3);
}

.full-width {
    width: 100%;
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 18px;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    margin-top: 15px;
}

footer {
    margin-top: 0;
}

@media (max-width: 768px) {
    #full-contact {
        padding: 100px 0 60px 0;
    }

    #big-form {
        padding: 30px 20px;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .radio-group {
        flex-direction: column;
    }

    .form-header h2 {
        font-size: 2.2rem;
    }
}

/* ACCESSIBILITY: REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .entrance,
    .slide-left,
    .slide-right {
        opacity: 1 !important;
        transform: none !important;
    }
}