/* =================================================
   1. OSNOVNA PODEŠAVANJA I RESET
   ================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =================================================
   2. NAVIGACIJA I ZAGLAVLJE
   ================================================= */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover, 
.main-nav a.active {
    color: #ffb800;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #222;
    font-size: 1rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffb800;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
    z-index: 1002;
}

/* =================================================
   3. OPŠTI ELEMENTI I DUGMAD
   ================================================= */
.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 2.3rem;
    font-weight: 900;
    color: #111;
    line-height: 1.3;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: #ffb800;
    margin: 15px auto 0 auto;
}

.title-underline-left {
    width: 60px;
    height: 4px;
    background-color: #ffb800;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffb800;
    color: #111;
    padding: 14px 30px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e0a100;
    transform: translateY(-2px);
}

.btn-primary-orange {
    background: #ffb800;
    color: #111;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    transition: background 0.2s ease, transform 0.2s ease, gap 0.2s ease;
}

.btn-primary-orange:hover {
    background: #e5a600;
    transform: translateY(-2px);
    gap: 14px;
}

/* =================================================
   4. POČETNA STRANICA (HOME)
   ================================================= */
.hero-section {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: #ffb800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: #e0e0e0;
}

.stats-cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.stats-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.stats-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.stats-header p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-top: 15px;
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.stat-card {
    background: #ffffff;
    border: 2px solid #ffb800;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stat-icon {
    font-size: 1.8rem;
    color: #ffb800;
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
    margin: 0;
}

.stats-cta-button-wrapper {
    text-align: center;
    margin-top: 30px;
}

.services-section {
    padding: 60px 0;
    background: #fff;
}

.services-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 1.05rem;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
    padding: 0 20px;
}

.service-card {
    background: #ffffff;
    border: 2px solid #ffb800;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.15);
    background: #fffdf5;
}

.service-card .service-icon {
    font-size: 2.2rem;
    color: #ffb800;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.steps-section {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    padding: 90px 0;
    position: relative;
    color: #fff;
}

.steps-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(17, 17, 17, 0.9);
}

.steps-content {
    position: relative;
    z-index: 2;
}

.light-title h2 {
    color: #fff !important;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    text-align: center;
}

.step-icon {
    font-size: 2.2rem;
    color: #ffb800;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.step-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section-light {
    background: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.cta-box-card {
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.cta-text-content {
    flex: 1;
}

.cta-text-content h2 {
    color: #111;
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-text-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-text-content strong {
    color: #111;
}

.cta-image-content {
    flex: 1;
    text-align: center;
}

.cta-image-content img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
}

.cta-section-light .btn-primary {
    background: #ffb800;
    color: #111;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.cta-section-light .btn-primary:hover {
    background: #e0a100;
}
/* =================================================
   KONAČAN ISPRAVLJEN CSS ZA POČETNU (HOME) STRANICU (MOBILE)
   ================================================= */

@media (max-width: 768px) {
    
    /* 1. UJEDNAČENA VELIČINA I CENTRIRANJE SVIH H2 NASLOVA */
    .stats-header h2,
    .services-section h2,
    .steps-section h2,
    .cta-text-content h2,
    .section-title h2 {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    /* Centriranje zaglavlja sekcija i linija */
    .stats-header,
    .services-section .section-title,
    .steps-section .section-title,
    .cta-text-content {
        text-align: center !important;
    }

    .title-underline,
    .title-underline-left {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 2. SMANJENJE H3 NASLOVA KARTICA */
    .stat-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 5px !important;
    }

    .service-card h3,
    .step-item h3 {
        font-size: 1.15rem !important;
        margin-bottom: 8px !important;
    }

    /* 3. TEKSTOVI I PASUSI */
    .stats-header p,
    .services-subtitle,
    .service-card p,
    .step-item p,
    .cta-text-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: #555 !important;
        font-weight: 400 !important;
    }

    .steps-section p {
        color: #ddd !important;
    }

    /* 4. SMANJENJE UNUTRAŠNJEG RAZMAKA (PADDING) NA KARTICAMA */
    .stat-card {
        padding: 15px 10px !important;
        margin-bottom: 12px !important;
    }

    .service-card,
    .step-item,
    .cta-box-card {
        padding: 20px 15px !important;
        margin-bottom: 15px !important;
    }

    /* 5. UREDAN RAZMAK BEZ PREKLAPANJA (Uklonjen minus da se ne seku sekcije) */
    .stats-cta-section,
    .services-section,
    .steps-section,
    .cta-section-light {
        margin-top: 0 !important;
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
}
/* =================================================
   UKLANJANJE IKONICA U KORACIMA I SMANJENJE RAZMAKA (MOBILE)
   ================================================= */

@media (max-width: 768px) {
    
    /* 1. Potpuno sakrivanje ikonica u koracima na mobilnom */
    .steps-section .step-item .step-icon {
        display: none !important;
    }

    /* 2. Smanjenje razmaka između kartica koraka da ne bude praznine */
    .steps-grid {
        display: flex;
        flex-direction: column;
        gap: 12px !important;
    }

    .steps-section .step-item {
        padding: 12px 10px !important;
        margin-bottom: 0 !important;
    }

    /* 3. Blago doterivanje teksta u tim karticama */
    .steps-section .step-item h3 {
        font-size: 1.1rem !important;
        margin-bottom: 5px !important;
    }

    .steps-section .step-item p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}
/* =================================================
   PODEŠAVANJE HERO SEKCIJE (MOBILE): JOŠ VEĆI H1 I MANJI TEKST
   ================================================= */

@media (max-width: 768px) {
    
    /* 1. Jače povećanje glavnog H1 naslova */
    section.hero-section .hero-content h1 {
        font-size: 2.4rem !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
    }

    /* 2. Smanjenje paragrafa ispod naslova */
    .hero-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        padding: 0 10px;
    }
}


/* =================================================
   5. STRANICA: O NAMA
   ================================================= */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 600px;
    background: url('o-nama-hero2.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

.about-hero-content h1 span {
    color: #ffb800;
}

.about-hero-content p {
    font-size: 1.1rem;
    color: #ddd;
}

.why-us-about-section {
    padding: 60px 0;
    background: #fff;
}

.why-us-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px !important;
    max-width: 1100px !important;
    margin: 40px auto 0 auto !important;
    padding: 0 20px !important;
}

.why-us-text {
    flex: 1 !important;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-us-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.why-us-list li i {
    color: #ffb800;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-us-image-wrapper {
    flex: 1.1 !important;
}

.why-us-image-wrapper video.responsive-video {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 2px solid #ffb800;
    display: block;
    margin: 0 auto;
}

.mission-video-section {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.mission-text-box {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.mission-text-box p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
}

.about-video-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-video-container video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 3px solid #ffb800;
    display: block;
}

.safe-team-section {
    padding: 90px 0;
    background: #ffffff;
    text-align: center;
}

.safe-team-content {
    max-width: 800px;
    margin: 0 auto;
}

.safe-team-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-story-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-story-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 0.8fr !important;
    gap: 50px !important;
    align-items: center !important;
}

.story-tag {
    display: inline-block;
    color: #ffb800;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-story-text {
    transform: translateY(0);
}

.about-story-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-story-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-story-image {
    text-align: center;
    position: relative;
    transform: translateY(0);
}

.about-story-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
    border-radius: 10%;
}

.about-categories-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.categories-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.categories-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-detail-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-detail-card .cat-icon {
    font-size: 2rem;
    color: #ffb800;
    background: #fff8e6;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.category-detail-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.category-detail-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.category-detail-card:hover {
    transform: translateY(-5px);
    border-color: #ffb800;
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.15);
}
/* =================================================
   KONAČAN I POTPUN CSS ZA STRANICU "O NAMA" (MOBILE)
   ================================================= */

@media (max-width: 768px) {
    
    /* 1. CENTRIRANJE UVODNE SEKCIJE (TRADICIJA I TAGOVI) */
    .about-story-section,
    .about-story-text {
        text-align: center !important;
    }

    .about-story-text .story-tag,
    .about-story-text h2,
    .about-story-text p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block;
    }

    .about-story-section {
        margin-bottom: -15px !important;
        padding-bottom: 0 !important;
    }

    /* 2. SMANJENJE SVIH H2 NASLOVA */
    .about-story-text h2,
    .why-us-about-section h2,
    .about-categories-section h2,
    .mission-video-section h2,
    .safe-team-section h2,
    .section-title h2 {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    /* 3. SMANJENJE H3 NASLOVA KATEGORIJA */
    .category-detail-card h3 {
        font-size: 1.15rem !important;
        margin-bottom: 8px !important;
    }

    /* 4. TEKSTOVI I PASUSI */
    .about-story-text p,
    .why-us-list li,
    .categories-subtitle,
    .category-detail-card p,
    .mission-text-box p,
    .safe-team-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: #555 !important;
        font-weight: 400 !important;
    }

    /* 5. CENTRIRANJE LISTE "ZAŠTO KANDIDATI BIRAJU NAS" */
    .why-us-container {
        text-align: center !important;
    }

    .why-us-list {
        display: inline-block !important;
        text-align: left !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
        list-style: none;
    }

    .why-us-list li {
        margin-bottom: 12px !important;
    }

    /* 6. SMANJENJE KARTICA KATEGORIJA */
    .category-detail-card {
        padding: 20px 15px !important;
        margin-bottom: 15px !important;
    }

    /* 7. POVLAČENJE SEKCIJA NAGORE (Smanjivanje praznog prostora) */
    .about-categories-section,
    .mission-video-section,
    .safe-team-section {
        margin-top: -30px !important;
        padding-top: 10px !important;
    }
}
/* =================================================
   6. STRANICA: KONTAKT
   ================================================= */
.page-hero.contact-hero {
    position: relative;
    height: 600px;
    min-height: 600px;
    background: url('car-and-traffic-cones-driving-sc.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-hero.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.page-hero.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero.contact-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero.contact-hero h1 span {
    color: #ffb800;
}

.page-hero.contact-hero p {
    font-size: 1.15rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.contact-main-section {
    background: #ffffff;
    padding: 80px 0 50px 0;
    color: #333;
}

.contact-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header-centered h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111;
    text-transform: uppercase;
}

.contact-header-centered .section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.highlight-orange {
    color: #ffb800;
    font-weight: 600;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.contact-info-column {
    text-align: left;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f9f9f9;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    transition: transform 0.2s, border-color 0.2s;
}

.info-box:hover {
    transform: translateY(-3px);
    border-color: #ffb800;
}

.info-icon {
    font-size: 1.5rem;
    color: #ffb800;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.info-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.info-box p, 
.info-box a {
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    font-weight: 600;
}

.info-box a:hover {
    color: #ffb800;
}

.contact-image-column {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-cars-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
    margin-top: 30px;
}

.map-wrapper {
    margin: 20px 0 60px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 2px solid #ffb800;
}

.google-reviews-section {
    padding: 40px 0 20px 0;
    border-top: 1px solid #eee;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.google-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f3f4;
    color: #3c4043;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.google-logo-badge i {
    color: #4285F4;
}

.reviews-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.rating-stars {
    color: #fbbc04;
    font-size: 1.1rem;
}

.rating-score {
    color: #555;
    font-size: 0.95rem;
    margin-left: 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.2s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: #ffb800;
    color: #111;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.reviewer-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px;
}

.mini-stars {
    color: #fbbc04;
    font-size: 0.8rem;
}

.review-card p {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}

/* =================================================
   7. STRANICA: INFORMACIJE
   ================================================= */
.page-hero.info-hero {
    position: relative;
    height: 550px;
    background: #222 url('car-maneuvering-around-orange-traffic-cones-in-par.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-hero.info-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero.info-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero.info-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero.info-hero h1 span {
    color: #ffb800;
}

.page-hero.info-hero p {
    font-size: 1.15rem;
    color: #e0e0e0;
}

.info-main-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title-box {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.card-badge.aktuelno { background: #fff3cd; color: #856404; }
.card-badge.preporuka { background: #d4edda; color: #155724; }
.card-badge.saveti { background: #cce5ff; color: #004085; }

.card-icon {
    font-size: 2rem;
    color: #ffb800;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    padding-right: 70px;
}

.card-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.card-link:hover {
    color: #ffb800;
    gap: 12px;
}

/* =================================================
   8. FUTER
   ================================================= */
.site-footer {
    background: #111;
    color: #aaa;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffb800;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

/* =================================================
   9. RESPONZIVNOST (MEDIA QUERIES)
   ================================================= */
@media (max-width: 992px) {
    .why-us-grid,
    .why-us-container {
        flex-direction: column !important;
        text-align: center;
        gap: 30px !important;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .contact-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-hero.contact-hero {
        height: 450px;
        min-height: 450px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        box-sizing: border-box;
        padding: 40px 20px;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        list-style: none;
        text-align: center;
        padding: 0;
        margin: 0 0 30px 0;
        gap: 20px;
    }

    .main-nav ul li a {
        font-size: 22px;
        font-weight: 700;
        color: #000;
        text-decoration: none;
    }

    .main-nav ul li a.active,
    .main-nav ul li a:hover {
        color: #ffb800;
    }

    .main-nav .social-icons {
        display: flex;
        gap: 20px;
        margin-top: 10px;
    }

    .main-nav .social-icons a {
        font-size: 20px;
        color: #000;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .stats-cards-grid,
    .services-grid,
    .categories-grid-detailed {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .cta-box-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .title-underline-left {
        margin: 0 auto 20px auto;
    }

    .cta-text-content h2 {
        font-size: 1.8rem;
    }

    .about-story-grid {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 30px !important;
    }

    .about-story-text {
        width: 100% !important;
        float: none !important;
        text-align: left !important;
        margin-bottom: 20px !important;
    }

    .about-story-image {
        width: 100% !important;
        float: none !important;
        text-align: center !important;
    }

    .about-story-image img, 
    .img-fluid {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: 8px !important;
    }

    .why-us-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin-bottom: 20px !important;
    }

    .why-us-text {
        width: 100% !important;
    }

    .why-us-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .why-us-list li {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    .why-us-list li i {
        color: #ffb800 !important;
        margin-left: 0 !important;
        margin-right: 10px !important;
        margin-top: 0 !important;
        display: inline-block !important;
        flex-shrink: 0 !important;
    }

    .why-us-image-wrapper video,
    .about-video-container video,
    video.responsive-video {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        margin-top: 15px !important;
    }

    /* Kontakt stranica - prilagođavanje za mobilne uređaje */
    .page-hero.contact-hero {
        height: auto !important;
        min-height: unset !important;
        padding: 50px 15px !important;
    }

    .page-hero.contact-hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        word-break: break-word;
    }

    .page-hero.contact-hero p {
        font-size: 0.95rem !important;
    }

    .contact-header-centered h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .contact-header-centered .section-desc {
        font-size: 0.95rem !important;
        padding: 0 10px;
    }

    /* SKRIVANJE SLIKE AUTOMOBILA NA MOBILNIM UREĐAJIMA */
    .contact-image-column {
        display: none !important;
    }

    .contact-main-section {
        padding-bottom: 20px !important;
    }

    .google-reviews-section h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .reviews-header .rating-score {
        font-size: 0.85rem !important;
        display: block;
        margin-top: 5px;
    }

    .review-card {
        padding: 15px !important;
    }
}