* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Sulphur Point;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

.flex-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    /*text-align: left;*/
}

.mob_process {
    text-align: center;
}

.MOBILE_section-label {
    color: #F3E1B5;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

h1 {
    color: #e0e0e0;
    margin-bottom: 20px;
}

h2,
h3,
h4 {
    color: #F3E1B5;
    margin-bottom: 20px;
}

.what-we-do h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Flex layout for hero and what-we-do */
.hero-content,
.what-we-do-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Hero section styling */
.hero-text,
.what-text {
    flex: 1 1 50%;
    text-align: left;
}

.hero-image,
.what-image {
    flex: 1 1 45%;
    text-align: center;

}

.hero-image img,
.what-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}


p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}


/* Sections */
.hero {
    background-color: #010100;
    padding: 120px 20px;

}


.mob_process,
.cta-section {
    background-color: #181818;
}

.what-we-do {
    background-color: #030200;
}

.mob_process h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #F3E1B5;
}


/* Desktop - centriranje ikonica u procesu */
.mob_process .steps {
    flex-direction: column; /* ili postaviti row po zelji */
    justify-content: space-between; /* ravnomerno raspoređene */
    gap: 30px;
     margin-top: 40px;
}

.mob_process .step {
    display: flex;
    flex-direction: column;
    align-items: center; /* centriranje ikonica i teksta */
    text-align: center;
}

.mob_process .step .service-icon {
    margin: 0 0 10px 0; /* centrirano iznad teksta */
    display: block;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

#platforms {
    position: relative;
    height: auto;
    padding-bottom: 50px;
    background: url(Fotografije/mobile_platforms_cover_photo.jpg) center center/cover no-repeat;
    color: #fff;
    overflow: visible;
}

/* Tamni overlay preko slike za bolju čitljivost */
#platforms .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    /* 70% tamna da slika ima 30% vidljivost */
    z-index: 1;
}

/* Tekst unutar sekcije */
#platforms .flex-container {
    position: relative;
    z-index: 2;
}

.platform-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
}

.platform {
    flex: 1 1 300px;
    max-width: 320px;

    display: flex;
    flex-direction: column;
}

.platform>.glass-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}


.cta-section {
    min-height: 400px;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-section>div {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    /*  Levo poravnanje */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Razmak između elemenata */
}

.btn-gold-custom-cta {
    display: block;
    width: 100%;
    max-width: 267px;
    /* ograniči širinu da prati tekst */
    padding: 0.75rem 1.5rem;
    background: linear-gradient(#4E4F53, #1a1a1a, #4E4F53);
    color: #ffffff;
    border: 1px solid #F3E1B5;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    margin: 0 auto;
    /* centriraj ako treba */
    /*margin: 0;*/
    /* <-- ovo poravnava lijevo */
}

/* Hover efekat */
.btn-gold-custom-cta:hover {
    background: #F3E1B5;
    color: #000;
    border-color: #F3E1B5;
}

.footer-bottom p {
    font-size: 13px;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================
   MEDIA QUERIES ZA MOBILNE
============================ */

@media (max-width: 768px) {

    /* =====================
       HERO SECTION
    ===================== */
    .hero-content {
        flex-direction: column !important;
        text-align: center !important;
        margin-top: 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-text {
        text-align: center !important;
        margin-bottom: 20px;
    }

    .hero-image {
        text-align: center !important;
    }

    /* =====================
       WHAT WE DO
    ===================== */
    .what-we-do-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .what-text {
        text-align: center !important;
        margin-bottom: 20px;
    }

    .what-text h2 {
        font-size: 2rem;
    }

    .what-image {
        text-align: center !important;
    }

    /* =====================
       MOBILE PROCESS
    ===================== */
    .mob_process .steps {
        flex-direction: column !important;
        align-items: center !important;
    }

    .mob_process .step {
        text-align: center !important;
        align-items: center !important;
    }

    .mob_process .step .service-icon {
        margin: 0 auto 10px auto !important;
        display: block;
    }

    .mob_process h2 {
        font-size: 2rem;
    };

    /* =====================
       PLATFORMS
    ===================== */
    .platform-grid {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .platform {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .platform>.glass-card {
        text-align: center !important;
    }

    #platforms h2 {
        font-size: 2rem;
    }

    /* =====================
       CTA SECTION
    ===================== */
    .cta-section>div {
        text-align: center !important;
        gap: 1rem;
    }

    .btn-gold-custom-cta {
        width: 100% !important;
    }
    .cta-section h2 {
        font-size: 2rem;
    }

    /* =====================
       FOOTER
    ===================== */
    .footer-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 30px;
    }

    .footer-section {
        width: 100%;
    }

    .footer-links {
        padding: 0;
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-contact .contact-item {
        justify-content: center !important;
        margin-bottom: 10px;
    }

    .footer-socials {
        justify-content: center !important;
    }
}
