/* ===========================
   FONTOVI I GLOBALNE PROMENLJIVE
   =========================== */

@font-face {
    font-family: HeadingFont;
    src: url("../fonts/Jost-Bold.ttf");
}

@font-face {
    font-family: TextFont;
    src: url("../fonts/Jost-Regular.ttf");
}

@font-face {
    font-family: HeroFont;
    src: url("../fonts/Jost-Light.ttf");
}

@font-face {
    font-family: LightFont;
    src: url("../fonts/Jost-ExtraLight.ttf");
}

:root {
    --primary-color-dark-btn: #a47a3b;
    --primary-color-btn: #c9a36b;
    --primary-color: #ffffff;
    --secondary-color: #dbdbdb;
    --primary-shadow: rgba(0, 0, 0, 0.18);
}

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

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

html,
body {
    height: 100%;
}

body {
    font-family: TextFont, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111111;
    background-color: #ffffff;
    line-height: 1.5;
}

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

/* ===========================
   GLOBALNE KLASE
   =========================== */

.font-heading {
    font-family: HeadingFont, sans-serif;
}

.font-text {
    font-family: TextFont, sans-serif;
}

.font-hero {
    font-family: HeroFont, sans-serif;
}

.font-light {
    font-family: LightFont, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.display-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.space-around {
    justify-content: space-around;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* ===========================
   HEADER & HERO
   =========================== */

header {
    background-image: url("../img/home_page/HeroSlika.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    color: #ffffff;
}

#header-onama {
    background-image: url("../img/radovi_slike/background2.png");
}

#nasiradovi-header {
    background-image: url("../img/radovi_slike/background4.png");
}

#header-kontakt {
    background-image: url("../img/radovi_slike/background3.png");
}

#nav-wrapper #logo img {
    width: 100px;
}

.overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* ===========================
   NAVIGACIJA
   =========================== */

#nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    position: relative;
    z-index: 10;
}

#nav-links {
    margin: 80px 0;
}

#nav-links li {
    display: inline;
    margin-left: 15px;
    list-style-type: none;
}

#nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    position: relative;
    display: inline-block;
}

/* animirana linija ispod linka */
#nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease-in-out;
}

#nav-links li a:hover::after {
    transform: scaleX(1);
}

/* HAMBURGER */

#hamburger {
    display: none;
    width: 34px;
    height: 24px;
    margin-right: 5%;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 9999;
    transition: 0.4s ease;
}

#hamburger span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.4s cubic-bezier(.4, 0, .2, 1);
}

/* transformacija u X */
#hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

#hamburger.active span:nth-child(2) {
    opacity: 0;
}

#hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* APPLE GLASS MOBILE MENU (ako koristiš #mobile-nav u HTML-u) */

#mobile-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    background: rgba(20, 20, 20, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .45s cubic-bezier(.4, 0, .2, 1);
    z-index: 9998;
}

#mobile-nav.show {
    opacity: 1;
    visibility: visible;
}

#mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    transform: translateY(25px);
    opacity: 0;
    transition: .55s ease;
}

#mobile-nav.show ul {
    transform: translateY(0);
    opacity: 1;
}

#mobile-nav a {
    font-size: 30px;
    text-decoration: none;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: .5px;
    transition: .3s;
}

#mobile-nav a:hover {
    opacity: .5;
}

/* ===========================
   HERO TEKST
   =========================== */

#hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 120px auto;
}

#hero-section-wrapper h1 {
    font-size: 44px;
    margin-bottom: 20px;
    line-height: 60px;
    letter-spacing: 0.01px;
    text-transform: uppercase;
}

#hero-section-wrapper h2 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 32px;
}

/* ===========================
   GLAVNO DUGME (.btn-primary)
   =========================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color-btn), var(--primary-color-dark-btn));
    color: #ffffff;
    font-family: HeadingFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 25px var(--primary-shadow);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        filter 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 14px 30px var(--primary-shadow);
}

.btn-primary:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 6px 16px var(--primary-shadow);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* ===========================
   O NAMA (stara sekcija #about-us)
   =========================== */

#about-us {
    padding: 35px 0;
    background-color: #cab28e;
}

.about-us-wrapper .slika {
    width: 30%;
}

.about-us-wrapper .tekst h2 {
    font-size: 32px;
}

.about-us-wrapper .tekst p {
    margin-bottom: 25px;
}

.about-us-wrapper .slika img {
    width: 100%;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.125));
}

/* ===========================
   NASE USLUGE – KARTICE
   =========================== */

.section-heading {
    text-align: center;
    margin: 100px 0 40px;
    font-size: 32px;
}

.our-services-wrapper {
    padding: 15px;
}

.service-card {
    position: relative;
    max-width: 380px;
    padding: 22px 22px 20px;
    margin-bottom: 25px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(201, 163, 107, 0.30), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.07), transparent 55%),
        #111217;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    color: #f5f5f5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(201, 163, 107, 0.6), transparent 55%);
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.75);
    border-color: rgba(201, 163, 107, 0.7);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* blur overlay za premium look */
.service-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1),
            rgba(17, 18, 23, 0.95));
}

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

.service-card__content {
    padding: 22px;
}

.service-card__title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.service-card__subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(235, 235, 235, 0.82);
    margin-bottom: 16px;
}

.service-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.service-card__list li {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(235, 235, 235, 0.9);
    margin-bottom: 6px;
}

.service-card__list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #c9a36b;
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 4px;
}

.service-card__tag {
    font-size: 11px;
    color: rgba(230, 230, 230, 0.85);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.service-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    background: linear-gradient(135deg, #c9a36b, #a47a3b);
    color: #111217;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
    background: linear-gradient(135deg, #d4b47f, #b28342);
}

.service-card__btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.7);
}

/* ===========================
   ZAŠTO MI – BENEFIT KARTICE
   =========================== */

#why-us {
    margin-bottom: 50px;
}

.benefit-card {
    border: 2px solid var(--primary-color-dark-btn);
    padding: 25px 35px;
    border-radius: 25px;
    width: 30%;
}

.ikonica-naslov-wrapper {
    display: inline;
}

.ikonica-naslov-wrapper img {
    width: 25%;
}

.benefit-card-text {
    margin-top: 15px;
}

.benefit-card-text p {
    margin-bottom: 30px;
}

.benefits-btn {
    text-decoration: none;
    color: #ffffff;
    background-color: var(--primary-color-btn);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid var(--primary-color-dark-btn);
    transition: 0.2s ease;
}

.benefits-btn:hover {
    background-color: #83612f;
    font-size: 17px;
}

/* ===========================
   WORK PROCESS SEKCIJA
   =========================== */

#work-process {
    padding: 60px 5%;
    background-color: #000000e4;
    color: #ffffff;
}

.work-process-basic {
    width: 40%;
}

.work-process-basic h2 {
    font-size: 35px;
    margin-bottom: 15px;
    color: var(--primary-color-btn);
}

.work-process-items {
    width: 60%;
}

.work-process-item {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    border-top: 1px solid rgb(212, 212, 212);
    padding: 25px;
}

.work-process-item .work-process-item-heading h3 {
    font-size: 64px;
    color: var(--primary-color-btn);
    margin-right: 10px;
}

/* ===========================
   CTA SEKCIJA
   =========================== */

.cta-section {
    padding: 60px 16px;
    color: var(--primary-color);
}

.cta-wrapper {
    background: rgba(0, 0, 0, 0.895);
    border-radius: 18px;
    box-shadow: 0 18px 40px var(--primary-shadow);
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cta-heading {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--secondary-color);
    max-width: 420px;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 260px;
}

.cta-contact-item {
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cta-label {
    font-weight: 600;
}

.cta-link {
    text-decoration: none;
    color: var(--primary-color);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.cta-link:hover {
    border-color: var(--primary-color-btn);
    opacity: 0.85;
}

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

.site-footer {
    background: #111111;
    color: #e5e5e5;
    padding: 50px 5% 20px;
    font-family: TextFont, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #c9a36b;
}

.footer-logo img {
    width: 150px;
}

.footer-col h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

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

.footer-col a:hover {
    color: #c9a36b;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    font-size: 14px;
    color: #999999;
}

/* ===========================
   FAQ SEKCIJA
   =========================== */

#faq-section {
    padding: 60px 5%;
    background-color: #f7f7f7;
}

#faq-section .section-heading {
    text-align: center;
    margin-bottom: 30px;
}

#faq-section .section-heading h2 {
    font-size: 28px;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: 10px;
    background-color: var(--primary-color-btn);
    box-shadow: #00000033 3px 4px 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #333333;
    transform: translate(-50%, -50%);
    transition: 0.25s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}

.faq-answer p {
    font-size: 15px;
    color: #000000;
    padding-bottom: 18px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 10px;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* ===========================
   STATISTIKA (PILL SEKCIJA)
   =========================== */

.stats-section {
    padding: 40px 16px;
    background-color: var(--primary-color);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-pill {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 32px;
    padding: 24px 40px;
    border-radius: 999px;
    background: linear-gradient(135deg,
            var(--primary-color-dark-btn),
            var(--primary-color-btn));
    box-shadow: 0 18px 40px var(--primary-shadow);
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-family: HeadingFont, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    margin-top: 4px;
    font-family: TextFont, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.9rem;
    color: #e0e0e0;
    opacity: 0.9;
}

/* ===========================
   NOVA O NAMA SEKCIJA (BACKGROUND)
   =========================== */

.about-section {
    position: relative;
    width: 100%;
    min-height: 480px;
    padding: 80px 20px;
    background-image: url('../img/radovi_slike/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(1px);
}

.about-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.about-title {
    font-family: HeadingFont, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-text {
    font-family: TextFont, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--secondary-color);
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
    min-width: 140px;
}

.about-stat-item .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color-btn);
}

.about-stat-item .label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--secondary-color);
}

/* ===========================
   SEKCIJA – IZLAZAK NA TEREN
   =========================== */

.field-visit-section {
    padding: 60px 20px;
    background: #f6f6f6;
}

.field-visit-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.field-visit-left {
    flex: 1.5;
}

.field-visit-left h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.field-visit-intro {
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.field-visit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.field-visit-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
}

.field-visit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--primary-color-btn);
    box-shadow: 0 0 0 2px rgba(201, 163, 107, 0.15);
}

.field-visit-card {
    flex: 1;
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.field-visit-badge {
    background: rgba(201, 163, 107, 0.12);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    color: #7b5a27;
    display: inline-block;
    margin-bottom: 18px;
}

.field-visit-amount {
    margin-bottom: 18px;
}

.amount-main {
    font-size: 36px;
    color: #222222;
}

.amount-sub {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #777777;
}

.field-visit-benefits p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.field-visit-footer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: #222222;
    font-size: 14px;
}

/* ===========================
   KONTAKT DETALJI
   =========================== */

#contact-details {
    padding: 80px 5%;
    background-color: #f7f7f7;
}

.contact-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Levi deo – info */

.contact-left {
    flex: 1.2;
}

.contact-title {
    font-size: 32px;
    margin-bottom: 14px;
}

.contact-subtitle {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 28px;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin-bottom: 28px;
}

.contact-item {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.contact-item-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888888;
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    text-decoration: none;
}

.contact-item-value:hover {
    color: var(--primary-color-dark-btn);
}

/* Desni deo – kartica / forma */

.contact-right {
    flex: 1;
}

.contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

/* suptilni gradient "glow" u uglu */

.contact-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at top right,
            rgba(201, 163, 107, 0.25),
            transparent 55%);
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
}

.contact-card-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(201, 163, 107, 0.12);
    color: #7b5a27;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-card-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-card-text {
    font-size: 14px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Forma */

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

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #444444;
}

.contact-form-group input,
.contact-form-group textarea {
    border-radius: 10px;
    border: 1px solid #dddddd;
    padding: 10px 12px;
    font-size: 14px;
    font-family: TextFont, sans-serif;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    background-color: #fafafa;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: var(--primary-color-btn);
    background-color: #ffffff;
    box-shadow: 0 0 0 1px rgba(201, 163, 107, 0.35);
}

.contact-form-btn {
    width: 100%;
    margin-top: 6px;
}

/* ===========================
   NAŠI RADOVI – GRID
   =========================== */

#nasiradovi-section {
    padding: 60px 0;
    background-color: #f7f7f7;
}

.nasiradovi-wrapper h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 42px;
}

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

/* Kartica rada */
.nasiradovi-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px var(--primary-shadow, rgba(0, 0, 0, 0.12));
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Omotač slike – izjednačavamo format */
.nasiradovi-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.nasiradovi-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* Hover efekat – malo premium */
.nasiradovi-card:hover .nasiradovi-image-wrapper img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.nasiradovi-caption {
    padding: 12px 16px 16px;
    font-size: 0.95rem;
    color: #444444;
}

/* ===========================
   RESPONSIVE – DO 900px
   =========================== */

@media (max-width: 900px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }

    .cta-heading {
        font-size: 24px;
    }

    .cta-subtitle {
        max-width: 100%;
    }

    .cta-contact {
        width: 100%;
    }

    .btn-primary {
        width: 60%;
        text-align: center;
        justify-content: center;
    }

    .field-visit-wrapper {
        flex-direction: column;
    }

    .stats-pill {
        border-radius: 32px;
        padding: 24px 24px;
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

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

/* ===========================
   RESPONSIVE – DO 768px
   =========================== */

@media (max-width: 768px) {
    .about-section {
        padding: 60px 16px;
        text-align: center;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-stats {
        gap: 24px;
    }

    #hero-section {
        margin: 0 auto;
        padding: 16% 25px;
        flex-direction: column;
        gap: 24px;
    }

    #hero-section-wrapper h1 {
        font-size: 32px;
        line-height: 42px;
    }

    #hero-section-wrapper h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    #faq-section {
        padding: 40px 5%;
    }

    .faq-question {
        font-size: 15px;
    }

    .about-us-wrapper {
        padding: 0 20px;
    }

    .about-us-wrapper .slika {
        display: none;
    }

    .service-card {
        margin: 0 auto 15px;
    }

    .benefits-wrapper {
        display: block;
    }

    .benefit-card {
        width: 80%;
        margin: 0 auto 15px;
    }

    .work-process-wraper {
        display: block;
    }

    .work-process-basic {
        width: 100%;
    }

    .work-process-items {
        margin-top: 15px;
        width: 100%;
    }

    .work-process-item {
        display: block;
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 25px;
    }

    .footer-col {
        text-align: center;
    }

    #contact-details {
        padding: 60px 5%;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .nasiradovi-grid {
        grid-template-columns: 1fr;
        margin: 25px;
    }

    /* Mobilni meni – koriste se #hamburger + #nav-links overlay */
    #hamburger {
        display: flex;
    }

    #nav-links {
        display: none;
        text-align: center;
        width: 100%;
        margin: 0;
        padding-top: 90px;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        inset: 0;
        height: 100vh;
        z-index: 99;
        flex-direction: column;
        gap: 25px;
    }

    #nav-links.show {
        display: flex;
    }

    #nav-links li {
        display: block;
        margin: 0;
    }

    #nav-links li a {
        font-size: 22px;
    }

    #nav-wrapper {
        justify-content: space-between;
    }
}

/* ===========================
   RESPONSIVE – DO 540px
   =========================== */

@media (max-width: 540px) {
    .stats-pill {
        flex-direction: column;
        border-radius: 24px;
        padding: 20px 18px;
        gap: 16px;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .stat-number {
        font-size: 1.6rem;
    }
}