/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    animation: logoMoveUp 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(0);
    opacity: 0;
    animation: topPiece 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
    display: block;
}

/* Create multiple logo pieces for assembly effect */
.loading-logo::before,
.loading-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/logo-noname.webp') no-repeat center;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(0);
    opacity: 0;
}

/* Bottom piece - starts first */
.loading-logo::before {
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    animation: bottomPiece 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Middle piece - starts second */
.loading-logo::after {
    clip-path: polygon(0 30%, 100% 30%, 100% 60%, 0 60%);
    animation: middlePiece 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

/* Top piece - starts last */
.loading-logo img {
    clip-path: polygon(0 0%, 100% 0%, 100% 30%, 0 30%);
    animation: topPiece 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

@keyframes bottomPiece {
    0% {
        opacity: 0;
        filter: brightness(0) saturate(100%) invert(0);
    }
    20% {
        opacity: 0.3;
        filter: brightness(0) saturate(100%) invert(0);
    }
    40% {
        opacity: 0.6;
        filter: brightness(0) saturate(100%) invert(0);
    }
    60% {
        opacity: 0.8;
        filter: brightness(0) saturate(100%) invert(0);
    }
    80% {
        opacity: 0.95;
        filter: brightness(0.5) saturate(100%) invert(0);
    }
    100% {
        opacity: 1;
        filter: brightness(1) saturate(100%) invert(0);
    }
}

@keyframes middlePiece {
    0% {
        opacity: 0;
        filter: brightness(0) saturate(100%) invert(0);
    }
    20% {
        opacity: 0.3;
        filter: brightness(0) saturate(100%) invert(0);
    }
    40% {
        opacity: 0.6;
        filter: brightness(0) saturate(100%) invert(0);
    }
    60% {
        opacity: 0.8;
        filter: brightness(0) saturate(100%) invert(0);
    }
    80% {
        opacity: 0.95;
        filter: brightness(0.5) saturate(100%) invert(0);
    }
    100% {
        opacity: 1;
        filter: brightness(1) saturate(100%) invert(0);
    }
}

@keyframes topPiece {
    0% {
        opacity: 0;
        filter: brightness(0) saturate(100%) invert(0) ;
    }
    20% {
        opacity: 0.3;
        filter: brightness(0) saturate(100%) invert(0);
    }
    40% {
        opacity: 0.6;
        filter: brightness(0) saturate(100%) invert(0);
    }
    60% {
        opacity: 0.8;
        filter: brightness(0) saturate(100%) invert(0);
    }
    80% {
        opacity: 0.95;
        filter: brightness(0.5) saturate(100%) invert(0);
    }
    100% {
        opacity: 1;
        filter: brightness(1) saturate(100%) invert(0);
    }
}

.loading-progress {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1px;
    overflow: hidden;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #0a0808;
    animation: progressFill 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Hide body content during loading */
body.loading {
    overflow: hidden;
}

body.loaded {
    overflow: auto;
}

/* Content entrance animation after loading */
.hero,
.sterky-section,
.process-section,
.reviews-section,
.contact-section,
.footer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.loaded .hero {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

body.loaded .sterky-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}


.sterky-section {
    visibility: hidden;
}

body.loaded .sterky-section {
    visibility: visible;
}

body.loaded .process-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

body.loaded .reviews-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

body.loaded .contact-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

body.loaded .footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    height: 91px;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.nav-logo .logo {
    width: 160px;
    height: 44px;
    object-fit: contain;
    transform: translateY(5.59px);
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
}

.nav-actions {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Buttons */
.btn-contact {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 8px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #000000;
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-contact:hover::before {
    height: 100%;
}

.btn-contact:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.btn-primary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #FFFFFF;
    padding: 8px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: #000000;
}

.forward-arrow.white {
    width: 9.45555px;
    height: 23px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.forward-arrow.black {
    width: 9.45555px;
    height: 23px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.forward-arrow.black {
    display: none;
}

.btn-primary:hover .forward-arrow.white {
    display: none;
}

.btn-primary:hover .forward-arrow.black {
    display: inline-block;
}

.forward-arrow.black.reversed {
    width: 9.45555px;
    height: 23px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.forward-arrow.white.reversed {
    width: 9.45555px;
    height: 23px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.forward-arrow.black.reversed {
    display: none;
}

.btn-primary:hover .forward-arrow.black.reversed {
    display: none;
}

.btn-primary:hover .forward-arrow.white.reversed {
    display: inline-block;
}


.btn-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 8px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    z-index: 1;
    text-decoration: none;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: #FFFFFF;
}

/* Reversed arrows for btn-secondary */
.btn-secondary .forward-arrow.black.reversed {
    display: inline-block;
}

.btn-secondary .forward-arrow.white.reversed {
    display: none;
}

.btn-secondary:hover .forward-arrow.black.reversed {
    display: none;
}

.btn-secondary:hover .forward-arrow.white.reversed {
    display: inline-block;
}

.btn-small {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-small:hover {
    transform: scale(1.1);
}

.arrow-icon {
    width: 23px;
    height: 23px;
    object-fit: contain;
    display: block;
}

.btn-contact-large {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 8px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-contact-large::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: top 0.3s ease;
    z-index: -1;
}

.btn-contact-large:hover::before {
    top: 0;
}

.btn-contact-large:hover {
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    position: relative;
    height: 770px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 60px;
    margin-top: 91px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite;
    transform-origin: center center;
    filter: brightness(1.1) contrast(1.05);
    display: block;
}

@keyframes heroZoom {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.1) translateY(-10px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}



.hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    animation: contentSlideIn 1.5s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes contentSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #FFFFFF;
    animation: titleFadeIn 2s ease-out 0.5s both;
}

@keyframes titleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-arrow:hover {
    transform: translateX(-50%) scale(1.1);
    animation-play-state: paused;
}

.expand-arrow {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
    animation: arrowRotate 3s ease-in-out infinite;
}

@keyframes arrowRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
}

/* Stěrky Hero Section */
.sterky-hero {
    position: relative;
    height: 425px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 91px;
}

.sterky-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sterky-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sterky-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.sterky-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sterky-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
}

.sterky-hero-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
}

.sterky-hero-arrow:hover {
    transform: translateX(-50%) scale(1.1);
}

.sterky-expand-arrow {
    width: 46px;
    height: 25px;
    object-fit: contain;
    display: block;
}

/* Stěrky Grid Section */
.sterky-grid-section {
    padding: 112px 0;
    background: #FFFFFF;
}

.sterky-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 109px;
    margin-bottom: 50px;
}

.sterky-row:last-child {
    margin-bottom: 0;
}

/* Section Titles */
.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
}

/* Stěrky Section */
.sterky-section {
    padding: 112px 0;
    background: #FFFFFF;
    min-height: 500px;
}

.sterky-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 109px;
    margin-bottom: 50px;
    min-height: 286px;
}

.sterky-card {
    width: 367.36px;
    height: 286.02px;
    background: #EBEBEB;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image {
    width: 100%;
    height: 181.93px;
    overflow: hidden;
    position: relative;
    background: #EBEBEB;
}

.sterky-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 17px;
    position: relative;
}

.card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
    color: #000000;
}

.card-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 8px;
}

.btn-small {
    position: absolute;
    top: 17px;
    right: 17px;
}

.sterky-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* Process Section */
.process-section {
    padding: 112px 0;
    background: #EBEBEB;
}

.process-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
}

.process-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.step-number {
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #696969;
}

.step-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 24px;
}

.step-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}

.process-arrow {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-arrow .arrow-icon {
    width: 45px;
    height: 45px;
}

/* Google Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.reviews-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.reviews-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Style the reviews widget container */
#reviews-widget-486 {
    margin-bottom: 40px;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-cta {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-cta {
        margin-top: 20px;
    }
}

/* Contact Section */
.contact-section {
    padding: 112px 0;
    background: #EBEBEB;
}

.contact-content {
    max-width: 616px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
}

.contact-description {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 32px;
}

.contact-button {
    display: flex;
    justify-content: center;
}

/* Footer - IMPROVED VERSION */
.footer {
    background: #FFFFFF;
    padding: 87px 172px;
    position: relative;
    min-height: 543px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1096px;
    margin: 0 auto;
    position: relative;
    min-height: 100%;
}

/* Top section with lines and social icons - IMPROVED */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 41px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-line {
    height: 2px;
    background-color: #000000;
    flex-shrink: 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    width: 446px;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.social-link {
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #020202;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: #696969;
    transform: scale(1.1);
}

.social-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    display: block;
}

/* Main footer content */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-top: 108.5px;
    transition: all 0.3s ease;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-img {
    width: 334px;
    height: 82px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-info {
    flex-shrink: 0;
    max-width: 279px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 24px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #000000;
    flex-shrink: 0;
}

.contact-text {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}

/* Bottom line */
.footer-bottom-line {
    width: 100%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.7);
    margin-top: 80px;
    transition: all 0.3s ease;
}

/* Bottom navigation and copyright */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.footer-links {
    display: flex;
    gap: 34px;
    align-items: center;
}

/* Text Reveal on Scroll */
.about-heading,
.project-title {
    letter-spacing: normal;
    transition: letter-spacing 0.3s ease;
}

.text-revealed {
    letter-spacing: 1px;
}

.footer-link {
    text-decoration: none;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
    padding: 4px 0;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: #696969;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
}

.footer-copyright a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #696969;
}

/* Responsive Design - IMPROVED */
@media (max-width: 1400px) {
    .footer-line {
        width: 350px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    .nav-container {
        padding: 0 32px;
    }
    
    .footer {
        padding: 87px 64px;
        min-height: auto;
    }
    
    .footer-content {
        gap: 40px;
        min-height: auto;
    }
    
    .footer-top {
        gap: 20px;
    }
    
    .footer-line {
        width: 280px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        margin-top: 60px;
    }
    
    .footer-logo-img {
        width: 280px;
        height: 77px;
    }
    
    .footer-info {
        max-width: none;
        text-align: center;
    }
    
    .footer-bottom-line {
        margin-top: 60px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .sterky-grid {
        gap: 50px;
    }
    
    .sterky-row {
        gap: 50px;
    }
    
    .process-row {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-line {
        width: 200px;
    }
    
    .footer-top {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-content {
        gap: 20px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 91px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-logo .logo {
        width: 120px;
        height: 33px;
        transform: translateY(5.59px);
    }
    
    .nav-actions {
        margin-left: 15px;
    }
    
    /* Show contact button in mobile menu */
    .nav-actions {
        display: flex;
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero {
        padding-left: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .sterky-hero-title {
        font-size: 42px;
    }
    
    .footer {
        padding: 60px 32px;
        min-height: auto;
    }
    
    .footer-content {
        gap: 20px;
        min-height: auto;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-line {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-main {
        margin-top: 30px;
        gap: 20px;
    }
    
    .footer-logo-img {
        width: 120px;
        height: 120px;
        content: url('images/logo-noname.webp');
    }
    
    .footer-info {
        max-width: none;
    }
    
    .footer-bottom-line {
        margin-top: 30px;
    }
    
    .footer-bottom {
        margin-top: 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .footer-copyright {
        text-align: center;
        margin-top: 20px;
    }
    
    .sterky-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .sterky-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .sterky-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
        align-items: center;
    }
    
    .process-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 15px;
        padding: 30px 20px;
    }
    
    .nav-actions {
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .footer {
        padding: 40px 16px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-top {
        gap: 15px;
    }
    
    .footer-line {
        width: 100%;
        max-width: 250px;
    }
    
    .footer-main {
        margin-top: 20px;
        gap: 15px;
    }
    
    .footer-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .footer-bottom-line {
        margin-top: 20px;
    }
    
    .footer-bottom {
        margin-top: 15px;
        gap: 15px;
    }
    
    .footer-links {
        gap: 12px;
    }
    
    .footer-link {
        font-size: 16px;
    }
    
    .footer-copyright p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sterky-grid-section {
        padding: 32px 0;
    }
    .sterky-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
        align-items: center;
    }
    .sterky-card {
        max-width: 100%;
        height: auto;
    }
    .card-image {
        height: 140px;
    }
    .card-title {
        font-size: 22px;
    }
    .card-description {
        font-size: 14px;
    }
    
    .sterky-card-link {
        max-width: 100%;
    }
} 

.sterky-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* 404 Page Specific Styles */
.error-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 91px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    overflow: hidden;
}

.error-content {
    text-align: center;
    max-width: 600px;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.error-number {
    font-family: 'Poppins', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: errorFloat 3s ease-in-out infinite;
}

@keyframes errorFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.error-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.error-description {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #696969;
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.05;
}

.error-decoration::before {
    content: '404';
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-size: 300px;
    font-weight: 900;
    color: #000000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.error-decoration::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 4px solid #000000;
    border-radius: 50%;
    top: 20%;
    right: 15%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.error-decoration .circle-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid #000000;
    border-radius: 50%;
    bottom: 20%;
    left: 15%;
    animation: rotate 15s linear infinite reverse;
}

.error-decoration .circle-3 {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid #000000;
    border-radius: 50%;
    top: 60%;
    left: 10%;
    animation: rotate 25s linear infinite;
}

/* Responsive Design for 404 */
@media (max-width: 768px) {
    .error-number {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 24px;
    }
    
    .error-description {
        font-size: 16px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-decoration::before {
        font-size: 200px;
    }
    
    .error-decoration::after,
    .error-decoration .circle-2,
    .error-decoration .circle-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 60px;
    }
    
    .error-title {
        font-size: 20px;
    }
    
    .error-description {
        font-size: 14px;
    }
    
    .error-decoration::before {
        font-size: 150px;
    }
}

/* END OF 404 PAGE STYLES */

.btn-map .forward-arrow.black.reversed {
    display: inline-block;
}

.btn-map .forward-arrow.white.reversed {
    display: none;
}

.btn-map:hover .forward-arrow.black.reversed {
    display: none;
}

.btn-map:hover .forward-arrow.white.reversed {
    display: inline-block;
}

/* Carousel Modal Styles */
.carousel-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.carousel-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel-modal-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 0;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #FFFFFF;
    border-bottom: 1px solid #EBEBEB;
}

.carousel-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.carousel-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #696969;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-close:hover {
    background: #EBEBEB;
    color: #000000;
    transform: scale(1.1);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 30px;
    background: #FFFFFF;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #EBEBEB;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #000000;
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: #696969;
    transform: scale(1.1);
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .carousel-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .carousel-header {
        padding: 15px 20px;
    }
    
    .carousel-title {
        font-size: 20px;
    }
    
    .carousel-close {
        font-size: 28px;
        width: 35px;
        height: 35px;
    }
    
    .carousel-slides {
        height: 400px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-indicators {
        padding: 15px 20px;
        gap: 8px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-slides {
        height: 300px;
    }
    
    .carousel-title {
        font-size: 18px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}