/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #F7F5F2;
    color: #2D2D2D;
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

/* =========================
   VARIABLES
========================= */

:root {

    --bg: #F7F5F2;
    --white: #FFFFFF;

    --green: #586B5A;
    --green-dark: #2F3A33;

    --gold: #D7C7AE;

    --text: #2D2D2D;

    --radius: 22px;

    --shadow: 0 20px 60px rgba(0,0,0,.08);

    --transition: .35s ease;

}

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(247, 245, 242, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(47, 58, 51, 0.08);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    min-width: max-content;
}

.logo-main {
    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
    font-weight: 600;
    color: var(--green-dark);
    letter-spacing: 0.5px;
}

.logo-sub {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: var(--green-dark);
    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--green);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-size: 11px;
}

.language-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    color: var(--green);
    opacity: 0.55;
}

.language-btn.active {
    opacity: 1;
    font-weight: 700;
}

.header-cta {
    padding: 12px 20px;
    border: 1px solid var(--green-dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green-dark);
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--green-dark);
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--green-dark);
    transition: var(--transition);
}

@media (max-width: 950px) {
    .nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 560px) {
    .header {
        padding: 14px 0;
    }

    .logo-main {
        font-size: 27px;
    }

    .logo-sub {
        font-size: 8px;
        letter-spacing: 2.5px;
    }

    .language-switch {
        display: none;
    }
}/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(25, 35, 29, 0.32), rgba(25, 35, 29, 0.42)),
        url("images/hero.jpg") center/cover no-repeat;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(31, 43, 35, 0.82) 0%,
            rgba(31, 43, 35, 0.52) 45%,
            rgba(31, 43, 35, 0.18) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 130px;
    padding-bottom: 70px;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #eee4d5;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(64px, 8vw, 112px);
    line-height: 0.88;
    font-weight: 500;
    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
}

.hero-text {
    max-width: 590px;
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--white);
    color: var(--green-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

.hero-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 850px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-details div {
    padding: 24px 28px 0 0;
}

.hero-details strong,
.hero-details span {
    display: block;
}

.hero-details strong {
    margin-bottom: 7px;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
}

.hero-details span {
    max-width: 220px;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 760px) {
    .hero {
        min-height: 820px;
        background-position: 60% center;
    }

    .hero-overlay {
        background: rgba(31, 43, 35, 0.68);
    }

    .hero-content {
        padding-top: 145px;
        padding-bottom: 45px;
    }

    .hero h1 {
        font-size: clamp(54px, 17vw, 78px);
        line-height: 0.92;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        max-width: 270px;
    }

    .hero-details {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 55px;
    }

    .hero-details div {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
}/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 120px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 60px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
}

.section-heading h2 {
    font-size: clamp(46px, 6vw, 78px);
    line-height: 0.98;
    color: var(--green-dark);
}

.section-heading p {
    max-width: 650px;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(45, 45, 45, 0.72);
}

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

.services {
    background: var(--bg);
}

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

.service-card {
    min-height: 300px;
    padding: 32px;
    border: 1px solid rgba(88, 107, 90, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.58);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-number {
    display: inline-block;
    margin-bottom: 64px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 1.05;
    color: var(--green-dark);
}

.service-card p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(45, 45, 45, 0.68);
}

@media (max-width: 950px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .section {
        padding: 85px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

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

    .service-card {
        min-height: auto;
        padding: 28px;
    }

    .service-number {
        margin-bottom: 42px;
    }
}/* =========================
   WHY US
========================= */

.why-us {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 78px;
    align-items: center;
}

.why-image {
    min-height: 680px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #dcded8;
    box-shadow: var(--shadow);
}

.why-image img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.why-image:hover img {
    transform: scale(1.035);
}

.why-content h2 {
    max-width: 650px;
    margin-bottom: 26px;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 0.98;
    color: var(--green-dark);
}

.why-content > p {
    max-width: 660px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(45, 45, 45, 0.72);
}

.why-list {
    margin-top: 44px;
    border-top: 1px solid rgba(88, 107, 90, 0.18);
}

.why-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(88, 107, 90, 0.18);
}

.why-number {
    padding-top: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
}

.why-item h3 {
    margin-bottom: 8px;
    font-size: 27px;
    line-height: 1.1;
    color: var(--green-dark);
}

.why-item p {
    max-width: 540px;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(45, 45, 45, 0.66);
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-image,
    .why-image img {
        min-height: 480px;
    }
}

@media (max-width: 560px) {
    .why-image,
    .why-image img {
        min-height: 390px;
    }

    .why-item {
        grid-template-columns: 34px 1fr;
        gap: 14px;
    }

    .why-item h3 {
        font-size: 24px;
    }
}/* =========================
   PROCESS
========================= */

.process {
    background: var(--green-dark);
    color: var(--white);
}

.process-heading .section-kicker {
    color: var(--gold);
}

.process-heading h2 {
    color: var(--white);
}

.process-heading p {
    color: rgba(255, 255, 255, 0.68);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step {
    position: relative;
    min-height: 310px;
    padding: 38px 38px 20px 0;
}

.process-step:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 38px;
}

.process-number {
    display: inline-block;
    margin-bottom: 78px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

.process-step h3 {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.05;
    color: var(--white);
}

.process-step p {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 850px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: auto;
        padding: 32px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .process-step:not(:last-child) {
        margin-right: 0;
        border-right: 0;
    }

    .process-number {
        margin-bottom: 34px;
    }
}/* =========================
   GALLERY
========================= */

.gallery {
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    background: #dcded8;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-more {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.gallery-button {
    border: 1px solid var(--green-dark);
    background: transparent;
    color: var(--green-dark);
    cursor: pointer;
}

.gallery-button:hover {
    background: var(--green-dark);
    color: var(--white);
}

.gallery-extra {
    display: none;
    margin-top: 16px;
}

.gallery-extra.show {
    display: grid;
}

@media (max-width: 850px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .gallery-tall,
    .gallery-wide {
        grid-row: auto;
        grid-column: auto;
    }
}/* =========================
PROMISES
========================= */

.promises{

background:white;

}

.promise-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

}

.promise-card{

padding:40px;

border-radius:var(--radius);

background:var(--bg);

transition:.35s;

}

.promise-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow);

}

.promise-card h3{

margin-bottom:18px;

font-size:34px;

color:var(--green-dark);

}

.promise-card p{

font-size:14px;

line-height:1.9;

color:rgba(45,45,45,.68);

}

@media(max-width:800px){

.promise-grid{

grid-template-columns:1fr;

}

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

.contact {

background: var(--green-dark);

color: white;

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 520px;

gap:80px;

align-items:center;

}

.contact-left h2{

font-size:clamp(54px,6vw,82px);

line-height:.95;

margin:25px 0;

color:white;

}

.contact-left p{

max-width:520px;

line-height:1.9;

color:rgba(255,255,255,.7);

}

.contact-stat-big{

margin-top:60px;

}

.contact-stat-big strong{

display:block;

font-size:92px;

font-family:"Cormorant Garamond",serif;

}

.contact-stat-big span{

font-size:15px;

color:rgba(255,255,255,.65);

}

.contact-card{

background:white;

padding:45px;

border-radius:var(--radius);

box-shadow:var(--shadow);

}

.contact-item{

display:flex;

gap:20px;

padding:18px 0;

border-bottom:1px solid rgba(0,0,0,.08);

}

.contact-item span{

font-size:24px;

}

.contact-item small{

display:block;

margin-bottom:5px;

font-size:11px;

color:#888;

}

.contact-item strong{

color:var(--green-dark);

}

.contact-button{

display:flex;

justify-content:center;

align-items:center;

margin-top:35px;

height:56px;

border-radius:999px;

background:var(--green-dark);

color:white;

font-weight:600;

transition:.35s;

}

.contact-button:hover{

transform:translateY(-3px);

background:var(--green);

}

@media(max-width:900px){

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-card{

padding:30px;

}

}/* =========================
   FAQ
========================= */

.faq {
    background: var(--white);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 130px;
}

.faq-intro h2 {
    margin-bottom: 25px;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 0.98;
    color: var(--green-dark);
}

.faq-intro p {
    max-width: 500px;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(45, 45, 45, 0.68);
}

.faq-list {
    border-top: 1px solid rgba(88, 107, 90, 0.2);
}

.faq-item {
    border-bottom: 1px solid rgba(88, 107, 90, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 28px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 600;
    color: var(--green-dark);
}

.faq-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(88, 107, 90, 0.35);
    border-radius: 50%;
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 400;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.faq-answer p {
    max-width: 680px;
    padding: 0 55px 28px 0;
    font-size: 13px;
    line-height: 1.85;
    color: rgba(45, 45, 45, 0.68);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--green-dark);
    color: var(--white);
}

@media (max-width: 900px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-intro {
        position: static;
    }
}

@media (max-width: 560px) {
    .faq-question {
        padding: 23px 0;
        font-size: 23px;
    }

    .faq-answer p {
        padding-right: 0;
    }
}/* =========================
   FOOTER
========================= */

.footer {
    padding: 78px 0 26px;
    background: #202923;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.75fr);
    gap: 55px;
    padding-bottom: 58px;
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-main {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 600;
}

.footer-logo-sub {
    margin-top: 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-brand p {
    max-width: 390px;
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.58);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-column h3 {
    margin-bottom: 9px;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-column a,
.footer-column span {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.48);
}

.footer-bottom a {
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (max-width: 950px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-bottom: 42px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}/* =========================
   MOBILE REVEAL ANIMATIONS
========================= */

.reveal {
    opacity: 0;
    transform: translateY(42px) scale(0.97);
    filter: blur(8px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.2, .7, .2, 1),
        filter 0.8s ease;
    will-change: opacity, transform, filter;
}

.reveal.reveal-left {
    transform: translateX(-42px) scale(0.97);
}

.reveal.reveal-right {
    transform: translateX(42px) scale(0.97);
}

.reveal.reveal-zoom {
    transform: scale(0.88);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

/* Hero ulazak */

.hero-eyebrow {
    animation: heroFadeUp 0.8s ease 0.15s both;
}

.hero h1 span:first-child {
    animation: heroFadeUp 0.9s ease 0.28s both;
}

.hero h1 span:last-child {
    animation: heroFadeUp 0.9s ease 0.42s both;
}

.hero-text {
    animation: heroFadeUp 0.9s ease 0.58s both;
}

.hero-buttons {
    animation: heroFadeUp 0.9s ease 0.72s both;
}

.hero-details {
    animation: heroFadeUp 0.9s ease 0.88s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
        filter: blur(7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Dugmad */

.btn,
.contact-button {
    position: relative;
    overflow: hidden;
}

.btn::before,
.contact-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.16);
    transform: translateX(-110%) skewX(-18deg);
    transition: transform 0.55s ease;
}

.btn:hover::before,
.contact-button:hover::before {
    transform: translateX(110%) skewX(-18deg);
}

/* Posebno za telefon */

@media (max-width: 760px) {
    .reveal {
        transform: translateY(50px) scale(0.95);
        transition-duration: 0.72s;
    }

    .reveal.reveal-left {
        transform: translateX(-34px) scale(0.96);
    }

    .reveal.reveal-right {
        transform: translateX(34px) scale(0.96);
    }

    .service-card.visible,
    .promise-card.visible,
    .process-step.visible,
    .gallery-item.visible {
        animation: mobilePop 0.7s cubic-bezier(.2, .8, .2, 1) both;
    }

    @keyframes mobilePop {
        0% {
            opacity: 0;
            transform: translateY(45px) scale(0.9);
        }

        70% {
            opacity: 1;
            transform: translateY(-4px) scale(1.015);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .contact-button {
        animation: softPulse 2.4s ease-in-out infinite;
    }

    @keyframes softPulse {
        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 0 0 rgba(255,255,255,0);
        }

        50% {
            transform: scale(1.025);
            box-shadow: 0 12px 30px rgba(0,0,0,.16);
        }
    }
}

/* Poštovanje podešavanja korisnika */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}/* =========================
   REVEAL ANIMATIONS
========================= */

.reveal {
    opacity: 0;
    transform: translateY(46px) scale(0.97);
    filter: blur(7px);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(.2, .75, .2, 1),
        filter 0.85s ease;
    will-change: opacity, transform, filter;
}

.reveal-left {
    transform: translateX(-52px) scale(0.97);
}

.reveal-right {
    transform: translateX(52px) scale(0.97);
}

.reveal-zoom {
    transform: scale(0.88);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

/* HERO LOAD ANIMATION */

.hero-eyebrow {
    animation: heroFadeUp 0.8s ease 0.12s both;
}

.hero h1 span:first-child {
    animation: heroFadeUp 0.9s ease 0.25s both;
}

.hero h1 span:last-child {
    animation: heroFadeUp 0.9s ease 0.38s both;
}

.hero-text {
    animation: heroFadeUp 0.9s ease 0.52s both;
}

.hero-buttons {
    animation: heroFadeUp 0.9s ease 0.66s both;
}

.hero-details {
    animation: heroFadeUp 0.9s ease 0.8s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
        filter: blur(7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* MOBILE POP */

@media (max-width: 760px) {
    .reveal {
        transform: translateY(52px) scale(0.94);
        transition-duration: 0.72s;
    }

    .reveal-left {
        transform: translateX(-36px) scale(0.95);
    }

    .reveal-right {
        transform: translateX(36px) scale(0.95);
    }

    .reveal-zoom {
        transform: scale(0.84);
    }

    .reveal.visible {
        transform: translate(0, 0) scale(1);
    }

    .contact-button {
        animation: softPulse 2.3s ease-in-out infinite;
    }
}

@keyframes softPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    50% {
        transform: scale(1.025);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}/* =========================
   MOBILE HEADER & MENU
========================= */

@media (max-width: 950px) {
    .header {
        padding: 14px 0;
    }

    .header-inner {
        gap: 16px;
    }

    .logo-main {
        font-size: 27px;
    }

    .logo-sub {
        font-size: 8px;
        letter-spacing: 2.4px;
    }

    .nav {
        position: fixed;
        inset: 0;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 24px;
        padding: 110px 8% 60px;
        background: rgba(247, 245, 242, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-18px);
        transition:
            opacity 0.35s ease,
            visibility 0.35s ease,
            transform 0.35s ease;
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        font-family: "Cormorant Garamond", serif;
        font-size: 40px;
        line-height: 1;
        color: var(--green-dark);
    }

    .nav-link::after {
        bottom: -5px;
    }

    .header-actions {
        gap: 12px;
    }

    .header-cta {
        display: none;
    }

    .language-switch {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .menu-toggle {
        position: relative;
        z-index: 1001;
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 34px, 1200px);
    }

    .header {
        padding: 12px 0;
    }

    .header.scrolled {
        padding: 10px 0;
    }

    .logo-main {
        font-size: 25px;
    }

    .logo-sub {
        margin-top: 4px;
        font-size: 7px;
        letter-spacing: 2.2px;
    }

    .language-switch {
        gap: 4px;
    }

    .language-btn,
    .language-switch span {
        font-size: 10px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .menu-toggle span {
        width: 22px;
    }

    .nav {
        gap: 22px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .nav-link {
        font-size: 38px;
    }
}/* =========================
   MOBILE ACTIVE NAV LINK
========================= */

@media (max-width: 950px) {
    .nav-link {
        width: fit-content;
        position: relative;
        padding-bottom: 8px;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: var(--green);
        transition: width 0.35s ease;
    }

    .nav-link.active::after {
        width: 100%;
    }
}/* =========================
   PREMIUM LOADER
========================= */

#loader{
    position:fixed;
    inset:0;
    z-index:99999;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#2f3a33;

    transition:opacity .8s ease,
               visibility .8s ease;
}

#loader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-content{
    text-align:center;
}

.loader-content h1{

    font-family:"Cormorant Garamond",serif;

    font-size:62px;

    color:white;

    letter-spacing:.5px;

    margin-bottom:10px;

    opacity:0;

    transform:translateY(25px);

    animation:loaderText .8s ease forwards;

}

.loader-content span{

    display:block;

    color:var(--gold);

    font-size:11px;

    letter-spacing:4px;

    margin-bottom:35px;

    opacity:0;

    animation:loaderText .8s ease .2s forwards;

}

.loader-line{

    width:0;

    height:2px;

    margin:auto;

    background:var(--gold);

    animation:loaderLine 1s ease .45s forwards;

}

@keyframes loaderText{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes loaderLine{

    to{

        width:170px;

    }

}/* =========================
   MOBILE GLASS CARD REVEAL
========================= */

@media (max-width: 760px) {
    .service-card,
    .promise-card,
    .contact-card {
        position: relative;
        overflow: hidden;

        background: rgba(255, 255, 255, 0.58);
        border: 1px solid rgba(255, 255, 255, 0.48);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        box-shadow:
            0 18px 45px rgba(47, 58, 51, 0.10),
            inset 0 1px 0 rgba(255, 255, 255, 0.65);

        opacity: 0;
        transform: translateY(52px) scale(0.94);
        filter: blur(10px);

        transition:
            opacity 0.8s ease,
            transform 0.8s cubic-bezier(.2, .8, .2, 1),
            filter 0.8s ease,
            box-shadow 0.35s ease;
    }

    .service-card.visible,
    .promise-card.visible,
    .contact-card.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }

    .service-card::before,
    .promise-card::before,
    .contact-card::before {
        content: "";
        position: absolute;
        top: -60%;
        left: -45%;
        width: 55%;
        height: 220%;

        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.42),
            transparent
        );

        transform: rotate(18deg) translateX(-180%);
        transition: transform 1s ease;
        pointer-events: none;
    }

    .service-card.visible::before,
    .promise-card.visible::before,
    .contact-card.visible::before {
        transform: rotate(18deg) translateX(420%);
    }

    .service-card:active,
    .promise-card:active,
    .contact-card:active {
        transform: scale(0.985);
        box-shadow:
            0 10px 28px rgba(47, 58, 51, 0.14),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }
}