@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap');

/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
    --color-white: #F0F8FF;
    --color-black: #020617;
    --color-red: #E31B23;
    --color-overlay: rgba(2, 6, 23, 0.4);
    --color-card-bg: rgba(2, 6, 23, 0.65);
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Anton', sans-serif;
    --font-display: 'Playfair Display', serif;
    --spacing-container: 2rem;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    font-family: var(--font-primary);
    color: var(--color-white);
    background-color: var(--color-black);
    overflow-x: hidden;
    width: 100vw;
    min-height: 100vh;
}


/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 5;
    opacity: 0.4;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   TYPOGRAPHY SCALING
   ======================================== */
@media (min-width: 1440px) {
    html {
        font-size: 18px;
    }
}

@media (min-width: 1920px) {
    html {
        font-size: 21px;
    }
}

h1 {
    font-family: var(--font-heading);
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 0.9;
}

/* ========================================
   HEADER (from 05_Hero)
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0.75rem 0;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1), 0 8px 40px rgba(255, 255, 255, 0.05);
}

.header-bg {
    position: absolute;
    background-color: var(--color-black);
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-img {
    height: 2.5rem;
    width: auto;
    display: block;
    position: relative;
    z-index: 101;
}

.nav-list {
    display: none;
    list-style: none;
    gap: 2rem;
    align-items: baseline;
}

.nav-list > li {
    position: relative;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::before,
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width 0.3s ease;
}

.nav-link::before {
    left: 50%;
}

.nav-link::after {
    right: 50%;
}

.nav-link:hover::before,
.nav-link:hover::after {
    width: 50%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-direction: column;
}

.nav-link--mobile-only {
    display: none;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-top: 2px;
    font-size: 0.6rem;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-black);
    border: none;
    border-radius: 0;
    padding: 0.5rem 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    list-style: none;
    margin-top: 0;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background-color: var(--color-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dropdown-menu li a:hover::after {
    transform: scaleX(1);
}

/* Hamburger Button */
.hamburger {
    cursor: pointer;
    display: block;
    position: relative;
    z-index: 101;
}

.hamburger input {
    display: none;
}

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

.hamburger .line {
    fill: none;
    stroke: white;
    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);
}

.hamburger .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;
}

/* Tablet & Desktop Styles */
@media (min-width: 768px) {
    .nav-list {
        display: flex;
    }

    .hamburger {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        z-index: 90;
        padding: 0 2rem;
        opacity: 0;
        transition: opacity 0.3s ease;
        overflow-y: auto;
        gap: 1.25rem;
    }
    
    .nav-list.active {
        opacity: 1;
        transition-delay: 0.4s;
    }
    
    .nav-list > li {
        text-align: left;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 0.02em;
    }
    
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-link--dropdown {
        display: none;
    }
    
    .nav-link--mobile-only {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dropdown-menu li {
        text-align: left;
        padding-left: 1rem;
    }
    
    .dropdown-menu li a {
        font-size: 1.1rem;
        padding: 0.25rem 0;
        color: rgba(240, 248, 255, 0.7);
        transition: color 0.2s ease;
    }
    
    .dropdown-menu li a:hover {
        color: var(--color-white);
    }
}

/* ========================================
   HERO SECTION (from 05_Hero)
   ======================================== */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.6));
}

.hero-content-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 12vw 0 8vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-top: 6rem;
}

.hero-card {
    background-color: var(--color-card-bg);
    padding: 2rem;
    width: 25vw;
    max-width: none;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 65vh;
    min-height: unset;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 100%;
}

/* Fancy Button Style (from buy-tickets-button) */
.cta-button,
.btn-primary,
.usluga-btn {
    background-color: transparent;
    border: 2px solid var(--color-white);
    border-radius: 0;
    box-sizing: border-box;
    color: var(--color-white);
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 0.875rem;
    font-family: var(--font-primary);
    width: fit-content;
}

.cta-button::before,
.btn-primary::before,
.usluga-btn::before {
    content: "";
    width: 1.5625rem;
    height: 2px;
    background: var(--color-white);
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.cta-button .text,
.btn-primary .text,
.usluga-btn .text {
    font-size: 1em;
    line-height: 1.33333em;
    padding-left: 2em;
    display: block;
    text-align: left;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
}

.cta-button .top-key,
.btn-primary .top-key,
.usluga-btn .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: var(--color-black);
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.cta-button .bottom-key-1,
.btn-primary .bottom-key-1,
.usluga-btn .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: var(--color-black);
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.cta-button .bottom-key-2,
.btn-primary .bottom-key-2,
.usluga-btn .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: var(--color-black);
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.cta-button:hover,
.btn-primary:hover,
.usluga-btn:hover {
    color: var(--color-black);
    background: var(--color-white);
}

.cta-button:hover::before,
.btn-primary:hover::before,
.usluga-btn:hover::before {
    width: 0.9375rem;
    background: var(--color-black);
}

.cta-button:hover .text,
.btn-primary:hover .text,
.usluga-btn:hover .text {
    color: var(--color-black);
    padding-left: 1.5em;
}

.cta-button:hover .top-key,
.btn-primary:hover .top-key,
.usluga-btn:hover .top-key {
    left: -2px;
    width: 0px;
}

.cta-button:hover .bottom-key-1,
.cta-button:hover .bottom-key-2,
.btn-primary:hover .bottom-key-1,
.btn-primary:hover .bottom-key-2,
.usluga-btn:hover .bottom-key-1,
.usluga-btn:hover .bottom-key-2 {
    right: 0;
    width: 0;
}

@media (max-width: 767px) {
    .hero-content-container {
        justify-content: flex-end;
        align-items: flex-end;
        padding: 0 1rem 3rem 1rem;
    }
    
    .hero-card {
        padding: 1.5rem;
        min-height: auto;
        height: auto;
        width: 100%;
        max-width: none;
        background-color: rgba(2, 6, 23, 0.6);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
}

/* ========================================
   O NAMA SECTION (from 09_Hero)
   ======================================== */
.o-nama-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
    padding-top: 50px;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .o-nama-section {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .o-nama-section {
        padding-top: 0;
    }
}

.o-nama-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.o-nama-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    align-items: center;
    height: 100%;
}

@media (min-width: 1024px) {
    .o-nama-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        height: auto;
    }
}

.o-nama-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 42rem;
    position: relative;
    z-index: 20;
    text-align: center;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .o-nama-content {
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .o-nama-content {
        gap: 2rem;
        text-align: left;
        align-items: flex-start;
    }
}

.o-nama-title {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: -0.02em;
    display: inline-block;
    position: relative;
}

.o-nama-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: var(--color-red);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .o-nama-title {
        font-size: 3rem;
    }
}

.o-nama-description {
    color: rgba(240, 248, 255, 0.8);
    font-size: 0.875rem;
    font-family: var(--font-primary);
    max-width: 32rem;
    line-height: 1.6;
    font-weight: 500;
}

@media (min-width: 640px) {
    .o-nama-description {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .o-nama-description {
        font-size: 1.125rem;
    }
}

.o-nama-cta {
    padding-top: 0.25rem;
}

/* O nama features */
.o-nama-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.o-nama-feature {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.o-nama-feature__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-red);
    line-height: 1;
}

.o-nama-feature__label {
    font-size: 0.875rem;
    color: rgba(240, 248, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .o-nama-features {
        gap: 3rem;
    }
    
    .o-nama-feature__number {
        font-size: 2.5rem;
    }
}

/* btn-primary now uses fancy button styles defined in hero section */

.o-nama-images {
    position: relative;
    height: 35vh;
    min-height: 240px;
    display: block;
    width: 100%;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .o-nama-images {
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .o-nama-images {
        height: 600px;
        margin-top: 0;
    }
}

.o-nama-card {
    position: absolute;
}

.o-nama-card__wrapper {
    padding: 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.o-nama-card__inner {
    border-radius: 1.5rem;
    overflow: hidden;
}

.o-nama-card__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.o-nama-card--top {
    top: 0;
    right: 0.25rem;
    z-index: 10;
}

@media (min-width: 640px) {
    .o-nama-card--top {
        right: 1rem;
    }
}

@media (min-width: 1024px) {
    .o-nama-card--top {
        top: 3vh;
        right: 3.5rem;
    }
}

.o-nama-card--top .o-nama-card__wrapper {
    transform: rotate(6deg);
}

.o-nama-card--top .o-nama-card__inner {
    width: 62vw;
    height: 19vh;
    min-height: 145px;
}

@media (min-width: 640px) {
    .o-nama-card--top .o-nama-card__inner {
        width: 21rem;
        height: 14rem;
    }
}

@media (min-width: 1024px) {
    .o-nama-card--top .o-nama-card__inner {
        width: 390px;
        height: 18rem;
    }
}

.o-nama-card--bottom {
    bottom: -6vh;
    left: 0.25rem;
    z-index: 20;
}

@media (min-width: 640px) {
    .o-nama-card--bottom {
        left: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .o-nama-card--bottom {
        bottom: 0;
        left: -2rem;
    }
}

.o-nama-card--bottom .o-nama-card__wrapper {
    transform: rotate(-6deg);
}

.o-nama-card--bottom .o-nama-card__inner {
    width: 66vw;
    height: 22vh;
    min-height: 170px;
}

@media (min-width: 640px) {
    .o-nama-card--bottom .o-nama-card__inner {
        width: 25rem;
        height: 18rem;
    }
}

@media (min-width: 1024px) {
    .o-nama-card--bottom .o-nama-card__inner {
        width: 460px;
        height: 21rem;
    }
}

.o-nama-card--bottom img {
    filter: grayscale(100%) contrast(1.25);
}

/* ========================================
   SECTION SPACING
   ======================================== */
.section-spacing {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 768px) {
    .section-spacing {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* ========================================
   USLUGE SECTION
   ======================================== */
.usluge-section {
    position: relative;
    width: 100%;
    padding: 5rem 1.5rem;
    background: var(--color-black);
}

@media (min-width: 768px) {
    .usluge-section {
        padding: 5rem 2rem;
    }
}

.usluge-container {
    max-width: 80rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 70%;
    height: 3px;
    background: var(--color-red);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    color: rgba(240, 248, 255, 0.7);
    font-size: 1rem;
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.125rem;
    }
}

.usluge-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 70rem;
    margin: 0 auto;
}

.usluga-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 1.5rem;
    transition: all 300ms ease;
    overflow: hidden;
}

@media (min-width: 768px) {
    .usluga-card {
        grid-template-columns: 400px 1fr;
        padding: 0;
        align-items: stretch;
        min-height: 320px;
    }
    
    .usluga-card:nth-child(even) {
        grid-template-columns: 1fr 400px;
    }
    
    .usluga-card:nth-child(even) .usluga-image {
        order: 2;
        border-radius: 0 2rem 2rem 0;
    }
    
    .usluga-card:nth-child(even) .usluga-content {
        order: 1;
    }
}

.usluga-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-red);
    transform: translateY(-4px);
}

.usluga-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 1.5rem;
}

@media (min-width: 768px) {
    .usluga-image {
        height: 100%;
        min-height: 320px;
        border-radius: 2rem 0 0 2rem;
    }
}

.usluga-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    gap: 1rem;
}

@media (min-width: 768px) {
    .usluga-content {
        padding: 2.5rem;
    }
}

.usluga-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.usluga-desc {
    font-size: 1rem;
    color: rgba(240, 248, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* usluga-btn now uses fancy button styles defined in hero section */

/* ========================================
   SERVICE SUBPAGES
   ======================================== */
.service-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    padding: 2rem 1.5rem;
    padding-top: 6rem;
}

@media (min-width: 768px) {
    .service-hero {
        min-height: 70vh;
        padding: 4rem 2rem;
        padding-top: 8rem;
    }
}

.service-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.service-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.3));
}

.service-hero__content {
    position: relative;
    z-index: 10;
    max-width: 50rem;
}

.service-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: opacity 200ms ease;
}

.service-hero__back:hover {
    opacity: 1;
}

.service-hero__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .service-hero__title {
        font-size: 4rem;
    }
}

.service-hero__subtitle {
    font-size: 1rem;
    color: rgba(240, 248, 255, 0.8);
    max-width: 32rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .service-hero__subtitle {
        font-size: 1.25rem;
    }
}

.service-content {
    padding: 4rem 1.5rem;
    background: var(--color-black);
}

@media (min-width: 768px) {
    .service-content {
        padding: 6rem 2rem;
    }
}

.service-content__container {
    max-width: 80rem;
    margin: 0 auto;
}

.service-content__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .service-content__grid {
        grid-template-columns: 1fr 350px;
        gap: 4rem;
    }
}

.service-content__text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.service-content__text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-content__text p {
    color: rgba(240, 248, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    color: rgba(240, 248, 255, 0.8);
    line-height: 1.8;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--color-red);
    border-radius: 50%;
}

.service-content__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-cta-card {
    background: rgba(227, 27, 35, 0.1);
    border: 1px solid rgba(227, 27, 35, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
}

.service-cta-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.service-cta-card p {
    color: rgba(240, 248, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
}

.service-info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.service-info-card p {
    color: rgba(240, 248, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.service-info-card p a {
    color: rgba(240, 248, 255, 0.7);
    text-decoration: none;
    transition: color 200ms ease;
}

.service-info-card p a:hover {
    color: var(--color-white);
}

.service-info-card strong {
    color: var(--color-white);
}

.service-gallery {
    padding: 4rem 1.5rem;
    background: var(--color-black);
}

@media (min-width: 768px) {
    .service-gallery {
        padding: 6rem 2rem;
    }
}

.service-gallery__container {
    max-width: 80rem;
    margin: 0 auto;
}

.service-gallery h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

.service-gallery__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .service-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (min-width: 640px) {
    .service-gallery__grid--large {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-gallery__item {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.service-gallery__item:hover img {
    transform: scale(1.05);
}

/* ========================================
   GALERIJA SECTION
   ======================================== */
.galerija-section {
    position: relative;
    width: 100%;
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom, var(--color-black), rgba(2, 6, 23, 0.95));
}

@media (min-width: 768px) {
    .galerija-section {
        padding: 5rem 2rem;
    }
}

.galerija-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0;
    width: 90vw;
}

@media (min-width: 768px) {
    .galerija-container {
        padding: 0 2rem;
        width: 100%;
    }
}

.galerija-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .galerija-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .galerija-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.galerija-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.galerija-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.galerija-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   KONTAKT SECTION
   ======================================== */
.kontakt-section {
    position: relative;
    width: 100%;
    padding: 5rem 1.5rem;
    background: var(--color-black);
}

@media (min-width: 768px) {
    .kontakt-section {
        padding: 5rem 2rem;
    }
}

.kontakt-container {
    max-width: 80rem;
    margin: 0 auto;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .kontakt-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.kontakt-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.kontakt-info h2::after {
    content: '';
    display: block;
    width: 70%;
    height: 3px;
    background: var(--color-red);
    margin-top: 0.5rem;
}

@media (min-width: 480px) {
    .kontakt-info h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .kontakt-info h2 {
        font-size: 3rem;
    }
}

.kontakt-info p {
    color: rgba(240, 248, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 28rem;
    text-align: left;
    margin-left: 0;
}

.kontakt-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.kontakt-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-white);
}

.kontakt-item__icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(253, 219, 56, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-yellow);
    flex-shrink: 0;
}

.kontakt-item__text {
    font-size: 1rem;
}

.kontakt-item__text a {
    color: var(--color-white);
    transition: color 200ms ease;
    position: relative;
    padding-bottom: 4px;
}

.kontakt-item__text a::before,
.kontakt-item__text a::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width 0.3s ease;
}

.kontakt-item__text a::before {
    left: 50%;
}

.kontakt-item__text a::after {
    right: 50%;
}

.kontakt-item__text a:hover::before,
.kontakt-item__text a:hover::after {
    width: 50%;
}

.kontakt-item__text a:hover {
    color: var(--color-white);
}

.kontakt-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .kontakt-form {
        padding: 0;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 200ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-red);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(240, 248, 255, 0.4);
}

.form-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.kontakt-form .btn-primary {
    width: fit-content;
    font-family: var(--font-primary);
}

/* ========================================
   FOOTER (from 03_Footer)
   ======================================== */
#kontakt {
    height: auto;
    min-height: auto;
    align-items: stretch;
    justify-content: stretch;
    background: var(--color-black);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer watermark gradient overlay */
#kontakt::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(60px, 10vh, 100px);
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(
        to top,
        var(--color-black) 0%,
        rgba(2, 6, 23, 0.6) 40%,
        transparent 100%
    );
}

.contact-shell {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(18px, 2.2vh, 28px);
    padding: clamp(20px, 3.2vh, 38px) clamp(22px, 3.2vw, 46px);
    position: relative;
    z-index: 1;
}

.contact-panels {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: clamp(14px, 1.8vw, 22px);
    align-items: stretch;
}

.contact-panel {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: clamp(22px, 2.8vh, 34px) clamp(20px, 2.4vw, 36px);
    min-height: clamp(150px, 20vh, 200px);
}

.contact-panel-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(16px, 2vh, 22px);
}

.contact-panel-info .contact-info-grid {
    grid-template-columns: 1fr;
}

.contact-left {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: clamp(18px, 3vw, 44px);
    row-gap: clamp(14px, 2.2vh, 20px);
    align-items: stretch;
}

.contact-left-primary,
.contact-left-secondary {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: space-between;
    height: 5em;
}

.contact-left-secondary {
    align-items: center;
    margin-top: 0;
    justify-self: center;
    text-align: center;
}

.contact-left > .contact-info-label {
    grid-column: 1 / -1;
    margin-bottom: 0;
    font-size: 12px;
}

.contact-info-label {
    color: var(--color-white);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.6;
}

.contact-company-name {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin: 0;
}

.contact-left-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.2px;
    width: fit-content;
    line-height: 1.4;
    transition: opacity 180ms ease;
    position: relative;
    padding-bottom: 4px;
}

.contact-left-link::before,
.contact-left-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width 0.3s ease;
}

.contact-left-link::before {
    left: 50%;
}

.contact-left-link::after {
    right: 50%;
}

.contact-left-link:hover::before,
.contact-left-link:hover::after {
    width: 50%;
}

.contact-left-link:hover {
    opacity: 1;
}

.contact-left-text {
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.7;
}

.contact-left-hours {
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.7;
}

.contact-mini-social {
    display: inline-flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
    justify-content: space-between;
    justify-self: end;
    margin-top: 0;
    height: 5em;
}

.contact-mini-social-link {
    color: var(--text-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
    transition: none;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.contact-mini-social-link::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, rgba(var(--social-glow-rgb), var(--social-glow-alpha)), rgba(var(--social-glow-rgb), 0) 68%);
    filter: blur(var(--social-glow-blur));
    opacity: 0;
    transform: scale(0.78);
    transition: opacity 180ms ease, transform 260ms cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
    z-index: -1;
}

.contact-mini-social-link:hover::before,
.contact-mini-social-link:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

.contact-mini-social-link .social-icon {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 2vw, 28px);
    align-items: start;
}

.contact-info-text {
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.7;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-block .contact-left-link {
    font-size: 14px;
    opacity: 0.7;
}

.contact-info-block .contact-left-link:hover {
    opacity: 1;
}

.contact-info-block-right {
    text-align: right;
}

.contact-developed {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    transform: none;
}

.contact-developed-label {
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    opacity: 0.6;
}

.contact-developed-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0;
    line-height: 0;
    display: inline-flex;
    align-items: flex-start;
    gap: 0;
    width: fit-content;
    transition: opacity 180ms ease;
    overflow: visible;
    margin-top: 0;
    cursor: pointer;
}

.contact-developed-logo {
    height: 65px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transform: none;
}

.contact-developed-link:hover .contact-developed-logo {
    opacity: 1;
}

.contact-wordmark {
    width: 100%;
    margin-top: 0;
    padding-top: 0.2em;
    color: var(--color-white);
    opacity: 0.15;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.1;
    font-size: clamp(28px, 7vw, 90px);
    white-space: nowrap;
    overflow: visible;
}

@media (max-width: 600px) {
    .contact-wordmark {
        font-size: 0;
        line-height: 0;
        text-align: left;
        max-width: 100%;
        overflow: hidden;
        white-space: nowrap;
        height: 0;
        padding-top: 0;
    }
    
    .contact-wordmark::after {
        content: 'LONČAR';
        display: block;
        font-size: clamp(28px, 12vw, 60px);
        line-height: 1.1;
        color: var(--color-white);
        opacity: 0.15;
        font-weight: 600;
        letter-spacing: -2px;
    }
}

@media (max-width: 768px) {
    #kontakt {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    #kontakt::after {
        height: clamp(60px, 14vh, 140px);
    }

    .contact-shell {
        flex: 1;
    }

    .contact-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-shell {
        gap: 18px;
        padding: 24px 18px 30px;
    }

    .contact-panel {
        padding: 20px 16px;
    }

    .contact-left {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    .contact-left-primary,
    .contact-left-secondary {
        height: auto;
        gap: 6px;
        justify-content: flex-start;
        text-align: left;
    }

    .contact-left-secondary {
        align-items: center;
        text-align: center;
    }

    .contact-mini-social {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        height: auto;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-info-text,
    .contact-left-text,
    .contact-left-hours,
    .contact-developed-label {
        font-size: 14px;
        line-height: 1.4;
        word-break: break-word;
    }

    .sitemap-title {
        color: var(--color-white);
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contact-wordmark {
        font-size: clamp(34px, 18vw, 110px);
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Section Divider */
.section-divider {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-divider::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}
