@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #0b315d;
    --navy-2: #082846;
    --red: #e31e24;
    --text: #505760;
    --muted: #77808b;
    --line: #e9edf2;
    --soft: #f7f9fb;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(17, 37, 59, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--navy);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: relative;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid rgba(9, 49, 93, 0.06);
}

.header-inner {
    height: 104px;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 34px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: 185px;
    max-height: 82px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.main-nav a {
    position: relative;
    padding: 42px 0 34px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--navy);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav a.active {
    color: var(--red);
}


/* =========================================
   BUTTONS
========================================= */

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.22s ease;
}

.btn span {
    font-size: 18px;
}

.btn-primary {
    color: #ffffff;
    background: var(--red);
    border: 1px solid var(--red);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.12);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #c9191f;
}

.btn-outline {
    border: 1px solid #8fa2b4;
    color: var(--navy);
    background: #ffffff;
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}

.header-cta {
    padding-inline: 24px;
}


/* =========================================
   HERO
========================================= */

.hero {
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 42%,
            #fafbfd 52%,
            #f8fbfd 100%
        );
}

.hero-grid {
    min-height: 680px;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: stretch;
}

.hero-copy {
    position: relative;
    z-index: 3;
    padding: 74px 55px 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 13px;
}

.eyebrow span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.hero h1 {
    margin: 25px 0 22px;
    font-size: 56px;
    line-height: 1.04;
    letter-spacing: -0.045em;
    max-width: 520px;
    color: var(--navy);
}

.hero h1 strong {
    display: block;
    color: var(--red);
    font-weight: 800;
}

.hero-copy > p {
    max-width: 505px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 34px;
}


/* =========================================
   HERO FEATURES / STATISTIKA
========================================= */

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 70px;
    width: 100%;
    max-width: 680px;
}

.feature {
    display: grid;

    /*
      1. red = ikonica
      2. red = naslov
      3. red = tekst
    */
    grid-template-rows: 48px 44px auto;

    align-items: start;

    padding: 0 22px;
    margin: 0;

    border-right: 1px solid var(--line);
}

.feature:first-child {
    padding-left: 0;
}

.feature:last-child {
    border-right: none;
    padding-right: 0;
}

.feature-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 0 8px 0;

    color: var(--red);

    line-height: 1;
}

.feature-icon i {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    line-height: 1;
}

.feature h3 {
    margin: 0;

    display: flex;
    align-items: flex-start;

    font-size: 11px;
    line-height: 1.25;

    font-weight: 800;
    text-transform: uppercase;

    color: var(--navy);
}

.feature p {
    margin: 0;

    font-size: 11px;
    line-height: 1.55;

    color: var(--muted);
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-media {
    position: relative;

    min-height: 680px;

    margin-right:
        calc(
            (100vw - min(1180px, calc(100vw - 48px))) / -2
        );

    overflow: hidden;

    border-bottom-left-radius: 110px;
}

.hero-media::before {
    content: "";

    position: absolute;
    z-index: 2;

    top: 0;
    bottom: 0;
    left: 0;

    width: 180px;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255, 255, 255, 0.96) 16%,
            rgba(255, 255, 255, 0.62) 48%,
            rgba(255, 255, 255, 0) 100%
        );

    pointer-events: none;
}

.hero-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /*
      Pomeramo kadar malo udesno
      da se kuća vidi prirodnije.
    */
    object-position: 58% center;

    display: block;
}


/* =========================================
   ABOUT PREVIEW
========================================= */

.about-preview {
    padding: 110px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 4.4;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.about-copy h2,
.section-heading h2 {
    margin: 14px 0 24px;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.about-copy h2 span,
.section-heading h2 span {
    color: var(--red);
}

.about-copy > p {
    max-width: 650px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.about-values article {
    padding-right: 12px;
}

.line-icon {
    font-size: 30px;
    color: var(--navy);
    margin-bottom: 13px;
}

.about-values h3 {
    font-size: 10px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.about-values p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    color: #ffffff;
    background: var(--red);
    padding: 15px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
}

.text-link:hover {
    background: #c9191f;
}


/* =========================================
   SERVICES
========================================= */

.services-preview {
    padding: 90px 0 95px;
    background: linear-gradient(#fbfcfd, #ffffff);
}

.section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.section-heading .eyebrow {
    justify-content: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 10px;

    box-shadow: 0 12px 34px rgba(19, 42, 69, 0.05);

    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-card > img {
    width: 100%;
    aspect-ratio: 4 / 2.7;
    object-fit: cover;
}

.service-card-body {
    position: relative;
    padding: 34px 22px 25px;
}

.service-icon {
    position: absolute;

    top: -25px;
    left: 20px;

    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--red);
    color: #ffffff;

    border: 4px solid #ffffff;

    font-size: 22px;
}

.service-card h3 {
    min-height: 48px;

    margin: 8px 0 12px;

    font-size: 15px;
    line-height: 1.35;

    text-transform: uppercase;
}

.service-card p {
    min-height: 92px;

    margin: 0 0 22px;

    color: var(--text);

    font-size: 12px;
    line-height: 1.65;
}

.service-card a {
    color: var(--red);

    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;

    display: flex;
    gap: 14px;
    align-items: center;
}


/* =========================================
   CTA
========================================= */

.home-cta {
    padding: 30px 0 95px;
}

.cta-box {
    display: grid;

    grid-template-columns: 86px 1fr auto;

    gap: 30px;

    align-items: center;

    padding: 34px 42px;

    border: 1px solid var(--line);
    border-radius: 16px;

    box-shadow: var(--shadow);

    background: #ffffff;
}

.cta-mark {
    width: 70px;
    height: 70px;

    border: 1px solid var(--red);
    border-radius: 50%;

    display: grid;
    place-items: center;

    color: var(--red);

    font-size: 35px;
}

.cta-box h2 {
    margin: 7px 0 5px;

    font-size: 27px;
    line-height: 1.2;
}

.cta-box p {
    margin: 0;

    color: var(--text);

    font-size: 13px;
}


/* =========================================================
   FOOTER - ZAJEDNIČKI ZA SVE STRANICE
========================================================= */

.site-footer {
    background: var(--navy-2);
    color: #ffffff;
    padding: 65px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns:
        minmax(220px, 1.05fr)
        minmax(130px, .65fr)
        minmax(260px, 1.25fr)
        minmax(220px, 1fr);
    gap: 55px;
    align-items: start;
    padding-bottom: 55px;
}

/* 1. LOGO + OPIS */
.footer-brand {
    width: 100%;
    max-width: 300px;
    text-align: left;
}

.footer-logo {
    display: inline-block;
    margin: 0 0 24px;
}

.footer-logo img {
    width: 185px;
    height: auto;
    max-height: none;
    object-fit: contain;
    filter: none;
}

.footer-brand p {
    margin: 0;
    max-width: 290px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
}

/* 2-4. KOLONE */
.footer-column {
    width: 100%;
    text-align: center;
}

.footer-column h3 {
    position: relative;
    margin: 0 0 28px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: center;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 27px;
    height: 2px;
    margin: 12px auto 0;
    background: var(--red);
}

.footer-nav,
.footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-nav a,
.footer-contact-list a,
.footer-contact-list span {
    display: block;
    max-width: 100%;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    overflow-wrap: anywhere;
}

.footer-nav a,
.footer-contact-list a {
    transition: color .2s ease, transform .2s ease;
}

.footer-nav a:hover,
.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-nav a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    min-height: 72px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-bottom p {
    width: 100%;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

/* Shared header/tablet improvements */
@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns: 180px 1fr auto;
        gap: 24px;
    }

    .main-nav {
        gap: 26px;
    }
}

/* Footer: tablet */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px 60px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

/* Footer: mobile */
@media (max-width: 760px) {
    .site-footer {
        padding-top: 48px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-brand {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 155px;
    margin: 0 auto;
}

.footer-brand p {
    max-width: 290px;
    margin: 0 auto;
    text-align: center;
}

    .footer-column {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer-column h3 {
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-column h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-nav,
    .footer-contact-list {
        align-items: center;
    }

    .footer-nav a,
    .footer-contact-list a,
    .footer-contact-list span {
        text-align: center;
    }

    .footer-bottom {
        min-height: 65px;
        padding: 20px 5px;
    }
}

/* =========================================================
   O NAMA PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.about-page-hero {
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 42%,
            #f8fafc 100%
        );
    overflow: hidden;
}

.about-page-hero-grid {
    min-height: 610px;

    display: grid;
    grid-template-columns: 43% 57%;

    align-items: stretch;
}


/* LEFT SIDE */

.about-page-hero-copy {
    position: relative;
    z-index: 5;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 55px 70px 0;
}


.about-page-hero-copy h1 {
    margin: 25px 0 30px;

    max-width: 530px;

    font-size: 55px;
    line-height: 1.08;

    letter-spacing: -0.045em;

    color: var(--navy);
}


.about-page-hero-copy h1 strong {
    display: block;

    color: var(--red);

    font-weight: 800;
}


.about-page-hero-copy p {
    margin: 0;

    max-width: 510px;

    font-size: 16px;
    line-height: 1.85;

    color: var(--text);
}


/* RIGHT IMAGE */

.about-page-hero-image {
    position: relative;

    min-height: 610px;

    margin-right:
        calc(
            (100vw - min(1180px, calc(100vw - 48px))) / -2
        );
}


/*
Soft white fade exactly like the mockup.
*/

.about-page-hero-image::before {
    content: "";

    position: absolute;

    z-index: 2;

    left: -2px;
    top: 0;
    bottom: 0;

    width: 180px;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255,255,255,.92) 22%,
            rgba(255,255,255,.48) 58%,
            rgba(255,255,255,0) 100%
        );

    pointer-events: none;
}


.about-page-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;
}


/* =========================================================
   OUR STORY
========================================================= */

.our-story {
    padding: 105px 0;
    background: #ffffff;
}


.our-story-grid {
    display: grid;

    grid-template-columns: 49% 51%;

    align-items: center;

    gap: 75px;
}


.our-story-image {
    overflow: hidden;
}


.our-story-image img {
    width: 100%;

    height: 560px;

    object-fit: cover;

    object-position: center;

    display: block;
}


.our-story-copy {
    padding-right: 20px;
}


.our-story-copy .eyebrow {
    margin-bottom: 22px;
}


.our-story-copy h2 {
    margin: 0 0 32px;

    max-width: 600px;

    font-size: 42px;
    line-height: 1.12;

    letter-spacing: -0.035em;

    color: var(--navy);
}


.our-story-copy p {
    margin: 0 0 20px;

    max-width: 600px;

    font-size: 14px;
    line-height: 1.85;

    color: var(--text);
}


/* =========================================================
   FACTS / DARK BLUE STRIP
========================================================= */

.about-facts {
    background: var(--navy-2);

    color: #ffffff;

    padding: 48px 0;
}


.about-facts-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    align-items: stretch;
}


.about-fact {
    position: relative;

    min-height: 100px;

    padding: 5px 18px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}


/* divider */

.about-fact:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;

    top: 10px;

    height: 80px;

    width: 1px;

    background:
        rgba(255,255,255,.35);
}


.about-fact strong {
    display: block;

    width: 100%;

    font-size: 22px;
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.025em;

    white-space: nowrap;

    text-align: center;
}


.about-fact:first-child strong {
    font-size: 22px;
    white-space: nowrap;
}


.about-fact span {
    display: block;

    width: 100%;

    margin-top: 10px;

    font-size: 12px;
    line-height: 1.5;

    color: rgba(255,255,255,.8);

    white-space: nowrap;

    text-align: center;
}


/* =========================================================
   WORK PROCESS
========================================================= */

.work-process {
    padding: 90px 0 100px;

    background: #ffffff;
}


.process-heading {
    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}


.process-heading .eyebrow {
    justify-content: center;
}


.process-heading h2 {
    margin: 20px 0 0;

    font-size: 34px;
    line-height: 1.25;

    letter-spacing: -0.035em;

    color: var(--navy);
}


.process-heading h2 strong {
    display: block;

    color: var(--red);
}


/* ITEMS */

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    max-width: 1050px;

    margin: 0 auto;
}


.process-item {
    position: relative;

    padding: 0 38px;

    text-align: center;
}


.process-item:not(:last-child) {
    border-right:
        1px solid var(--line);
}


.process-number {
    font-size: 64px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.05em;

    color: var(--navy);
}


.process-red-line {
    width: 32px;
    height: 2px;

    margin: 18px auto;

    background: var(--red);
}


.process-item h3 {
    margin: 0 0 12px;

    font-size: 14px;

    color: var(--navy);
}


.process-item p {
    margin: 0 auto;

    max-width: 190px;

    font-size: 12px;

    line-height: 1.7;

    color: var(--text);
}


/* =========================================================
   DETAIL IMAGE BANNER
========================================================= */

.detail-banner {
    position: relative;

    height: 330px;

    overflow: hidden;

    background: var(--navy);
}


.detail-banner > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /*
    Slightly lower position works better for this image.
    */

    object-position: center 58%;
}


/* dark overlay */

.detail-banner-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3,22,43,.80) 0%,
            rgba(3,22,43,.48) 32%,
            rgba(3,22,43,.10) 70%,
            rgba(3,22,43,.03) 100%
        );
}


.detail-banner-content {
    position: relative;

    z-index: 3;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;
}


.detail-line {
    width: 76px;
    height: 2px;

    margin-bottom: 25px;

    background: var(--red);
}


.detail-banner h2 {
    margin: 0;

    max-width: 500px;

    color: #ffffff;

    font-size: 46px;

    line-height: 1.08;

    letter-spacing: -0.04em;

    text-shadow:
        0 2px 15px rgba(0,0,0,.25);
}


/* =========================================================
   CTA
========================================================= */

.about-page-cta {
    padding: 68px 0;

    background: #ffffff;
}


.about-page-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    max-width: 1050px;
}


.about-page-cta h2 {
    margin: 0 0 8px;

    font-size: 36px;

    letter-spacing: -0.035em;

    color: var(--navy);
}


.about-page-cta p {
    margin: 0;

    font-size: 18px;

    color: var(--navy);
}


.about-page-cta .btn {
    min-width: 300px;

    min-height: 58px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .about-page-hero-grid {
        grid-template-columns: 1fr;

        min-height: auto;
    }


    .about-page-hero-copy {
        padding:
            70px 0 50px;
    }


    .about-page-hero-image {
        min-height: 520px;

        margin-right: 0;
    }


    .about-page-hero-image::before {
        display: none;
    }


    .about-page-hero-image img {
        border-radius: 20px;
    }


    .our-story-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .our-story-image img {
        height: 600px;
    }


    .about-facts-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .about-fact:nth-child(2)::after {
        display: none;
    }


    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 50px 0;
    }


    .process-item:nth-child(2) {
        border-right: 0;
    }


    .detail-banner {
        height: 300px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    /* HERO */

    .about-page-hero-copy {
        padding:
            55px 0 40px;
    }


    .about-page-hero-copy h1 {
        font-size: 43px;
    }


    .about-page-hero-copy p {
        font-size: 15px;
    }


    .about-page-hero-image {
        min-height: 380px;
    }


    /* STORY */

    .our-story {
        padding:
            75px 0;
    }


    .our-story-image img {
        height: 430px;
    }


    .our-story-copy h2 {
        font-size: 34px;
    }


    /* FACTS */

    .about-facts {
        padding:
            30px 0;
    }


    .about-facts-grid {
        grid-template-columns: 1fr;
    }


    .about-fact {
        padding:
            28px 10px;

        min-height: auto;
    }


    .about-fact:not(:last-child)::after {
        top: auto;

        right: 25%;

        bottom: 0;

        width: 50%;

        height: 1px;
    }


    /* PROCESS */

    .work-process {
        padding:
            70px 0;
    }


    .process-heading {
        margin-bottom:
            50px;
    }


    .process-heading h2 {
        font-size:
            29px;
    }


    .process-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .process-item {
        padding:
            35px 20px;
    }


    .process-item:not(:last-child) {
        border-right: 0;

        border-bottom:
            1px solid var(--line);
    }


    .process-number {
        font-size:
            56px;
    }


    /* BANNER */

    .detail-banner {
        height: 340px;
    }


    .detail-banner > img {
        object-position:
            58% center;
    }


    .detail-banner-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3,22,43,.82),
                rgba(3,22,43,.25)
            );
    }


    .detail-banner h2 {
        font-size:
            38px;
    }


    /* CTA */

    .about-page-cta {
        padding:
            55px 0;
    }


    .about-page-cta-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 28px;
    }


    .about-page-cta h2 {
        font-size:
            32px;
    }


    .about-page-cta p {
        font-size:
            16px;
    }


    .about-page-cta .btn {
        width: 100%;

        min-width: 0;
    }

}
/* =========================================================
   USLUGE PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.services-page-hero {
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #ffffff 42%,
            #f8fafc 100%
        );
}

.services-page-hero-grid {
    min-height: 620px;
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: stretch;
}

.services-page-hero-copy {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 60px 70px 0;
}

.services-page-hero-copy h1 {
    margin: 24px 0 30px;

    max-width: 560px;

    font-size: 53px;
    line-height: 1.08;

    letter-spacing: -0.045em;

    color: var(--navy);
}

.services-page-hero-copy h1 strong {
    display: block;
    margin-top: 15px;

    color: var(--red);
    font-weight: 800;
}

.services-page-hero-copy p {
    margin: 0;

    max-width: 520px;

    font-size: 16px;
    line-height: 1.85;

    color: var(--text);
}

.services-page-hero-image {
    position: relative;

    min-height: 620px;

    margin-right:
        calc(
            (100vw - min(1180px, calc(100vw - 48px))) / -2
        );

    overflow: hidden;
}

.services-page-hero-image::before {
    content: "";

    position: absolute;
    z-index: 2;

    left: 0;
    top: 0;
    bottom: 0;

    width: 190px;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255,255,255,.95) 20%,
            rgba(255,255,255,.5) 60%,
            rgba(255,255,255,0) 100%
        );

    pointer-events: none;
}

.services-page-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* =========================================================
   SERVICES INTRO
========================================================= */

.services-accordion-section {
    padding: 95px 0 110px;
    background: #ffffff;
}

.services-main-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.services-main-heading .eyebrow {
    justify-content: center;
}

.services-main-heading h2 {
    margin: 18px 0 10px;

    font-size: 38px;
    line-height: 1.2;

    letter-spacing: -0.035em;

    color: var(--navy);
}

.services-main-heading p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: var(--text);
}


/* =========================================================
   ACCORDION WRAPPER
========================================================= */

.services-accordion {
    display: flex;
    flex-direction: column;

    gap: 14px;

    max-width: 1120px;
    margin: 0 auto;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-accordion-item {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(12, 43, 77, 0.045);

    scroll-margin-top: 30px;

    transition:
        box-shadow .25s ease,
        transform .25s ease;
}

.service-accordion-item:hover {
    box-shadow:
        0 16px 45px rgba(12, 43, 77, 0.075);
}

.service-accordion-content {
    min-width: 0;
}


/* =========================================================
   IMAGE
========================================================= */

.service-accordion-image {
    position: relative;

    min-height: 150px;

    overflow: hidden;

    background: #f4f6f8;
}

.service-accordion-image img {
    width: 100%;
    height: 100%;

    min-height: 150px;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .35s ease;
}

.service-accordion-item:hover
.service-accordion-image img {
    transform: scale(1.015);
}


/* =========================================================
   ACCORDION HEADER
========================================================= */

.service-accordion-header {
    width: 100%;

    min-height: 150px;

    padding: 26px 34px;

    display: grid;

    /*
      broj | naslov | strelica
    */
    grid-template-columns: 82px minmax(0, 1fr) 34px;

    gap: 18px;

    align-items: start;

    border: 0;

    background: #ffffff;

    text-align: left;

    cursor: pointer;

    color: var(--navy);

    font-family: inherit;
}

.service-accordion-header:hover {
    background: #fcfdfe;
}


/* =========================================================
   NUMBER
========================================================= */

.service-number {
    display: block;

    margin: 0;
    padding: 0;

    font-size: 36px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -0.04em;

    color: var(--red);
}


/* =========================================================
   TITLE WRAPPER
========================================================= */

.service-title-wrap {
    min-width: 0;

    display: grid;

    /*
      naslov ima rezervisanu visinu,
      opis uvek počinje sa iste visine
    */
    grid-template-rows: 52px auto;

    align-items: start;

    gap: 7px;
}

.service-title-wrap strong {
    margin: 0;

    display: flex;
    align-items: flex-start;

    font-size: 21px;
    line-height: 1.25;

    font-weight: 800;

    letter-spacing: -0.02em;

    color: var(--navy);
}

.service-title-wrap small {
    margin: 0;

    display: block;

    font-size: 12px;
    line-height: 1.55;

    font-weight: 500;

    color: var(--text);
}


/* =========================================================
   ARROW
========================================================= */

.accordion-arrow {
    justify-self: end;
    align-self: start;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    margin: 0;

    color: var(--navy);

    font-size: 24px;
    line-height: 1;

    font-weight: 500;

    transition:
        color .2s ease,
        transform .2s ease;
}

.service-accordion-item.active
.accordion-arrow {
    color: var(--red);
}


/* =========================================================
   ACCORDION BODY
========================================================= */

.service-accordion-body {
    display: none;

    padding:
        0 34px 38px;
}

.service-accordion-item.active
.service-accordion-body {
    display: block;
}


/* =========================================================
   ACTIVE CARD
========================================================= */

.service-accordion-item.active {
    box-shadow:
        0 22px 60px rgba(12, 43, 77, 0.075);
}

.service-accordion-item.active
.service-accordion-image img {
    min-height: 430px;
}


/* =========================================================
   SERVICE INTRO
========================================================= */

.service-intro {
    max-width: 820px;

    margin:
        0 0 34px;

    font-size: 14px;
    line-height: 1.85;

    color: var(--text);
}


/* =========================================================
   DETAIL GRID
========================================================= */

.service-detail-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 0;

    padding:
        30px 0;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);

    align-items: stretch;
}


/* svaka kolona */

.service-detail-grid > div {
    min-width: 0;

    display: grid;

    /*
      IKONICA
      NASLOV - ista visina kod svih
      TEKST
    */
    grid-template-rows:
        28px
        58px
        auto;

    align-content: start;

    padding:
        0 28px;

    border-right:
        1px solid var(--line);
}


.service-detail-grid > div:first-child {
    padding-left: 0;
}


.service-detail-grid > div:last-child {
    padding-right: 0;

    border-right: none;
}


/* =========================================================
   ICON
========================================================= */

.service-detail-grid h3 {
    position: relative;

    margin: 0;

    padding: 0;

    /*
      naslov ide u DRUGI grid red.
      ::before ostaje u prvom vizuelnom redu
      preko position:absolute
    */

    font-size: 13px;
    line-height: 1.35;

    font-weight: 800;

    color: var(--navy);

    display: flex;
    align-items: flex-start;

    grid-row: 2;
}


/*
Pošto h3 ide u drugi red,
ikonicu pozicioniramo iznad naslova.
*/

.service-detail-grid h3::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: -28px;

    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    border:
        1px solid var(--red);

    border-radius: 50%;

    color: var(--red);

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    background: #ffffff;
}


/* DETAIL TEXT */

.service-detail-grid p {
    margin: 0;

    font-size: 11px;
    line-height: 1.75;

    color: var(--text);

    grid-row: 3;
}


/* =========================================================
   CLOSING
========================================================= */

.service-closing {
    margin:
        26px 0 0;

    max-width: 820px;

    font-size: 13px;
    line-height: 1.8;

    color: var(--text);
}


/* =========================================================
   VALUES STRIP
========================================================= */

.services-values {
    padding: 55px 0;

    background: var(--navy-2);

    color: #ffffff;
}

.services-values-grid {
    display: grid;

    grid-template-columns:
        1.6fr repeat(4, 1fr);

    align-items: center;
}

.services-values-lead {
    padding-right: 40px;
}

.services-values-lead .detail-line {
    width: 50px;
    height: 2px;

    background: var(--red);

    margin-bottom: 18px;
}

.services-values-lead h2 {
    margin: 0 0 10px;

    font-size: 25px;
    line-height: 1.25;

    color: #ffffff;
}

.services-values-lead p {
    margin: 0;

    font-size: 18px;
    line-height: 1.5;

    color:
        rgba(255,255,255,.9);
}

.services-value {
    min-height: 100px;

    padding: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-left:
        1px solid rgba(255,255,255,.25);
}

.services-value strong {
    max-width: 130px;

    font-size: 13px;
    line-height: 1.5;

    text-transform: uppercase;

    color: #ffffff;
}


/* =========================================================
   CTA
========================================================= */

.services-page-cta {
    padding: 70px 0;

    background: #ffffff;
}

.services-page-cta-inner {
    max-width: 1050px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.services-page-cta h2 {
    margin: 0 0 8px;

    font-size: 36px;

    letter-spacing: -0.035em;

    color: var(--navy);
}

.services-page-cta p {
    margin: 0;

    font-size: 18px;

    color: var(--navy);
}

.services-page-cta .btn {
    min-width: 300px;

    min-height: 58px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .services-page-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .services-page-hero-copy {
        padding:
            70px 0 50px;
    }

    .services-page-hero-image {
        margin-right: 0;
        min-height: 500px;
    }

    .services-page-hero-image::before {
        display: none;
    }

    .services-page-hero-image img {
        border-radius: 20px;
    }


    /* CARD */

    .service-accordion-item {
        grid-template-columns:
            240px minmax(0, 1fr);
    }


    .service-accordion-header {
        grid-template-columns:
            68px minmax(0, 1fr) 30px;

        padding:
            25px 28px;
    }


    .service-number {
        font-size:
            32px;
    }


    .service-title-wrap {
        grid-template-rows:
            48px auto;
    }


    .service-title-wrap strong {
        font-size:
            18px;
    }


    /* 2 x 2 DETAIL GRID */

    .service-detail-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        row-gap: 32px;
    }


    .service-detail-grid > div {
        grid-template-rows:
            28px
            52px
            auto;

        padding:
            0 28px;
    }


    .service-detail-grid > div:nth-child(2) {
        border-right: none;
    }


    .service-detail-grid > div:nth-child(3) {
        padding-left: 0;
    }


    .service-detail-grid > div:nth-child(n+3) {
        padding-top: 8px;
    }


    .services-values-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .services-values-lead {
        grid-column:
            1 / -1;

        margin-bottom:
            25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    /* HERO */

    .services-page-hero-copy {
        padding:
            55px 0 45px;
    }

    .services-page-hero-copy h1 {
        font-size:
            42px;
    }

    .services-page-hero-copy p {
        font-size:
            15px;
    }

    .services-page-hero-image {
        min-height:
            360px;
    }


    /* SECTION */

    .services-accordion-section {
        padding:
            70px 0;
    }

    .services-main-heading {
        margin-bottom:
            40px;
    }

    .services-main-heading h2 {
        font-size:
            32px;
    }


    /* CARD */

    .service-accordion-item {
        display: block;

        border-radius:
            9px;
    }


    /* IMAGE */

    .service-accordion-image {
        width: 100%;

        height: 230px;

        min-height: 0;
    }

    .service-accordion-image img {
        width: 100%;

        height: 230px;

        min-height: 0;

        object-fit: cover;
        object-position: center;
    }


    .service-accordion-item.active
    .service-accordion-image img {
        height: 270px;

        min-height: 0;
    }


    /* HEADER - važna izmena */

    .service-accordion-header {
        min-height: 0;

        padding:
            24px 22px;

        /*
        Na mobilnom broj i naslov NE SMEJU
        da se preklapaju.
        */
        grid-template-columns:
            54px minmax(0, 1fr) 24px;

        gap:
            14px;

        align-items:
            start;
    }


    .service-number {
        font-size:
            28px;

        line-height:
            1;
    }


    .service-title-wrap {
        /*
        Nema fiksnog reda naslova na mobilnom.
        Naslov može normalno da pređe u 2 reda.
        */
        display: flex;

        flex-direction: column;

        gap: 8px;
    }


    .service-title-wrap strong {
        font-size:
            17px;

        line-height:
            1.25;
    }


    .service-title-wrap small {
        font-size:
            12px;

        line-height:
            1.6;
    }


    .accordion-arrow {
        width:
            24px;

        height:
            24px;

        font-size:
            21px;
    }


    /* BODY */

    .service-accordion-body {
        padding:
            0 22px 32px;
    }


    .service-intro {
        margin-bottom:
            28px;

        font-size:
            14px;

        line-height:
            1.85;
    }


    /* DETAIL GRID MOBILE */

    .service-detail-grid {
        display: grid;

        grid-template-columns:
            1fr;

        gap: 0;

        padding:
            8px 0 0;

        border-bottom:
            none;
    }


    .service-detail-grid > div,
    .service-detail-grid > div:first-child,
    .service-detail-grid > div:last-child,
    .service-detail-grid > div:nth-child(3) {
        width: 100%;

        /*
        Na mobilnom svaki element ima:
        ikonicu -> naslov -> tekst
        */
        display: grid;

        grid-template-rows:
            30px
            auto
            auto;

        padding:
            25px 0;

        border-right:
            none;

        border-bottom:
            1px solid var(--line);
    }


    .service-detail-grid > div:last-child {
        border-bottom:
            none;
    }


    .service-detail-grid h3 {
        grid-row:
            2;

        margin:
            0 0 10px;

        min-height:
            auto;

        font-size:
            14px;

        line-height:
            1.35;
    }


    .service-detail-grid h3::before {
        top:
            -30px;

        width:
            21px;

        height:
            21px;
    }


    .service-detail-grid p {
        grid-row:
            3;

        margin:
            0;

        font-size:
            13px;

        line-height:
            1.75;
    }


    .service-closing {
        margin-top:
            25px;

        font-size:
            13px;
    }


    /* VALUES */

    .services-values {
        padding:
            45px 0;
    }

    .services-values-grid {
        grid-template-columns:
            1fr;
    }

    .services-values-lead {
        margin-bottom:
            25px;

        padding-right:
            0;
    }

    .services-value {
        min-height:
            80px;

        border-left:
            0;

        border-top:
            1px solid rgba(255,255,255,.2);
    }


    /* CTA */

    .services-page-cta {
        padding:
            55px 0;
    }

    .services-page-cta-inner {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            28px;
    }

    .services-page-cta h2 {
        font-size:
            32px;
    }

    .services-page-cta p {
        font-size:
            16px;
    }

    .services-page-cta .btn {
        width:
            100%;

        min-width:
            0;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .service-accordion-header {
        grid-template-columns:
            48px minmax(0, 1fr) 22px;

        padding:
            22px 18px;

        gap:
            10px;
    }

    .service-number {
        font-size:
            25px;
    }

    .service-title-wrap strong {
        font-size:
            16px;
    }

    .service-title-wrap small {
        font-size:
            11px;
    }

    .service-accordion-body {
        padding:
            0 18px 28px;
    }

}
/* =========================================================
   PETROGRADNJA STIL
   KONTAKT.PHP
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.contact-hero {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.contact-hero-grid {
    min-height: 570px;

    display: grid;
    grid-template-columns: 45% 55%;

    align-items: stretch;
}


/* HERO LEVO */

.contact-hero-copy {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 70px 70px 0;
}

.contact-hero-copy .eyebrow {
    margin-bottom: 24px;
}

.contact-hero-copy h1 {
    margin: 0;

    max-width: 520px;

    font-size: 56px;
    line-height: 1.05;

    letter-spacing: -0.045em;

    font-weight: 800;

    color: var(--navy);
}

.contact-hero-copy h1 strong {
    display: block;

    color: var(--red);

    font-weight: 800;
}

.contact-hero-copy p {
    margin: 30px 0 0;

    max-width: 470px;

    font-size: 16px;
    line-height: 1.85;

    color: var(--text);
}


/* HERO DESNO */

.contact-hero-image {
    position: relative;

    min-height: 570px;

    overflow: hidden;

    margin-right:
        calc(
            (100vw - min(1180px, calc(100vw - 48px))) / -2
        );
}


/* BELI FADE */

.contact-hero-image::before {
    content: "";

    position: absolute;
    z-index: 2;

    top: 0;
    bottom: 0;
    left: 0;

    width: 190px;

    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            rgba(255,255,255,.96) 20%,
            rgba(255,255,255,.67) 50%,
            rgba(255,255,255,.22) 78%,
            rgba(255,255,255,0) 100%
        );

    pointer-events: none;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* =========================================================
   KONTAKT KARTICE
   ========================================================= */

.contact-info-section {
    padding: 58px 0 65px;

    background: #ffffff;
}

.contact-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* KARTICA */

.contact-info-card {
    min-width: 0;

    min-height: 155px;

    display: flex;
    align-items: center;

    gap: 22px;

    padding: 28px 30px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 10px;

    box-shadow:
        0 12px 36px rgba(11,49,93,.055);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

a.contact-info-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(227,30,36,.18);

    box-shadow:
        0 18px 45px rgba(11,49,93,.09);
}


/* IKONICA */

.contact-info-icon {
    flex: 0 0 62px;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(227,30,36,.075);

    color: var(--red);

    font-size: 24px;
}


/* TEKST */

.contact-info-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-content h3 {
    margin: 0 0 8px;

    font-size: 14px;
    line-height: 1.3;

    font-weight: 800;

    color: var(--navy);
}


/*
   SVA TRI PODATKA ISTE VELIČINE
*/

.contact-info-value {
    margin: 0;

    font-size: 14px;
    line-height: 1.55;

    font-weight: 600;

    color: var(--navy);

    overflow-wrap: anywhere;
}

.contact-info-value.contact-red {
    color: var(--red);
}


/* =========================================================
   GLAVNA KONTAKT SEKCIJA
   FORMA LEVO + MAPA DESNO
   ========================================================= */

.contact-main-section {
    padding: 35px 0 100px;

    background: #ffffff;
}

.contact-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, .95fr);

    gap: 55px;

    align-items: stretch;
}


/* =========================================================
   LEVA KOLONA - FORMA
   ========================================================= */

.contact-form-column {
    min-width: 0;

    width: 100%;
}


/* NASLOV */

.contact-section-title {
    margin: 0 0 30px;
}

.contact-section-title h2 {
    margin: 0;

    font-size: 31px;
    line-height: 1.2;

    letter-spacing: -0.035em;

    color: var(--navy);
}

.contact-section-title > span {
    display: block;

    width: 30px;
    height: 3px;

    margin-top: 13px;

    background: var(--red);
}


/* =========================================================
   FORM MESSAGE
   ========================================================= */

.form-message {
    margin-bottom: 20px;

    padding: 14px 18px;

    border-radius: 6px;

    font-size: 13px;
    line-height: 1.6;
}

.form-message.success {
    color: #217243;

    background: #effaf3;

    border: 1px solid #bee5ca;
}

.form-message.error {
    color: #a91c22;

    background: #fff2f2;

    border: 1px solid #efc3c5;
}


/* =========================================================
   FORMA
   ========================================================= */

.contact-form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


/* PRVI RED */

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


/* FIELD */

.form-field {
    position: relative;

    width: 100%;
}

.form-field i {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    color: #9ba8b6;

    font-size: 14px;

    pointer-events: none;
}


/* INPUT */

.form-field input {
    width: 100%;
    height: 58px;

    padding:
        0 18px 0 48px;

    border:
        1px solid #dce3ea;

    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: var(--navy);

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


/* TEXTAREA */

.textarea-field i {
    top: 21px;

    transform: none;
}

.form-field textarea {
    width: 100%;

    min-height: 185px;

    padding:
        18px 18px 18px 48px;

    border:
        1px solid #dce3ea;

    border-radius: 7px;

    outline: none;

    resize: vertical;

    background: #ffffff;

    color: var(--navy);

    font-family: inherit;

    font-size: 13px;
    line-height: 1.7;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


/* PLACEHOLDER */

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #929eaa;

    opacity: 1;
}


/* FOCUS */

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--red);

    box-shadow:
        0 0 0 3px rgba(227,30,36,.06);
}


/* =========================================================
   CHECKBOX
   ========================================================= */

.privacy-check {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 4px 0 4px;

    cursor: pointer;
}

.privacy-check input {
    flex: 0 0 16px;

    width: 16px;
    height: 16px;

    margin: 2px 0 0;

    accent-color: var(--red);
}

.privacy-check span {
    font-size: 11px;
    line-height: 1.55;

    color: var(--text);
}


/* =========================================================
   SUBMIT
   ========================================================= */

.form-submit {
    align-self: flex-start;

    margin-top: 4px;

    border: none;

    cursor: pointer;
}


/* =========================================================
   DESNA KOLONA - MAPA
   ========================================================= */

.contact-map-column {
    min-width: 0;

    width: 100%;

    display: flex;
}


/* MAP WRAPPER */

.map-wrapper {
    position: relative;

    width: 100%;

    min-height: 520px;

    overflow: hidden;

    border-radius: 10px;

    border: 1px solid var(--line);

    background: #edf1f4;

    box-shadow:
        0 14px 40px rgba(11,49,93,.075);
}


/* IFRAME */

.map-wrapper iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    display: block;
}


/* =========================================================
   MAP INFO CARD
   ========================================================= */

.map-info-card {
    position: absolute;

    z-index: 5;

    left: 22px;
    bottom: 22px;

    width: 235px;

    padding: 23px;

    background:
        rgba(255,255,255,.97);

    border-radius: 8px;

    box-shadow:
        0 14px 38px rgba(11,49,93,.14);

    backdrop-filter: blur(8px);
}

.map-info-card h3 {
    margin: 0 0 9px;

    font-size: 17px;

    color: var(--navy);
}

.map-info-card p {
    margin: 0 0 18px;

    font-size: 12px;
    line-height: 1.6;

    color: var(--text);
}

.map-info-card a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--red);

    font-size: 11px;
    font-weight: 800;
}

.map-info-card a:hover {
    text-decoration: underline;
}


/* =========================================================
   DONJI CTA
   ========================================================= */

.contact-bottom-cta {
    padding: 0;

    background:
        linear-gradient(
            115deg,
            #082846 0%,
            #0b315d 100%
        );

    color: #ffffff;

    border-bottom:
        1px solid rgba(255,255,255,.14);
}

.contact-bottom-inner {
    min-height: 170px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.contact-bottom-inner > div {
    position: relative;

    padding-top: 20px;
}

.contact-bottom-inner > div::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 30px;
    height: 3px;

    background: var(--red);
}

.contact-bottom-inner h2 {
    margin: 0 0 8px;

    font-size: 30px;
    line-height: 1.2;

    color: #ffffff;
}

.contact-bottom-inner p {
    margin: 0;

    max-width: 510px;

    font-size: 15px;
    line-height: 1.7;

    color:
        rgba(255,255,255,.84);
}

.contact-bottom-inner .btn {
    min-width: 295px;
}


/* =========================================================
   TABLET 1100
   ========================================================= */

@media (max-width: 1100px) {

    .contact-hero-grid {
        grid-template-columns:
            47% 53%;
    }

    .contact-hero-copy {
        padding-right: 40px;
    }

    .contact-hero-copy h1 {
        font-size: 48px;
    }


    /* KARTICE */

    .contact-info-grid {
        gap: 16px;
    }

    .contact-info-card {
        padding: 25px 20px;

        gap: 16px;
    }

    .contact-info-icon {
        flex-basis: 55px;

        width: 55px;
        height: 55px;

        font-size: 21px;
    }

    .contact-info-value {
        font-size: 12px;
    }


    /* MAIN */

    .contact-main-grid {
        gap: 35px;
    }

}


/* =========================================================
   TABLET 900
   ========================================================= */

@media (max-width: 900px) {

    /* HERO */

    .contact-hero-grid {
        display: block;

        min-height: auto;
    }

    .contact-hero-copy {
        padding: 65px 0 50px;
    }

    .contact-hero-copy h1 {
        max-width: 600px;

        font-size: 50px;
    }

    .contact-hero-image {
        min-height: 460px;

        margin-right: 0;

        border-radius: 14px;
    }

    .contact-hero-image::before {
        display: none;
    }


    /* CONTACT CARDS */

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: 110px;

        padding: 24px 28px;
    }


    /* FORMA + MAPA */

    .contact-main-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .map-wrapper {
        min-height: 480px;
    }


    /* CTA */

    .contact-bottom-inner {
        min-height: auto;

        padding: 45px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

}


/* =========================================================
   MOBILE 760
   ========================================================= */

@media (max-width: 760px) {

    /* HERO */

    .contact-hero-copy {
        padding: 52px 0 38px;
    }

    .contact-hero-copy .eyebrow {
        margin-bottom: 18px;
    }

    .contact-hero-copy h1 {
        font-size: 41px;

        line-height: 1.08;
    }

    .contact-hero-copy p {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.75;
    }

    .contact-hero-image {
        min-height: 340px;

        border-radius: 10px;
    }


    /* KARTICE */

    .contact-info-section {
        padding: 38px 0 38px;
    }

    .contact-info-grid {
        gap: 13px;
    }

    .contact-info-card {
        min-height: 105px;

        padding: 20px;

        gap: 17px;
    }

    .contact-info-icon {
        flex: 0 0 52px;

        width: 52px;
        height: 52px;

        font-size: 20px;
    }

    .contact-info-content h3 {
        margin-bottom: 6px;

        font-size: 13px;
    }

    .contact-info-value {
        font-size: 13px;
    }


    /* MAIN */

    .contact-main-section {
        padding: 35px 0 70px;
    }

    .contact-main-grid {
        gap: 42px;
    }


    /* NASLOV */

    .contact-section-title {
        margin-bottom: 25px;
    }

    .contact-section-title h2 {
        font-size: 28px;
    }


    /* FORM */

    .form-row {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .form-field input {
        height: 55px;
    }

    .form-field textarea {
        min-height: 170px;
    }

    .form-submit {
        width: 100%;
    }


    /* MAP */

    .map-wrapper {
        min-height: 430px;
    }

    .map-info-card {
        left: 14px;
        right: 14px;
        bottom: 14px;

        width: auto;

        padding: 20px;
    }


    /* CTA */

    .contact-bottom-inner {
        padding: 40px 0;
    }

    .contact-bottom-inner h2 {
        font-size: 27px;
    }

    .contact-bottom-inner p {
        font-size: 14px;
    }

    .contact-bottom-inner .btn {
        width: 100%;

        min-width: 0;
    }

}


/* =========================================================
   SMALL MOBILE 480
   ========================================================= */

@media (max-width: 480px) {

    .contact-hero-copy h1 {
        font-size: 36px;
    }

    .contact-hero-image {
        min-height: 290px;
    }

    .contact-info-card {
        padding: 18px 16px;
    }

    .contact-info-icon {
        flex-basis: 48px;

        width: 48px;
        height: 48px;

        font-size: 18px;
    }

    .contact-info-value {
        font-size: 12px;
    }

    .contact-section-title h2 {
        font-size: 25px;
    }

    .map-wrapper {
        min-height: 390px;
    }

}
/* =========================================================
   FINAL MOBILE FIX
   PETROGRADNJA STIL
========================================================= */


/* =========================================================
   MOBILE MENU TOGGLE
========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid var(--line);
    border-radius: 7px;

    background: #ffffff;

    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 5px auto;

    background: var(--navy);

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .container {
        width: min(100% - 40px, 1180px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {


    /* =====================================================
       GLOBAL
    ===================================================== */

    html,
    body {
        width: 100%;
        max-width: 100%;

        overflow-x: hidden;
    }

    .container {
        width: calc(100% - 32px);

        margin-left: auto;
        margin-right: auto;
    }


    /* =====================================================
       HEADER
    ===================================================== */

    .site-header {
        position: relative;

        width: 100%;

        background: #ffffff;

        z-index: 999;
    }


    .header-inner {
        width: 100%;

        height: 78px;

        padding: 0;

        display: flex;

        align-items: center;
        justify-content: space-between;

        gap: 20px;
    }


    /* LOGO */

    .brand {
        display: flex;
        align-items: center;

        flex: 0 0 auto;
    }

    .brand img {
        width: 125px;

        height: auto;

        max-height: 62px;

        object-fit: contain;
    }


    /* DESKTOP CTA NE POSTOJI NA MOBILNOM */

    .header-cta {
        display: none !important;
    }


    /* HAMBURGER */

    .mobile-menu-toggle {
        display: block;

        flex: 0 0 46px;

        position: relative;

        z-index: 1002;
    }


    /* =====================================================
       MOBILE NAVIGATION
    ===================================================== */

    .main-nav {
        position: absolute;

        top: 78px;
        left: 0;
        right: 0;

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;
        justify-content: flex-start;

        gap: 0;

        padding: 8px 16px 18px;

        background: #ffffff;

        border-top: 1px solid var(--line);

        box-shadow:
            0 18px 35px rgba(11, 49, 93, .10);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;

        z-index: 1000;
    }


    .main-nav a {
        width: 100%;

        padding: 17px 5px;

        border-bottom:
            1px solid rgba(11, 49, 93, .07);

        font-size: 12px;

        line-height: 1;

        text-align: left;

        color: var(--navy);
    }


    .main-nav a:last-child {
        border-bottom: none;
    }


    .main-nav a::after {
        display: none;
    }


    .main-nav a.active {
        color: var(--red);
    }


    /* MENI OTVOREN */

    body.mobile-menu-open .main-nav {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    /* HAMBURGER → X */

    body.mobile-menu-open
    .mobile-menu-toggle span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    body.mobile-menu-open
    .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.mobile-menu-open
    .mobile-menu-toggle span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /* =====================================================
       POČETNA - HERO
    ===================================================== */

    .hero {
        width: 100%;

        overflow: hidden;

        background: #ffffff;
    }


    .hero-grid {
        min-height: 0;

        display: flex;

        flex-direction: column;
    }


    .hero-copy {
        width: 100%;

        padding: 55px 0 45px;

        order: 1;
    }


    .hero .eyebrow {
        margin-bottom: 18px;
    }


    .hero h1 {
        width: 100%;

        max-width: 100%;

        margin: 18px 0 22px;

        font-size: 43px;

        line-height: 1.05;

        letter-spacing: -.045em;
    }


    .hero h1 strong {
        display: block;
    }


    .hero-copy > p {
        width: 100%;

        max-width: 100%;

        font-size: 15px;

        line-height: 1.75;
    }


    .hero-actions {
        width: 100%;

        margin-top: 30px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }


    .hero-actions .btn {
        width: 100%;

        min-height: 52px;
    }


    /* HERO FEATURES */

    .hero-features {
        width: 100%;

        max-width: 100%;

        margin-top: 48px;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px 15px;
    }


    .feature,
    .feature:first-child,
    .feature:last-child {
        width: 100%;

        padding: 0;

        margin: 0;

        border: none;

        grid-template-rows:
            42px auto auto;
    }


    .feature-icon {
        width: 35px;
        height: 35px;

        font-size: 23px;
    }


    .feature h3 {
        min-height: 32px;

        font-size: 10px;
    }


    .feature p {
        font-size: 11px;
    }


    /* HERO IMAGE */

    .hero-media {
        width: 100%;

        min-height: 360px;

        margin: 0;

        border-radius: 0 0 28px 28px;

        order: 2;

        overflow: hidden;
    }


    .hero-media::before {
        display: none;
    }


    .hero-media img {
        width: 100%;
        height: 360px;

        object-fit: cover;

        object-position: center;

        border-radius: 0 0 28px 28px;
    }


    /* =====================================================
       POČETNA - O NAMA PREVIEW
    ===================================================== */

    .about-preview {
        padding: 75px 0;
    }


    .about-grid {
        display: flex;

        flex-direction: column;

        gap: 42px;
    }


    .about-image {
        width: 100%;
    }


    .about-image img {
        width: 100%;

        aspect-ratio: auto;

        height: 430px;

        border-radius: 16px;

        object-fit: cover;
    }


    .about-copy {
        width: 100%;
    }


    .about-copy h2,
    .section-heading h2 {
        font-size: 34px;
    }


    .about-values {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px 20px;
    }


    /* =====================================================
       POČETNA - SERVICES
    ===================================================== */

    .services-preview {
        padding: 70px 0;
    }


    .service-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .service-card {
        width: 100%;
    }


    .service-card > img {
        aspect-ratio: 16 / 9;
    }


    .service-card h3 {
        min-height: 0;
    }


    .service-card p {
        min-height: 0;
    }


    /* =====================================================
       POČETNA CTA
    ===================================================== */

    .home-cta {
        padding: 20px 0 70px;
    }


    .cta-box {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 22px;

        padding: 28px 22px;
    }


    .cta-mark {
        width: 58px;
        height: 58px;

        font-size: 27px;
    }


    .cta-box h2 {
        font-size: 25px;
    }


    .cta-box .btn {
        width: 100%;
    }


    /* =====================================================
       O NAMA HERO
    ===================================================== */

    .about-page-hero-grid {
        display: flex;

        flex-direction: column;

        min-height: 0;
    }


    .about-page-hero-copy {
        width: 100%;

        padding: 55px 0 40px;
    }


    .about-page-hero-copy h1 {
        max-width: 100%;

        font-size: 42px;
    }


    .about-page-hero-image {
        width: 100%;

        min-height: 350px;

        margin: 0;

        overflow: hidden;
    }


    .about-page-hero-image::before {
        display: none;
    }


    .about-page-hero-image img {
        width: 100%;
        height: 350px;

        object-fit: cover;

        border-radius: 14px;
    }


    /* =====================================================
       USLUGE HERO
    ===================================================== */

    .services-page-hero-grid {
        display: flex;

        flex-direction: column;

        min-height: 0;
    }


    .services-page-hero-copy {
        width: 100%;

        padding: 55px 0 40px;
    }


    .services-page-hero-copy h1 {
        max-width: 100%;

        font-size: 40px;
    }


    .services-page-hero-image {
        width: 100%;

        min-height: 350px;

        margin: 0;
    }


    .services-page-hero-image::before {
        display: none;
    }


    .services-page-hero-image img {
        width: 100%;
        height: 350px;

        object-fit: cover;

        border-radius: 14px;
    }


    /* =====================================================
       KONTAKT HERO
    ===================================================== */

    .contact-hero-grid {
        display: flex;

        flex-direction: column;

        min-height: 0;
    }


    .contact-hero-copy {
        width: 100%;

        padding: 55px 0 40px;
    }


    .contact-hero-copy h1 {
        width: 100%;

        max-width: 100%;

        font-size: 41px;
    }


    .contact-hero-image {
        width: 100%;

        min-height: 340px;

        margin: 0;

        overflow: hidden;
    }


    .contact-hero-image::before {
        display: none;
    }


    .contact-hero-image img {
        width: 100%;
        height: 340px;

        object-fit: cover;

        border-radius: 14px;
    }


    }

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 28px);
    }


    .brand img {
        width: 112px;
    }


    .header-inner {
        height: 72px;
    }


    .main-nav {
        top: 72px;
    }


    .hero h1 {
        font-size: 39px;
    }


    .hero-media,
    .hero-media img {
        height: 320px;
        min-height: 320px;
    }


    .hero-features {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .about-image img {
        height: 380px;
    }


    .about-page-hero-copy h1 {
        font-size: 38px;
    }


    .services-page-hero-copy h1 {
        font-size: 37px;
    }


    .contact-hero-copy h1 {
        font-size: 37px;
    }

}
/* =========================================================
   ZAŠTO PETROGRADNJA STIL
========================================================= */
/* =========================================================
   FINAL OVERRIDE - ZAŠTO PETROGRADNJA STIL
========================================================= */

.why-us {
    padding: 95px 0 100px;
    background: #ffffff;
}

.why-us-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.why-us-heading .eyebrow {
    justify-content: center;
    margin-bottom: 16px;
}

.why-us-heading h2 {
    margin: 0 0 16px;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -0.035em;
    color: var(--navy);
}

.why-us-heading p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
}


/* 4 KOLONE */

.why-us-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0;
    max-width: 1120px;
    margin: 0 auto;
    align-items: stretch;
}

.why-us-item {
    position: relative;
    padding: 0 34px;
    text-align: center;
}

.why-us-item:first-child {
    padding-left: 0;
}

.why-us-item:last-child {
    padding-right: 0;
}

.why-us-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 1px;
    height: 130px;
    background: var(--line);
}


/* IKONICE */

.why-us-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 34px;
    line-height: 1;
}


/* NASLOVI */

.why-us-item h3 {
    min-height: 42px;
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    color: var(--navy);
}


/* TEKST */

.why-us-item p {
    max-width: 210px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.7;
    color: var(--text);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .why-us {
        padding: 80px 0 85px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 50px 0;
    }

    .why-us-item {
        padding: 0 35px;
    }

    .why-us-item:nth-child(2)::after {
        display: none;
    }

    .why-us-item:nth-child(3)::after {
        display: block;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .why-us {
        padding: 70px 0 75px;
    }

    .why-us-heading {
        margin-bottom: 42px;
    }

    .why-us-heading h2 {
        font-size: 32px;
    }

    .why-us-heading p {
        font-size: 13px;
    }

    .why-us-grid {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .why-us-item,
    .why-us-item:first-child,
    .why-us-item:last-child {
        padding: 30px 0;
    }

    .why-us-item:not(:last-child)::after {
        top: auto;
        bottom: 0;
        left: 25%;
        right: auto;
        width: 50%;
        height: 1px;
    }

    .why-us-item h3 {
        min-height: 0;
    }
}
/* =========================================================
   WHY US -> CTA RAZDVAJANJE
========================================================= */

.why-us {
    padding-bottom: 90px;
}

.about-page-cta {
    position: relative;
    padding-top: 55px;
    padding-bottom: 55px;
}

/* Elegantna linija između sekcija */
.about-page-cta::before {
    content: "";
    position: absolute;

    top: 0;
    left: 50%;

    width: min(1180px, calc(100% - 48px));
    height: 1px;

    transform: translateX(-50%);

    background: #dfe5eb;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .why-us {
        padding-bottom: 65px;
    }

    .about-page-cta {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .about-page-cta::before {
        width: calc(100% - 32px);
    }
}