/* ========================================
   MEDVEDGRAD GRADNJA - STYLES
   ========================================
   Premium paleta:
   --main:    #2C3539  (topla krem — body/sekcije)
   --accent:  #2C3E2D  (tamno zelena — sporedni elementi/footer)
   --text:    #1A1A1A  (gotovo crna — tekst)
   ======================================== */

:root {
    --main: #1a1f22;
    --main-light: #F5F0EB;
    --main-dark: #1a1f22;
    --accent: #2C3E2D;
    --accent-light: #3D5240;
    --accent-hover: #1E2B1F;
    --text: #1A1A1A;
    --text-muted: rgba(26, 26, 26, 0.55);
    --border: rgba(26, 26, 26, 0.08);
    --nav-width: 20vw;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ========================================
   PAGE LOADER
   ======================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: var(--nav-width);
    width: calc(100vw - var(--nav-width));
    height: 100vh;
    background: var(--main-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    will-change: opacity;
}

@media (max-width: 992px) {
    .page-loader {
        left: 0;
        width: 100vw;
    }
}

.page-loader.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.page-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(420px, 80vw);
}

.page-loader__brand {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1;
}

.page-loader__sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 300;
    letter-spacing: 0.45em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.6rem;
    padding-left: 0.45em;
    margin-bottom: 3rem;
}

.page-loader__bar {
    position: relative;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.page-loader__fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #ffffff;
    will-change: width;
}

.page-loader__fill::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    transform: translate(50%, -50%);
}

.page-loader__percent {
    position: absolute;
    top: -1.6rem;
    right: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
}

.page-loader__text {
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

.page-loader__text::after {
    content: '';
    animation: pageLoaderDots 1.4s steps(4, end) infinite;
}

@keyframes pageLoaderDots {
    0%   { content: ''; }
    25%  { content: '.'; }
    50%  { content: '..'; }
    75%  { content: '...'; }
    100% { content: ''; }
}

/* Hide content by default to prevent flash before JS runs.
   Revealed only after the loader marks the page as ready. */
.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.is-loaded .main-content {
    opacity: 1;
}

/* Safety fallback: if JS never runs, reveal content after 4s so the page isn't permanently blank */
@keyframes pageLoaderFallbackReveal {
    to { opacity: 1; }
}

.main-content {
    animation: pageLoaderFallbackReveal 0.4s ease 4s forwards;
}

body.is-loaded .main-content {
    animation: none;
}


html {
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    overscroll-behavior: none;
    height: 100%;
    /* Safari transparent bottom bar */
    background: transparent;
}

@supports (-webkit-touch-callout: none) {
    html, body {
        min-height: -webkit-fill-available;
        background: transparent;
    }
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--main-dark);
    color: #e8e8e8;
    line-height: 1.6;
    overscroll-behavior: none;
    -ms-overflow-style: none; /* IE */
    min-height: 100%;
    position: relative;
}

.cursor-orb {
    position: fixed;
    top: 0;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(232, 232, 232, 0.92);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: width 0.32s cubic-bezier(0.22, 1, 0.36, 1), height 0.32s cubic-bezier(0.22, 1, 0.36, 1), background 0.26s ease, opacity 0.15s ease;
}

.cursor-orb::before {
    content: '↗';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1f22;
    font-size: 1.18rem;
    line-height: 1;
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.cursor-orb.is-visible {
    opacity: 1;
}

.cursor-orb.is-project-expanded {
    width: 44px;
    height: 44px;
    background: rgba(245, 245, 245, 0.96);
}

.cursor-orb.is-project-expanded::before {
    opacity: 1;
    transform: scale(1);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-light);
}

/* ========================================
   SIDE NAVIGATION (Desktop)
   ======================================== */

.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--nav-width);
    height: 100vh;
    background: #1a1f22;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem 2rem;
    z-index: 1000;
    border-right: none;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.2);
}

/* Glow line on right edge */
.side-nav::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 0 4px 1px rgba(255, 255, 255, 0.35),
        0 0 10px 2px rgba(255, 255, 255, 0.2),
        0 0 20px 4px rgba(255, 255, 255, 0.1),
        3px 0 15px 3px rgba(255, 255, 255, 0.08);
    z-index: 10;
}

/* Geometric pattern overlay */
.side-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Subtle diagonal lines */
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.015) 20px,
            rgba(255, 255, 255, 0.015) 21px
        ),
        /* Radial gradient from top */
        radial-gradient(
            ellipse at 50% 0%,
            rgba(212, 175, 55, 0.08) 0%,
            transparent 50%
        ),
        /* Radial gradient from bottom */
        radial-gradient(
            ellipse at 50% 100%,
            rgba(212, 175, 55, 0.05) 0%,
            transparent 40%
        );
    pointer-events: none;
    z-index: 0;
}

.side-nav > * {
    position: relative;
    z-index: 1;
}

.nav-logo {
    text-align: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.nav-logo a {
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.logo-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.logo-line {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.nav-links {
    list-style: none;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0;
}

.nav-link {
    display: block;
    padding: 0.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.03em;
    border-radius: 8px;
    transition: all 0.25s ease;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link.active {
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Scroll Progress Line */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 1));
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.3);
    z-index: 10;
}

/* Hamburger - hidden on desktop */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 2.5em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
    fill: none;
    stroke: #FFFFFF;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
    transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

/* Mobile overlay - hidden on desktop */
.mobile-menu-overlay {
    display: none;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
    margin-left: var(--nav-width);
    width: calc(100% - var(--nav-width));
    position: relative;
    z-index: 1;
}

/* ========================================
   HERO FULLSCREEN
   ======================================== */

.hero-fullscreen {
    position: fixed;
    top: 0;
    left: var(--nav-width);
    width: calc(100% - var(--nav-width));
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.hero-fullscreen::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-parallax-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
}

.hero-parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
    will-change: transform;
    transition: none;
}

.hero-content-bottom {
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 2;
}

.hero-tag-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: calc(95vw - var(--nav-width, 0px));
}

.hero-tag-line {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.65rem, 1vw, 0.8rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5em 1.2em;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-tag-line-mobile {
    display: none;
}

.hero-tag-line-ext {
    height: 1px;
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.3);
    margin-left: -1px;
}

/* Static hero title (no rolling animation) */
.hero-title-large {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
}

.hero-title-main {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 7.5vw, 7.5rem);
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hero-title-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    text-shadow: none;
    margin-top: 0;
}

body.page-home .hero-title-main {
    font-size: clamp(2.4rem, 6vw, 5.4rem);
}

body.page-home .hero-title-sub {
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

/* Body sections overlay hero */
.main-content {
    position: relative;
    z-index: 1;
}

.breadcrumb-nav {
    margin-bottom: 1.25rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(232, 232, 232, 0.72);
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: rgba(232, 232, 232, 0.36);
}

.breadcrumb-list a {
    color: rgba(232, 232, 232, 0.82);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: #fff;
}

.breadcrumb-list [aria-current="page"] {
    color: #f7941d;
}

.body-overlay {
    position: relative;
    z-index: 2;
    background: var(--main-dark);
    margin-top: 100vh;
    border-radius: 40px 40px 0 0;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.body-overlay .section:first-child {
    padding-top: 5rem;
}

/* Legacy hero styles (for subpages) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 7.5%;
    background: var(--main-dark);
    color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(44, 62, 45, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 85%;
    position: relative;
    z-index: 1;
}

.hero-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.highlight {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========================================
   ROLLING TEXT
   ======================================== */

.rolling-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    line-height: 1;
}

.rolling-line {
    display: inline-flex;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 8vw, 7rem);
    letter-spacing: 0.04em;
    color: var(--text);
    text-transform: uppercase;
}

.rolling-line-sub {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    color: var(--accent);
    letter-spacing: 0.08em;
    font-weight: 700;
}

.rolling-char {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.1em;
}

.rolling-char-inner {
    display: flex;
    flex-direction: column;
    will-change: transform, filter;
}

.rolling-char-inner span {
    display: block;
    height: 1.1em;
    line-height: 1.1em;
    flex-shrink: 0;
}

/* Animation: 6 full rotations then land on final position */
@keyframes rollUp {
    0% { transform: translateY(0); filter: blur(0px); }
    5% { filter: blur(4px); }
    90% { filter: blur(2px); }
    100% { transform: var(--roll-end); filter: blur(0px); }
}

@keyframes rollDown {
    0% { transform: var(--roll-end); filter: blur(0px); }
    5% { filter: blur(4px); }
    90% { filter: blur(2px); }
    100% { transform: translateY(0); filter: blur(0px); }
}

.rolling-char.roll-up .rolling-char-inner {
    animation: rollUp var(--roll-duration, 1.8s) cubic-bezier(0.2, 0, 0.1, 1) forwards;
}

.rolling-char.roll-down .rolling-char-inner {
    transform: var(--roll-end);
    animation: rollDown var(--roll-duration, 1.8s) cubic-bezier(0.2, 0, 0.1, 1) forwards;
}

.rolling-char.rolled-up .rolling-char-inner {
    transform: var(--roll-end);
    filter: blur(0);
}

.rolling-char.rolled-down .rolling-char-inner {
    transform: translateY(0);
    filter: blur(0);
}

/* ========================================
   BUTTONS
   ======================================== */

/* ========================================
   SEND PLANE BUTTON (from Uiverse.io by marcelodolza)
   ======================================== */

.sp-button {
    --primary: #111416;
    --neutral-1: #f7f8f7;
    --neutral-2: #e7e7e7;
    --radius: 14px;
    cursor: pointer;
    border-radius: var(--radius);
    text-shadow: none;
    border: none;
    box-shadow: 0 0.5px 0.5px 1px rgba(255, 255, 255, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.2), 0 4px 5px 0px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    min-width: 180px;
    padding: 16px 20px;
    height: 58px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}
.sp-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.3), 0 10px 3px -3px rgba(0, 0, 0, 0.04);
    color: #1a1a1a;
}
.sp-button:active {
    transform: scale(1);
    box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
        0 10px 3px -3px rgba(0, 0, 0, 0.2);
}
.sp-button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 2.5px solid transparent;
    background: linear-gradient(var(--neutral-1), var(--neutral-2)) padding-box,
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)) border-box;
    z-index: 0;
    transition: all 0.4s ease;
}
.sp-button:hover::after {
    transform: scale(1.05, 1.1);
    box-shadow: inset 0 -1px 3px 0 rgba(255, 255, 255, 1);
}
.sp-button::before {
    content: "";
    inset: 7px 6px 6px 6px;
    position: absolute;
    background: linear-gradient(to top, var(--neutral-1), var(--neutral-2));
    border-radius: 30px;
    filter: blur(0.5px);
    z-index: 2;
}

.sp-state {
    padding-left: 24px;
    z-index: 2;
    display: flex;
    position: relative;
    color: #111416;
}
.sp-state p {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111416;
}
.sp-state p span {
    color: #111416 !important;
}
.sp-state .sp-icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: scale(1.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp-state .sp-icon svg {
    overflow: visible;
    color: #111416;
}

.sp-outline {
    position: absolute;
    border-radius: inherit;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    inset: -2px -3.5px;
}
.sp-outline::before {
    content: "";
    position: absolute;
    inset: -100%;
    background: conic-gradient(from 180deg, transparent 60%, white 80%, transparent 100%);
    animation: sp-spin 2s linear infinite;
    animation-play-state: paused;
}
@keyframes sp-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.sp-button:hover .sp-outline {
    opacity: 1;
}
.sp-button:hover .sp-outline::before {
    animation-play-state: running;
}

.sp-state p span {
    display: block;
    opacity: 0;
    animation: sp-slideDown 0.8s ease forwards calc(var(--i) * 0.03s);
}
.sp-button:hover p span {
    opacity: 1;
    animation: sp-wave 0.5s ease forwards calc(var(--i) * 0.02s);
}
@keyframes sp-wave {
    30% { opacity: 1; transform: translateY(4px); }
    50% { opacity: 1; transform: translateY(-3px); color: var(--primary); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes sp-slideDown {
    0% { opacity: 0; transform: translateY(-20px) translateX(5px) rotate(-90deg); color: var(--primary); filter: blur(5px); }
    30% { opacity: 1; transform: translateY(4px) translateX(0) rotate(0); filter: blur(0); }
    50% { opacity: 1; transform: translateY(-3px) translateX(0) rotate(0); }
    100% { opacity: 1; transform: translateY(0) translateX(0) rotate(0); }
}

.sp-state .sp-icon svg {
    animation: sp-land 0.6s ease forwards;
}
.sp-button:hover .sp-state .sp-icon {
    transform: rotate(45deg) scale(1.25);
}
@keyframes sp-land {
    0% { transform: translateX(-60px) translateY(30px) rotate(-50deg) scale(2); opacity: 0; filter: blur(3px); }
    100% { transform: translateX(0) translateY(0) rotate(0); opacity: 1; filter: blur(0); }
}

.sp-button-submit {
    width: auto;
    min-width: auto;
    align-self: flex-end;
}

.hero-actions,
.sp-button-wrap {
    padding: 10px;
    margin: -10px;
    overflow: visible;
}

/* ========================================
   FULL HEIGHT SECTIONS (index only)
   ======================================== */

.section-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-full.hero {
    display: flex;
}

.section-inner-full {
    max-height: 90vh;
    overflow: hidden;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    min-height: 100vh;
    padding: 6rem 0;
    overflow: visible;
    color: #e8e8e8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.section-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-full .section-inner {
    width: 100%;
}

.section-alt {
    background: #1a1f22;
}

.section-inner {
    width: 85%;
    max-width: 85%;
    margin: 0 auto;
    max-height: 90vh;
    overflow: visible;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #e8e8e8;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* ========================================
   PAGE HERO (for subpages)
   ======================================== */

.page-hero {
    padding: 8rem 4rem 4rem;
    background: var(--main-dark);
    color: #e8e8e8;
}

.page-hero .section-inner {
    max-width: 1000px;
}

.page-hero .section-tag {
    margin-bottom: 1rem;
}

.page-hero .section-title {
    margin-bottom: 1rem;
}

.page-hero .section-subtitle {
    margin-bottom: 0;
}

/* ========================================
   IMAGES
   ======================================== */

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    pointer-events: none;
}

/* ========================================
   RADIUS ON SCROLL
   ======================================== */

/* ========================================
   RADIUS ON SCROLL
   ======================================== */

/* ---- Radius on Scroll (Projekti) ---- */

.ros-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1f22;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

.ros-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 60px;
    overflow: hidden;
    will-change: width, height, border-radius;
}

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

.ros-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.ros-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    box-sizing: border-box;
}

.ros-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.ros-section .section-tag,
.ros-section .section-title {
    color: #fff;
}

.ros-section .service-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: clamp(1rem, 2vh, 2rem) clamp(1rem, 1.5vw, 1.5rem);
}

.ros-section .service-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255,255,255,0.15);
}

.ros-section .service-card h3 {
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.ros-section .service-card p {
    color: rgba(255,255,255,0.8);
    font-size: clamp(0.88rem, 1.2vw, 1.05rem);
}

.section-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 3rem;
}

/* ========================================
   PROJECTS PAGE
   ======================================== */

.projects-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 8rem 7.5% 4rem;
    background: linear-gradient(135deg, #1a1f22 0%, #1a1f22 100%);
    margin-left: var(--nav-width);
}

.main-content .projects-hero {
    margin-left: 0;
}

.projects-hero-content {
    max-width: 700px;
}

.projects-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
}

.projects-hero-desc {
    font-size: 1.15rem;
    color: rgba(232, 232, 232, 0.7);
    line-height: 1.7;
    max-width: 500px;
}

.projects-header {
    margin-bottom: 3rem;
}

.projects-showcase {
    background: #1a1f22;
}

.projects-body-gallery {
    background: #1a1f22;
    padding: 2vh 0;
}

.project-detail-page {
    background: #1a1f22;
    padding-bottom: 2vh;
}

.project-detail-hero-media {
    margin-top: 2vh;
}

.project-detail-content {
    width: 96%;
    margin: 2vh auto;
    padding: 2.5rem 2rem;
    min-height: 98vh;
    border-radius: 18px;
    background: #111416;
    color: #e8e8e8;
}

.project-detail-intro {
    margin-bottom: 1.8rem;
}

.project-detail-intro .section-tag {
    color: rgba(232, 232, 232, 0.7);
    border-color: rgba(232, 232, 232, 0.26);
}

.project-detail-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 0.45rem;
}

.project-detail-subtitle {
    font-size: 1.05rem;
    color: rgba(232, 232, 232, 0.7);
}

.project-detail-insights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.project-detail-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.2rem 1.1rem;
}

.project-detail-card-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(232, 232, 232, 0.85);
}

.project-detail-card-label::before {
    content: '➜';
    font-size: 0.68rem;
}

.project-detail-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(232, 232, 232, 0.72);
}

.project-detail-gallery {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.project-detail-gallery-photo {
    margin: 0;
    height: clamp(190px, 21vw, 260px);
    border-radius: 14px;
    overflow: hidden;
}

.project-detail-gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-related-section {
    background: #111416;
    padding: 3.5rem 0 2.8rem;
}

.project-related-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.project-related-head h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    color: #e8e8e8;
    line-height: 1.1;
}

.legal-document {
    max-width: 860px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: clamp(1.4rem, 2vw, 2.25rem);
    color: rgba(232, 232, 232, 0.84);
}

.legal-document h2,
.legal-document h3 {
    color: #f4f4f4;
    margin-top: 0;
}

.legal-document h2 + p,
.legal-document h3 + p {
    margin-top: 0;
}

.legal-document section + section {
    margin-top: 1.6rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-document p,
.legal-document li {
    line-height: 1.8;
}

.legal-document ul {
    margin: 0.8rem 0 0;
    padding-left: 1.15rem;
}

.project-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.project-related-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    display: block;
}

.project-related-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.project-related-card span {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    padding: 0.56rem 0.68rem;
    border-radius: 10px;
    background: rgba(20, 24, 28, 0.8);
    color: #f2f2f2;
    font-size: 0.88rem;
    font-weight: 600;
    width: fit-content;
    max-width: calc(100% - 1.5rem);
}

.project-related-card:hover img {
    transform: scale(1.04);
}

.projects-body-photo {
    width: 96%;
    height: 96vh;
    margin: 2vh auto;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.projects-body-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.34);
    transform-origin: center center;
    transition: transform 0.12s linear;
    will-change: transform;
}

.photo-overlay-ui {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.photo-brand {
    position: absolute;
    top: 4rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.85);
}

.photo-view-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 245, 245, 0.96);
    color: #1a1f22;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.62rem 1rem;
    pointer-events: auto;
    transition: background 0.2s ease, transform 0.2s ease;
}

.projects-body-gallery .photo-view-link {
    min-width: 3.05rem;
    width: 3.05rem;
    height: 3.05rem;
    padding: 0.62rem;
    overflow: hidden;
    gap: 0;
    justify-content: center;
    transition: width 0.3s ease, background 0.2s ease, transform 0.2s ease;
}


.projects-body-gallery .photo-view-link-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transform: translateX(-6px);
    transition: max-width 0.3s ease, opacity 0.2s ease, transform 0.3s ease;
}

.projects-body-gallery .photo-view-link-arrow {
    font-size: 1.3rem;
    line-height: 1;
    transform: translateX(0);
    transition: transform 0.25s ease;
}

.projects-body-photo:hover .photo-view-link,
.projects-body-photo:focus-within .photo-view-link,
.projects-body-photo.is-mobile-active .photo-view-link {
    width: 11rem;
    justify-content: center;
    padding-inline: 1rem;
}

.projects-body-photo:hover .photo-view-link-text,
.projects-body-photo:focus-within .photo-view-link-text,
.projects-body-photo.is-mobile-active .photo-view-link-text {
    max-width: 9.5rem;
    opacity: 1;
    transform: translateX(0);
}

.photo-view-cutout {
    position: absolute;
    top: 0;
    right: 0;
    background: #1a1f22;
    border-bottom-left-radius: 26px;
    padding: 0.52rem 0.52rem 0.52rem 0.82rem;
    pointer-events: none;
}

.photo-view-cutout::before,
.photo-view-cutout::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: transparent;
}

.photo-view-cutout::before {
    right: 0;
    bottom: -22px;
    border-top-right-radius: 16px;
    box-shadow: 6px -6px 0 0 #1a1f22;
}

.photo-view-cutout::after {
    left: -22px;
    top: 0;
    border-top-right-radius: 16px;
    box-shadow: 6px -6px 0 0 #1a1f22;
}

.photo-view-link:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

.project-photo-link {
    cursor: pointer;
}

@media (max-width: 768px) {
    .cursor-orb.is-project-expanded {
        width: 40px;
        height: 40px;
    }

    .cursor-orb.is-project-expanded::before {
        font-size: 1.04rem;
    }
}

@media (max-width: 480px) {
    .cursor-orb {
        display: none;
    }
}

@media (hover: none), (pointer: coarse) {
    .cursor-orb {
        display: none;
    }
}

.photo-info-panel {
    position: absolute;
    left: 4rem;
    bottom: 4rem;
    width: min(390px, 78%);
    background: rgba(245, 245, 245, 0.95);
    border-radius: 16px;
    padding: 1.45rem 1.5rem;
    color: #212325;
}

.projects-body-gallery .photo-info-panel {
    width: min(360px, 34vw);
    min-height: 0;
    padding: 1.2rem 1.3rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: #ffffff;
}

.projects-body-gallery .photo-year {
    color: rgba(255, 255, 255, 0.82);
}

.projects-body-gallery .photo-year::before {
    color: rgba(255, 255, 255, 0.82);
}

.projects-body-gallery .photo-info-panel p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.55;
}

.projects-body-gallery .photo-tags span {
    font-size: 0.78rem;
    padding: 0.3rem 0.56rem;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.86);
}

.photo-year {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(33, 35, 37, 0.78);
    margin-bottom: 0.7rem;
}

.photo-year::before {
    content: '➜';
    font-size: 0.72rem;
}

.photo-info-panel p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: #2c2f33;
}

.photo-tags {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.photo-tags span {
    font-size: 0.72rem;
    padding: 0.22rem 0.5rem;
    border-radius: 8px;
    background: rgba(33, 35, 37, 0.08);
    color: rgba(33, 35, 37, 0.72);
}

@media (max-width: 768px) {
    .projects-body-photo {
        width: 96%;
        height: 96vh;
        margin: 2vh auto;
        border-radius: 14px;
    }

    .project-detail-content {
        width: 96%;
        margin: 2vh auto;
        padding: 1.5rem 1.1rem;
        min-height: auto;
        border-radius: 14px;
    }

    .project-detail-insights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .photo-brand {
        top: 4rem;
        left: 4rem;
        font-size: 0.94rem;
    }

    .photo-view-link {
        font-size: 0.76rem;
        padding: 0.58rem 0.92rem;
    }

    .projects-body-gallery .photo-view-link {
        width: 2.7rem;
        min-width: 2.7rem;
        height: 2.7rem;
        padding: 0.54rem;
    }

    .projects-body-photo:hover .photo-view-link,
    .projects-body-photo:focus-within .photo-view-link,
    .projects-body-photo.is-mobile-active .photo-view-link {
        width: 10rem;
        padding-inline: 0.85rem;
    }

    .projects-body-photo:hover .photo-view-link-text,
    .projects-body-photo:focus-within .photo-view-link-text,
    .projects-body-photo.is-mobile-active .photo-view-link-text {
        max-width: 8.5rem;
    }

    .photo-view-cutout {
        border-bottom-left-radius: 22px;
        padding: 0.45rem 0.45rem 0.45rem 0.65rem;
    }

    .photo-info-panel {
        left: 4rem;
        bottom: 4rem;
        width: min(345px, 84%);
        padding: 1.1rem 1.15rem;
    }

    .projects-body-gallery .photo-info-panel {
        width: min(330px, 82%);
        min-height: 0;
        padding: 1.08rem 1.12rem;
    }

    .projects-body-gallery .photo-info-panel p {
        font-size: 1rem;
        line-height: 1.58;
    }


    .project-detail-gallery {
        margin-top: 1.5rem;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .project-detail-gallery-photo {
        height: clamp(170px, 36vw, 220px);
    }

    .project-related-section {
        padding: 2.8rem 0 2.3rem;
    }

    .project-related-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.65rem;
        margin-bottom: 1rem;
    }

    .project-related-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .project-related-card,
    .project-related-card img {
        min-height: 220px;
    }

    .photo-info-panel p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .projects-body-photo {
        width: 96%;
        height: 96vh;
        margin: 2vh auto;
        border-radius: 12px;
    }

    .project-detail-content {
        padding: 1.05rem 0.9rem;
        border-radius: 12px;
    }

    .project-detail-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .project-detail-subtitle {
        font-size: 0.92rem;
    }

    .project-detail-card {
        border-radius: 12px;
        padding: 0.95rem 0.85rem;
    }

    .project-detail-card p {
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .photo-brand {
        top: 1.1rem;
        left: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.08rem;
        line-height: 1.05;
        font-size: 0.78rem;
        letter-spacing: 0.14em;
    }

    .photo-view-link {
        font-size: 0.72rem;
        padding: 0.5rem 0.8rem;
    }

    .projects-body-gallery .photo-view-link {
        width: 2.4rem;
        min-width: 2.4rem;
        height: 2.4rem;
        padding: 0.45rem;
    }

    .projects-body-photo:hover .photo-view-link,
    .projects-body-photo:focus-within .photo-view-link,
    .projects-body-photo.is-mobile-active .photo-view-link {
        width: 9.2rem;
        padding-inline: 0.72rem;
    }

    .projects-body-photo:hover .photo-view-link-text,
    .projects-body-photo:focus-within .photo-view-link-text,
    .projects-body-photo.is-mobile-active .photo-view-link-text {
        max-width: 7.8rem;
    }

    .photo-view-cutout {
        border-bottom-left-radius: 18px;
        padding: 0.4rem 0.4rem 0.4rem 0.56rem;
    }

    .photo-info-panel {
        left: 1.1rem;
        right: 1.1rem;
        bottom: 1.1rem;
        width: auto;
        max-width: none;
        padding: 0.95rem 1rem;
    }

    .projects-body-gallery .photo-info-panel {
        min-height: 0;
        padding: 1.1rem 1.12rem;
    }

    .projects-body-gallery .photo-info-panel p {
        font-size: 0.92rem;
        line-height: 1.52;
    }


    .project-detail-gallery-photo {
        height: 150px;
    }

    .project-related-section {
        padding: 2.2rem 0 2rem;
    }

    .project-related-head h2 {
        font-size: clamp(1.35rem, 6vw, 1.8rem);
    }

    .project-related-card,
    .project-related-card img {
        min-height: 180px;
    }

    .project-related-card span {
        left: 0.6rem;
        bottom: 0.6rem;
        font-size: 0.8rem;
        padding: 0.48rem 0.56rem;
        width: fit-content;
        max-width: calc(100% - 1.2rem);
    }

    .photo-info-panel p {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .photo-tags {
        margin-top: 0.7rem;
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 1.5rem;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.project-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-card-wide {
    grid-column: span 2;
}

.project-card-image {
    position: absolute;
    inset: 0;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}

.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.project-category {
    display: inline-block;
    font-size: clamp(0.7rem, 0.9vw, 0.85rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 140, 50, 0.9);
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.project-card-large .project-title {
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
}

.project-location {
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.6);
}

/* Projects Stats */
.projects-stats-section {
    background: #1a1f22;
    padding: 5rem 0;
}

.projects-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.projects-stat {
    padding: 2rem;
}

.projects-stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.projects-stat-label {
    font-size: 0.85rem;
    color: rgba(232, 232, 232, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Areas Showcase */
.areas-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.area-main {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.area-main-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.area-main-content p {
    color: rgba(232, 232, 232, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.area-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.area-list li {
    color: rgba(232, 232, 232, 0.6);
    font-size: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
}

.area-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: rgba(255, 140, 50, 0.7);
    border-radius: 50%;
}

.area-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.area-card-new {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.area-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 50, 0.1);
    border-radius: 12px;
    color: rgba(255, 140, 50, 0.9);
    flex-shrink: 0;
}

.area-card-new h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e8e8e8;
    margin-bottom: 0.35rem;
}

.area-card-new p {
    font-size: 0.9rem;
    color: rgba(232, 232, 232, 0.6);
    line-height: 1.5;
}

/* Projects CTA */
.projects-cta {
    background: #111416;
    padding: 5rem 0;
    min-height: auto;
}

.projects-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.projects-cta-content p {
    color: rgba(232, 232, 232, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Projects Page Responsive */
@media (max-width: 992px) {
    .projects-hero {
        margin-left: 0;
        padding: 6rem 5% 3rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 280px;
    }
    
    .project-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .project-card-wide {
        grid-column: span 2;
    }
    
    .projects-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    
    .project-card-large,
    .project-card-wide {
        grid-column: span 1;
    }
    
    .projects-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .projects-stat-number {
        font-size: 2.5rem;
    }
    
    .area-list {
        grid-template-columns: 1fr;
    }
    
    .area-card-new {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.section-image-half {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.image-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
}

.image-tall {
    height: 400px;
}

@media (max-width: 600px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
    .hero-image {
        width: 100%;
        opacity: 0.12;
    }
    .section-image {
        height: 220px;
    }
    .image-grid img {
        height: 180px;
    }
}

/* ========================================
   ABOUT - NEW HOMEPAGE SECTION
   ======================================== */

.section-about-new {
    background: var(--main-dark);
    min-height: auto;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.about-new-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-new-content {
    max-width: 600px;
}

.about-new-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}

.about-new-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(232, 232, 232, 0.7);
    margin-bottom: 1.5rem;
}

.about-new-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.about-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.15rem;
}

.about-feature-text p {
    font-size: 0.85rem;
    color: rgba(232, 232, 232, 0.6);
    line-height: 1.4;
}

.about-new-images {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
}

.about-img-primary {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 75%;
    border-radius: 20px;
    overflow: hidden;
}

.about-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    top: 25%;
    left: 0;
    width: 65%;
    height: 65%;
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid var(--main-dark, #1a1f22);
    z-index: 2;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About New - Responsive */
@media (max-width: 992px) {
    .section-about-new {
        min-height: auto;
        height: auto;
        padding: 4rem 0;
    }

    .about-new-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-new-images {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .section-about-new {
        padding: 3rem 0;
    }

    .about-feature-icon {
        width: 40px;
        height: 40px;
    }

    .about-new-images {
        max-width: 100%;
    }
}

/* ========================================
   ABOUT PAGE — STATS SECTION
   ======================================== */

.section-about-stats {
    background: #111416;
    padding: 4rem 0;
    min-height: auto;
}

.about-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.about-stats-item {
    text-align: center;
    flex: 1;
}

.about-stats-number {
    display: block;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stats-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(232, 232, 232, 0.7);
    margin-bottom: 0.3rem;
}

.about-stats-desc {
    display: block;
    font-size: 0.85rem;
    color: rgba(232, 232, 232, 0.4);
}

.about-stats-divider {
    width: 1px;
    height: 80px;
    background: rgba(232, 232, 232, 0.15);
    flex-shrink: 0;
}

/* ========================================
   ABOUT PAGE — MISSION & VALUES SECTION
   ======================================== */

.section-mission-values {
    background: var(--main-dark);
    padding: 4rem 0;
}

.mission-values-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.mission-content .section-tag {
    color: #b8860b;
}

.mission-content .section-tag::before {
    background: #b8860b;
}

.mission-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #e8e8e8;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.mission-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232, 232, 232, 0.7);
    max-width: 380px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8860b 0%, #d4a84b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.value-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 0.5rem;
}

.value-text p {
    font-size: 0.95rem;
    color: rgba(232, 232, 232, 0.6);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mission-values-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-desc {
        max-width: 100%;
    }
}

/* ========================================
   ABOUT PAGE — DIRECTOR SECTION
   ======================================== */

.section-about-director {
    background: #1a1f22;
}

.director-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.director-quote blockquote {
    margin: 1.5rem 0 2rem;
    padding: 0;
    border: none;
}

.director-quote blockquote p {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    color: #e8e8e8;
    line-height: 1.6;
}

.director-name strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 0.2rem;
}

.director-name span {
    font-size: 0.85rem;
    color: rgba(232, 232, 232, 0.5);
}

.director-bio p {
    font-size: 1rem;
    color: rgba(232, 232, 232, 0.6);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* About Page — Responsive */
@media (max-width: 992px) {
    .about-stats-row {
        gap: 2rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .director-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .about-stats-row {
        flex-direction: column;
        gap: 2.5rem;
    }

    .about-stats-divider {
        width: 60px;
        height: 1px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card {
        padding: 2rem;
    }
}

/* ========================================
   ABOUT - LEGACY (for other pages)
   ======================================== */

/* Legacy About styles - keep for other pages */
.about-header {
    margin-bottom: 2rem;
}

.about-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-intro {
    margin-bottom: 2.5rem;
}

.about-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 1rem;
}

.about-lead strong {
    color: #fff;
}

.about-intro p {
    color: rgba(232, 232, 232, 0.65);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(232, 232, 232, 0.08);
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 232, 232, 0.12);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 50, 0.1);
    border-radius: 10px;
    color: rgba(255, 140, 50, 0.9);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #e8e8e8;
    margin-bottom: 0.35rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: rgba(232, 232, 232, 0.6);
    line-height: 1.5;
}

.about-stats-new {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(232, 232, 232, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number-large {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #e8e8e8;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-new {
    font-size: 0.85rem;
    color: rgba(232, 232, 232, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    height: 1px;
    background: rgba(232, 232, 232, 0.1);
}

/* Legacy About styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text p {
    color: rgba(232, 232, 232, 0.7);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-text strong {
    color: #e8e8e8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stat-card {
    padding: 1.5rem;
    background: var(--main-light);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.section-alt .stat-card {
    background: var(--main);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(26, 26, 26, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* About section responsive */
@media (max-width: 900px) {
    .about-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-stats-new {
        flex-direction: row;
        justify-content: space-around;
        padding: 2rem 1.5rem;
    }
    
    .stat-divider {
        width: 1px;
        height: auto;
    }
    
    .stat-number-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .about-stats-new {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .about-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ========================================
   SERVICES
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2rem 1.5rem;
    background: var(--main);
    border: 1px solid rgba(232, 232, 232, 0.12);
    border-radius: 10px;
    transition: none;
}

.section-alt .service-card {
    background: var(--main);
}

.service-card:hover {
    border-color: rgba(232, 232, 232, 0.15);
    transform: none;
    box-shadow: none;
}

.service-icon {
    color: #e8e8e8;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #e8e8e8;
}

.service-card p {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    color: rgba(232, 232, 232, 0.7);
    line-height: 1.6;
}

/* ========================================
   AREAS
   ======================================== */

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.area-card {
    padding: 2rem;
    background: var(--main-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s;
}

.area-card:hover {
    border-color: rgba(44, 62, 45, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.area-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.area-card p {
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.7);
    line-height: 1.7;
}

/* ========================================
   CONTACT
   ======================================== */

.section-kontakt {
    min-height: auto;
    height: auto;
    display: block;
    padding: 6rem 0;
}

.section-kontakt .section-inner {
    max-height: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 2rem;
    height: fit-content;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 232, 232, 0.1);
    border-radius: 16px;
}

@media (max-width: 992px) {
    .contact-info {
        position: static;
        top: auto;
    }
}

.contact-item h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 140, 50, 0.9);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 0.95rem;
    color: rgba(232, 232, 232, 0.7);
    line-height: 1.6;
}

.contact-item a {
    color: #e8e8e8;
}

.contact-item a:hover {
    color: rgba(255, 140, 50, 0.9);
}

/* ===== Form-less kontakt layout ===== */
.contact-lead {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.contact-lead .section-tag {
    margin-bottom: 0.6rem;
}

.contact-lead .section-title {
    margin-bottom: 1rem;
}

.contact-lead-text {
    font-size: 1rem;
    color: rgba(232, 232, 232, 0.7);
    line-height: 1.7;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-info-grid .contact-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 232, 232, 0.1);
    border-radius: 18px;
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-height: 100%;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-info-grid .contact-item:hover {
    border-color: rgba(232, 232, 232, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.contact-info-grid .contact-item h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 140, 50, 0.9);
    margin: 0 0 0.4rem 0;
    font-weight: 700;
}

.contact-info-grid .contact-item p {
    font-size: 1rem;
    color: #e8e8e8;
    line-height: 1.55;
    margin: 0;
    word-break: break-word;
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .contact-info-grid .contact-item {
        padding: 1.35rem;
        border-radius: 16px;
    }

    .contact-lead {
        margin-bottom: 2rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #e8e8e8;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    color: rgba(232, 232, 232, 0.5);
    line-height: 1.5;
}

.form-section-divider {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(232, 232, 232, 0.3);
    padding-bottom: 0.6rem;
}

.form-section-divider h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #e8e8e8;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
}

.form-group-underline {
    position: relative;
    margin-bottom: 0.5rem;
    padding-top: 1.2rem;
}

.form-group-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e8e8e8;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.form-group-underline:focus-within::after {
    transform: scaleX(1);
}

.form-group-underline input,
.form-group-underline textarea {
    width: 100%;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(232, 232, 232, 0.15);
    border-radius: 0;
    color: #e8e8e8;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group-underline input::placeholder,
.form-group-underline textarea::placeholder {
    color: rgba(232, 232, 232, 0.4);
}

.form-group-underline input:focus,
.form-group-underline textarea:focus {
    border-bottom-color: transparent;
}

.form-group-underline textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group-underline select {
    width: 100%;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(232, 232, 232, 0.15);
    border-radius: 0;
    color: rgba(232, 232, 232, 0.4);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8e8e8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.form-group-underline select:focus {
    border-bottom-color: transparent;
}

.form-group-underline select option {
    background: var(--main-dark);
    color: #e8e8e8;
}

.contact-form .sp-button {
    margin-top: 2rem;
    align-self: flex-start;
}

.contact-form .sp-button-submit {
    align-self: flex-start;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SUBPAGE COMPONENTS
   ======================================== */

.page-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 2rem;
    align-items: start;
}

.page-intro-copy p,
.page-intro-copy li {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232, 232, 232, 0.72);
}

.page-intro-copy p + p {
    margin-top: 1rem;
}

.page-info-card,
.page-stat-card,
.project-category-card,
.process-step,
.contact-panel-card,
.contact-company-card,
.contact-highlight-card,
.contact-form-shell {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 232, 232, 0.1);
    border-radius: 18px;
}

.page-info-card {
    padding: 1.8rem;
}

.page-info-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.85rem;
}

.page-info-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.page-info-card li {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-info-card li:first-child {
    padding-top: 0;
    border-top: none;
}

.page-info-card strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.page-info-card span {
    color: rgba(232, 232, 232, 0.66);
    font-size: 0.92rem;
}

.page-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.page-stat-card {
    padding: 1.5rem;
}

.page-stat-card strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-stat-card span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(232, 232, 232, 0.58);
    margin-bottom: 0.55rem;
}

.page-stat-card p {
    color: rgba(232, 232, 232, 0.68);
    font-size: 0.94rem;
    line-height: 1.6;
}

.project-categories-grid,
.process-grid,
.contact-panels-grid,
.contact-highlights-grid {
    display: grid;
    gap: 1.2rem;
}

.project-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-category-card {
    padding: 1.6rem;
}

.project-category-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.65rem;
}

.project-category-card p {
    color: rgba(232, 232, 232, 0.68);
    line-height: 1.65;
    font-size: 0.94rem;
    margin-bottom: 1rem;
}

.project-category-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(232, 232, 232, 0.86);
    background: rgba(255, 255, 255, 0.08);
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    color: rgba(232, 232, 232, 0.25);
}

.process-step h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.65rem;
}

.process-step p {
    color: rgba(232, 232, 232, 0.68);
    font-size: 0.94rem;
    line-height: 1.65;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), transparent 38%),
        #111416;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.65rem;
    line-height: 1.08;
}

.cta-panel p {
    max-width: 640px;
    color: rgba(232, 232, 232, 0.68);
    line-height: 1.7;
}

.page-projects .section,
.page-services .section {
    min-height: auto;
    padding: 4rem 0;
    justify-content: flex-start;
}

.page-projects .section-inner,
.page-services .section-inner {
    max-height: none;
}

.page-projects .page-intro-grid,
.page-services .page-intro-grid {
    gap: 1.5rem;
}

.page-projects .page-intro-copy p:last-child,
.page-services .page-intro-copy p:last-child {
    margin-bottom: 0;
}

.page-projects .project-categories-grid,
.page-services .process-grid {
    margin-top: 0.75rem;
}

.page-projects .projects-body-gallery {
    padding-top: 0;
}

.page-projects .section + .projects-body-gallery,
.page-services .section + .section {
    margin-top: -1rem;
}

.page-projects .cta-panel,
.page-services .cta-panel {
    margin-top: 0.5rem;
}

.contact-form-shell {
    padding: 2rem;
}

.contact-highlights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.contact-highlight-card {
    padding: 1.5rem;
}

.contact-highlight-card h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.55rem;
}

.contact-highlight-card p {
    color: rgba(232, 232, 232, 0.68);
    line-height: 1.65;
    font-size: 0.92rem;
}

.contact-panels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
}

.contact-panel-card,
.contact-company-card {
    padding: 1.7rem;
}

.contact-panel-card h3,
.contact-company-card h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-panel-list,
.contact-company-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-panel-list li,
.contact-company-list li {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-panel-list li:first-child,
.contact-company-list li:first-child {
    padding-top: 0;
    border-top: none;
}

.contact-panel-label,
.contact-company-list strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.contact-panel-list .contact-panel-label {
    color: rgba(255, 140, 50, 0.9);
}

.contact-panel-list span,
.contact-company-list span,
.contact-company-list a {
    color: rgba(232, 232, 232, 0.68);
    font-size: 0.92rem;
    line-height: 1.55;
}

.contact-company-list a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .page-intro-grid,
    .cta-panel,
    .contact-panels-grid {
        grid-template-columns: 1fr;
    }

    .page-stats-grid,
    .project-categories-grid,
    .contact-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-projects .section,
    .page-services .section {
        padding: 3rem 0;
    }

    .page-projects .section + .projects-body-gallery,
    .page-services .section + .section {
        margin-top: -0.5rem;
    }
}

@media (max-width: 600px) {
    .page-stats-grid,
    .project-categories-grid,
    .process-grid,
    .contact-highlights-grid,
    .contact-panels-grid {
        grid-template-columns: 1fr;
    }

    .page-info-card,
    .page-stat-card,
    .project-category-card,
    .process-step,
    .contact-panel-card,
    .contact-company-card,
    .contact-highlight-card,
    .contact-form-shell,
    .cta-panel {
        padding: 1.35rem;
        border-radius: 16px;
    }

    .page-projects .section,
    .page-services .section {
        padding: 2.4rem 0;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #1a1f22;
    color: #e8e8e8;
    padding: 4rem 7.5% 2rem;
    border-top: 1px solid rgba(232, 232, 232, 0.15);
    position: relative;
    z-index: 10;
}

.footer-inner {
    width: 100%;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    color: var(--main-light);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(245, 240, 235, 0.6);
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--main-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: rgba(245, 240, 235, 0.6);
}

.footer-links a {
    color: rgba(245, 240, 235, 0.7);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--main-light);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 235, 0.15);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(245, 240, 235, 0.5);
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-credit span {
    font-size: 0.75rem;
    color: rgba(245, 240, 235, 0.5);
}

.footer-credit-logo {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-credit-logo:hover {
    opacity: 1;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 992px) {

    .main-content {
        margin-left: 0;
        width: 100%;
        padding-top: 70px;
    }

    /* Hero fullscreen mobile */
    .hero-fullscreen {
        left: 0;
        width: 100%;
        top: 0;
        height: 100vh;
    }

    .hero-content-bottom {
        bottom: 10%;
        left: 5%;
        right: 5%;
    }

    .hero-tag-wrapper {
        width: 95vw;
    }

    .hero-title-main {
        font-size: clamp(2.2rem, 12vw, 4rem);
    }

    .hero-title-sub {
        font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    }

    body.page-home .hero-title-main,
    body.page-home .hero-title-sub {
        font-size: clamp(1.76rem, 9.6vw, 3.2rem);
    }

    .body-overlay {
        border-radius: 30px 30px 0 0;
    }

    .section {
        min-height: auto;
        height: auto;
        padding: 4rem 0;
        display: block;
    }
    
    .section-inner {
        max-height: none;
    }

    .body-overlay .section:first-child {
        padding-top: 5rem;
    }
    
    .section-full {
        min-height: 100vh;
        height: 100vh;
    }
    
    .ros-section {
        height: auto;
        min-height: 100vh;
    }
    
    .ros-image {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        border-radius: 0;
    }
    
    .section-about-new {
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .side-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 70px;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
        padding-top: env(safe-area-inset-top, 0px);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-right: none;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        background: #1a1f22;
        z-index: 9999;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .side-nav::before,
    .side-nav::after {
        display: none;
    }

    .nav-logo {
        margin-bottom: 0;
    }

    .nav-logo a {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .logo-text {
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }

    .logo-line {
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
        margin: 0.15rem 0;
    }

    .nav-links,
    .nav-contact {
        display: none;
    }

    .scroll-progress {
        bottom: 0;
        left: 0;
        height: 3px;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100dvh;
        background: #1a1f22;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 9998;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        padding-top: 70px;
    }

    .mobile-menu-overlay.is-open {
        display: flex;
    }

    .mobile-nav-links {
        list-style: none;
        text-align: center;
    }

    .mobile-nav-links li {
        margin-bottom: 1.2rem;
    }

    .mobile-link {
        font-size: 1.3rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        text-transform: none;
        letter-spacing: 0.03em;
        transition: all 0.2s;
    }

    .mobile-link:hover {
        color: #FFFFFF;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    
    .mobile-link.active {
        color: #FFFFFF;
        font-weight: 700;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }

    .mobile-menu-contact {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-contact a {
        display: block;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 0.5rem;
    }

    .mobile-menu-contact a:hover {
        color: #FFFFFF;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .hero {
        padding: 5rem 7.5%;
    }

    .section {
        padding: 4rem 0;
    }

    .section-inner {
        width: 85%;
        max-width: 85%;
    }

    .footer {
        padding: 3rem 7.5% 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
    }

    .stat-card {
        flex: 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ros-section .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .ros-content {
        padding: 4%;
    }
    
    .ros-section .service-card {
        padding: 1rem;
    }
    
    .ros-section .section-title {
        font-size: clamp(1.2rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        overflow: visible;
        max-height: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {

    .hero-content-bottom {
        bottom: 15%;
    }

    .hero-title-main {
        font-size: clamp(1.8rem, 14vw, 3rem);
    }

    .hero-title-sub {
        font-size: clamp(1.25rem, 2.5vw, 1.1rem);
        letter-spacing: 0.15em;
    }

    body.page-home .hero-title-main,
    body.page-home .hero-title-sub {
        font-size: clamp(1.44rem, 11.2vw, 2.4rem);
        letter-spacing: 0.04em;
    }

    .hero-tag-line {
        font-size: 0.75rem;
        padding: 0.4em 0.8em;
        letter-spacing: 0.15em;
    }

    body.page-home .hero-tag-line-desktop {
        display: none;
    }

    body.page-home .hero-tag-line-mobile {
        display: inline;
    }

    .hero-tag-wrapper {
        margin-bottom: 1rem;
    }

    .body-overlay {
        border-radius: 24px 24px 0 0;
    }

    .section {
        min-height: auto;
        height: auto;
        padding: 3rem 0;
    }

    .body-overlay .section:first-child {
        padding-top: 4rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .ros-section .services-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .ros-section .section-title {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        margin-bottom: 1rem;
    }
    
    .ros-section .section-tag {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .ros-content {
        padding: 5%;
    }
    
    .ros-section .service-card {
        padding: 1rem;
    }
    
    .ros-section .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .ros-section .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .ros-section .sp-button {
        transform: scale(0.9);
        transform-origin: left center;
        margin-top: 0.75rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-top .footer-links:last-child {
        grid-column: 1 / -1;
    }

    .footer-brand,
    .footer-links {
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
    }

    .footer-links li:last-child {
        margin-bottom: 0;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-credit {
        align-self: center;
    }

    .footer-bottom p {
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   STACKING CARDS LAYOUT
   ======================================== */

/* Usluge page - hero not fixed */
/* Stacking section wrapper */
.stacking-section {
    background: var(--main-dark);
    position: relative;
    z-index: 2;
    padding: 0;
}

.stacking-cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Stacking card - sticky positioning */
.stacking-card {
    position: sticky;
    top: 0;
    border-radius: 0;
    height: 50vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    overflow: visible;
    will-change: filter;
    background: #1e2428;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    gap: 0;
    margin-bottom: 0;
    transition: filter 0.1s ease-out;
}

/* Individual Card Styling - z-index for stacking */
.stacking-card:nth-child(1) { z-index: 1; }
.stacking-card:nth-child(2) { z-index: 2; }
.stacking-card:nth-child(3) { z-index: 3; }
.stacking-card:nth-child(4) { z-index: 4; }
.stacking-card:nth-child(5) { z-index: 5; }
.stacking-card:nth-child(6) { z-index: 6; }
.stacking-card:nth-child(7) { z-index: 7; }
.stacking-card:nth-child(8) { z-index: 8; }
.stacking-card:last-child { 
    position: sticky; 
    top: 0; 
    z-index: 9;
}

/* Card image - left side */
.stacking-card-image {
    width: 45%;
    flex-shrink: 0;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    align-self: stretch;
}

.stacking-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card content - right side */
.stacking-card-body {
    flex: 1;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.stacking-card-body h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: -0.02em;
}

.stacking-card-body > p {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Card content - service cards */
.stacking-card-content {
    width: 100%;
}

/* Service cards grid inside stacking cards */
.stacking-card-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    flex: 1;
    min-height: 0;
    margin-top: 1.25rem;
}

.stacking-card-services .service-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.stacking-card-services .service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.stacking-card-services .service-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.stacking-card-services .service-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile Stacking Layout */
@media (max-width: 992px) {
    .stacking-section {
        padding: 5vh 5%;
    }
    
    .stacking-cards-container {
        gap: 20px;
        padding-bottom: 0;
    }
    
    .stacking-card {
        position: relative;
        top: auto;
        flex-direction: column;
        border-radius: 24px;
        margin-top: 0 !important;
        transform: none !important;
        filter: none !important;
        min-height: auto;
        padding: 16px;
        gap: 16px;
        overflow: visible;
        height: auto;
    }
    
    .stacking-card-image {
        width: 100%;
        min-height: 220px;
        border-radius: 16px;
    }
    
    .stacking-card-body {
        padding: 8px 8px 16px 8px;
        overflow: visible;
    }
    
    .stacking-card-body h3 {
        font-size: 1.5rem;
    }
    
    .stacking-card-body > p {
        font-size: 0.95rem;
        display: block;
        -webkit-line-clamp: unset;
        -webkit-box-orient: initial;
        overflow: visible;
        margin-bottom: 1.35rem;
    }
    
    .stacking-card-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 1.25rem;
    }
    
    .stacking-card-services .service-card {
        padding: 1rem;
        min-height: auto;
    }
    
    .stacking-card-services .service-card h4 {
        font-size: 0.9rem;
    }
    
    .stacking-card-services .service-card p {
        font-size: 0.85rem;
        display: block;
        -webkit-line-clamp: unset;
        -webkit-box-orient: initial;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .stacking-card {
        border-radius: 20px;
        padding: 12px;
        gap: 12px;
        height: auto;
    }
    
    .stacking-card-image {
        min-height: 180px;
        border-radius: 14px;
    }
    
    .stacking-card-body {
        padding: 4px 4px 12px 4px;
    }
    
    .stacking-card-body h3 {
        font-size: 1.3rem;
    }
    
    .stacking-card-body > p {
        font-size: 0.9rem;
        display: block;
        overflow: visible;
        margin-bottom: 1.25rem;
    }
    
    .stacking-card-services {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 1.1rem;
    }
    
    .stacking-card-services .service-card h4 {
        font-size: 0.85rem;
    }
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(6, 8, 10, 0.9);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 100000;
}

.lightbox-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-modal__dialog {
    position: relative;
    width: min(1100px, 100%);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-modal__image {
    width: auto;
    max-width: 100%;
    max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-modal__close {
    position: absolute;
    top: -0.75rem;
    right: -0.25rem;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.lightbox-enabled {
    cursor: zoom-in;
}

@media (max-width: 600px) {
    .lightbox-modal {
        padding: 1rem;
    }

    .lightbox-modal__image {
        border-radius: 14px;
    }

    .lightbox-modal__close {
        top: -0.35rem;
        right: -0.15rem;
    }
}

@media (max-width: 480px) {
    .page-home .hero-parallax-img,
    .page-about .hero-parallax-img {
        content: url('slike/naslovna/hero-mobile.webp');
    }

    .page-projects .hero-parallax-img,
    .page-home .ros-image img {
        content: url('slike/projekti/projekti-00A-mobile.webp');
    }

    .page-services .hero-parallax-img {
        content: url('slike/usluge/usluge-mobile.webp');
    }

    .page-contact .hero-parallax-img {
        content: url('slike/kontakt/kontakt-mobile.webp');
    }

    .stacking-card:nth-child(1) .stacking-card-image img {
        content: url('slike/usluge/stambena-zgrada-mobile.webp');
    }

    .stacking-card:nth-child(2) .stacking-card-image img {
        content: url('slike/usluge/industrijski-objekt-mobile.webp');
    }

    .stacking-card:nth-child(3) .stacking-card-image img {
        content: url('slike/usluge/adaptacija-kupaone-mobile.webp');
    }

    .stacking-card:nth-child(4) .stacking-card-image img {
        content: url('slike/usluge/sakralni-objekti-mobile.webp');
    }
    
    .project-img-01 {
        content: url('slike/projekti/projekti-01-mobile.webp');
    }
    
    .project-img-02 {
        content: url('slike/projekti/projekti-02-mobile.webp');
    }
    
    .project-img-03 {
        content: url('slike/projekti/projekti-03-mobile.webp');
    }
    
    .project-img-04 {
        content: url('slike/projekti/projekti-04-mobile.webp');
    }
}
