/* Reset osnovnih margina */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Responsive navigacija bez hamburgera */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    background: #d9d9d9;
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.navbar-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.5px;
}
.navbar-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
}
.navbar-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: #0077b6;
}

.nav-cta {
    margin-left: 1.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    box-shadow: none;
    background: #0077b6;
    color: #fff;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
    white-space: nowrap;
}
.nav-cta:hover {
    background: #22265F;
    color: #fff;
    transform: translateY(-1px) scale(1.04);
}
@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0.5rem;
    }
    .navbar-logo {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    .navbar-links {
        justify-content: center;
    }
    .nav-cta {
        margin: 0 auto;
        width: 100%;
        text-align: center;
        font-size: 1.05rem;
    }
}
/* Uklanjam hamburger meni stilove */
.navbar-toggle { display: none !important; }

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding: 2rem 1rem;
    background: #fff;
    border-radius: 1.5rem;
    justify-content: space-between;
}

.hero-content {
    flex: 1 1 0;
    max-width: 520px;
}
.hero-content h2 {
    color: #0077b6;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 1.2rem 0;
    color: #222;
    line-height: 1.2;
}
.hero-content p {
    color: #444;
    font-size: 1.08rem;
    line-height: 1.7;
}

.hero-slider {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;
    max-width: 340px;
}
.slider-images {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 1rem;
    background: #e6e6e6;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.slider-img {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: 1rem;
    z-index: 1;
}
.slider-img.active {
    opacity: 1;
    z-index: 2;
}
.slider-dots {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.2rem;
    justify-content: center;
}
.slider-dots .dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.slider-dots .dot.active {
    background: #0077b6;
    transform: scale(1.18);
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        gap: 2rem;
        padding: 1.2rem 0.5rem;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-slider {
        max-width: 100%;
        min-width: 0;
    }
    .slider-images {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .hero {
        margin: 1.2rem 0 0 0;
        border-radius: 0.7rem;
        padding: 0.7rem 0.2rem;
    }
    .slider-images {
        height: 150px;
    }
    .hero-content h1 {
        font-size: 1.2rem;
    }
}

.why-gmi {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #22265F;
    color: #fff;
    padding: 0;
    overflow: hidden;
}
.why-gmi-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2.5rem 1.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}
.why-gmi-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #fff;
    letter-spacing: 1px;
}
.why-gmi-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    margin-bottom: 2.5rem;
}
.benefit {
    background: rgba(255,255,255,0.04);
    border-radius: 1rem;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    min-width: 0;
}
.benefit h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #fff;
}
.benefit p {
    font-size: 1rem;
    color: #e0e0f0;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .why-gmi-benefits {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .why-gmi-inner {
        padding: 2rem 0.5rem 1.2rem 0.5rem;
    }
    .why-gmi-benefits {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .benefit {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .why-gmi-inner h2 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

.involvement {
    background: #fff;
    width: 100%;
    padding: 0;
}
.involvement-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2.5rem 2rem;
    border-radius: 1.5rem;
    color: #23234c;
}
.involvement-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #22265F;
    text-align: center;
}
.involvement-inner h3 {
    font-size: 1.18rem;
    font-weight: 600;
    margin-top: 2.2rem;
    margin-bottom: 0.7rem;
    color: #22265F;
}
.involvement-inner p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.downloads, .contacts {
    margin: 1.2rem 0 1.5rem 0;
    padding-left: 1.2rem;
    font-size: 1.03rem;
}
.downloads li, .contacts li {
    margin-bottom: 0.7rem;
    line-height: 1.5;
}
.involvement-inner a {
    color: #0077b6;
    text-decoration: underline;
    word-break: break-all;
}
.involvement-inner a:hover {
    color: #22265F;
    text-decoration: none;
}
@media (max-width: 700px) {
    .involvement-inner {
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
        border-radius: 0.7rem;
    }
    .involvement-inner h2 {
        font-size: 1.2rem;
    }
    .involvement-inner h3 {
        font-size: 1rem;
    }
}

.contact-section {
    background: #fff;
    width: 100%;
    padding: 0;
}
.contact-inner {
    max-width: 500px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    color: #23234c;
}
.contact-inner h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #22265F;
    text-align: center;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.contact-form label {
    font-size: 1rem;
    font-weight: 500;
    color: #22265F;
}
.contact-form input,
.contact-form textarea {
    padding: 0.7rem 1rem;
    border: 1.5px solid #d9d9d9;
    border-radius: 0.6rem;
    font-size: 1rem;
    font-family: inherit;
    background: #f7f7fa;
    color: #23234c;
    transition: border 0.2s;
    resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #0077b6;
    outline: none;
}
.contact-form button {
    margin-top: 0.5rem;
    padding: 0.8rem 0;
    background: #22265F;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    border: none;
    border-radius: 0.6rem;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #0077b6;
}
@media (max-width: 700px) {
    .contact-inner {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        border-radius: 0.7rem;
    }
    .contact-inner h2 {
        font-size: 1.1rem;
    }
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    margin: 2.2rem 0 0.5rem 0;
}
.cta-btn {
    display: inline-block;
    background: #22265F;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 0.7rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(34,38,95,0.08);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}
.cta-btn:hover {
    background: #0077b6;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(0,119,182,0.13);
    text-decoration: none;
}

/* CTA dugme u navigaciji */
.nav-cta {
    margin-left: 1.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    box-shadow: none;
    background: #0077b6;
    color: #fff;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}
.nav-cta:hover {
    background: #22265F;
    color: #fff;
    transform: translateY(-1px) scale(1.04);
}
@media (max-width: 700px) {
    .nav-cta {
        margin: 1.2rem 0 0.5rem 0;
        width: 100%;
        text-align: center;
        font-size: 1.05rem;
    }
}

/* CTA dugme u hero sekciji */
.hero-cta {
    margin-top: 2rem;
    padding: 1.1rem 2.7rem;
    font-size: 1.18rem;
    border-radius: 0.7rem;
    font-weight: 700;
    background: #22265F;
    color: #fff;
    box-shadow: 0 2px 12px rgba(34,38,95,0.08);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}
.hero-cta:hover {
    background: #0077b6;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(0,119,182,0.13);
}

.whygmi-cta {
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.12rem;
    border-radius: 0.7rem;
    font-weight: 600;
    background: #0077b6;
    color: #fff;
    box-shadow: 0 2px 12px rgba(34,38,95,0.08);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}
.whygmi-cta:hover {
    background: #0077b6;
    color: #fff;
    text-decoration: none;
}

.site-footer {
    background: #EB9441;
    color: #fff;
    width: 100%;
    padding: 0;
    margin-top: 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.2rem 1.5rem 1.2rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem 1.5rem;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.5rem 1.5rem;
    width: 100%;
    border-bottom: 1.5px solid rgba(255,255,255,0.18);
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    min-width: 180px;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: #fff;
    color: #EB9441;
    border-radius: 0.5rem;
    padding: 0.2rem 0.7rem;
    margin-bottom: 0.2rem;
    display: inline-block;
}
.footer-org {
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
}
.footer-tagline {
    font-size: 0.98rem;
    color: #fff;
    opacity: 0.85;
    font-style: italic;
}
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.05rem;
    min-width: 220px;
}
.footer-social {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    margin-top: 0.5rem;
}
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #EB9441;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.footer-social-icon svg {
    display: block;
}
.footer-social-icon:hover {
    background: #23234c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(35,35,76,0.13);
}
.footer-social-icon:hover svg path {
    fill: #fff;
}
.footer-links-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: 0.5rem 0 0.2rem 0;
    font-size: 1.05rem;
}
.footer-link {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #23234c;
    text-decoration: none;
}
.footer-divider {
    color: #fff;
    opacity: 0.5;
    font-size: 1.1rem;
}
.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 1.2rem;
    font-size: 0.98rem;
    opacity: 0.93;
    letter-spacing: 0.2px;
}
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.5rem 0.7rem 1rem 0.7rem;
    }
    .footer-main {
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-start;
        padding-bottom: 0.7rem;
        margin-bottom: 0.7rem;
    }
    .footer-links-row {
        flex-direction: column;
        gap: 0.3rem;
    }
}

.simple-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2.2rem 1.5rem 1.2rem 1.5rem;
    max-width: 100vw;
}
.simple-footer .footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: #fff;
    color: #EB9441;
    border-radius: 0.5rem;
    padding: 0.2rem 0.7rem;
    margin-bottom: 0.2rem;
    display: inline-block;
}
.simple-footer .footer-org {
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.1rem;
}
.simple-footer .footer-tagline {
    font-size: 0.98rem;
    color: #fff;
    opacity: 0.85;
    font-style: italic;
    margin-bottom: 0.5rem;
}
.simple-footer .footer-address,
.simple-footer .footer-contact {
    color: #fff;
    font-size: 1.03rem;
    margin-bottom: 0.1rem;
}
.simple-footer .footer-contact a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.simple-footer .footer-contact a:hover {
    color: #23234c;
}
.simple-footer .footer-social {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    justify-content: center;
    margin: 0.7rem 0 0.2rem 0;
}
.simple-footer .footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #EB9441;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.simple-footer .footer-social-icon svg {
    display: block;
}
.simple-footer .footer-social-icon:hover {
    background: #23234c;
    color: #fff;
    box-shadow: 0 4px 16px rgba(35,35,76,0.13);
}
.simple-footer .footer-social-icon:hover svg path {
    fill: #fff;
}
.simple-footer .footer-links-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: 0.5rem 0 0.2rem 0;
    font-size: 1.05rem;
}
.simple-footer .footer-link {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.simple-footer .footer-link:hover {
    color: #23234c;
    text-decoration: none;
}
.simple-footer .footer-divider {
    color: #fff;
    opacity: 0.5;
    font-size: 1.1rem;
}
.simple-footer .footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 0.7rem;
    font-size: 0.98rem;
    opacity: 0.93;
    letter-spacing: 0.2px;
}
@media (max-width: 700px) {
    .simple-footer {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        gap: 0.3rem;
    }
    .simple-footer .footer-logo {
        font-size: 1.1rem;
        padding: 0.1rem 0.4rem;
    }
    .simple-footer .footer-org {
        font-size: 0.98rem;
    }
    .simple-footer .footer-tagline {
        font-size: 0.85rem;
    }
    .simple-footer .footer-address,
    .simple-footer .footer-contact {
        font-size: 0.95rem;
    }
    .simple-footer .footer-links-row {
        gap: 0.5rem;
        font-size: 0.95rem;
    }
}

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