/* ========== POPPINS FONT ========== */
@font-face { font-family: 'Poppins'; src: url('../font/Poppins/Poppins-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../font/Poppins/Poppins-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../font/Poppins/Poppins-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }

/* ========== LIGHTBOX ========== */
.lightbox-img {
    cursor: pointer;
    transition: opacity 0.2s;
}
.lightbox-img:hover {
    opacity: 0.85;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    line-height: 1.5;
}

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

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #efecea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 160px;
}

.logo img {
    height: 170px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 60px;
	padding-bottom: 24px;
}

.nav-link {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    color: #1a3252;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1a3252;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #1a3252;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

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

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 960px;
    max-height: 96vh;
    min-height: 500px;
    margin-top: 160px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 300;
    color: #1a3252;
    line-height: 1.15;
    max-width: 800px;
    margin-top: -380px;
}

/* ========== INTRO ========== */
.intro {
    padding: 30px 0;
    background-color: #f9f9f9;
}

.intro-content {
    max-width: 800px;
    text-align: center;
}

.intro-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #444;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* ========== SECTION TITLE ========== */
.section-title {
    font-size: 50px;
    font-weight: 600;
    color: #1a3252;
    text-align: center;
    margin-bottom: 40px;
}

/* ========== USLUGE (Services) ========== */
.usluge {
    padding: 40px 0 70px;
    background-color: #e2ebf0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 300px;
    display: flex;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.02);
}

.service-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== DETAIL SECTIONS ========== */
.detail-section {
    padding-bottom: 14px;
}

.detail-section:nth-child(even) {
    background-color: #fff;
}

.detail-section#kompjuterska-analiza {
    background-color: #efecea;
    padding-bottom: 0;
}

.detail-intro-wrap {
    background-color: #d4effc;
    padding: 30px 0;
}

.detail-intro-wrap .detail-intro {
    margin-bottom: 0px;
}

.detail-banner {
    background-color: #1a3252;
    padding: 2px 0 8px;
    margin-bottom: 0;
}

.detail-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.detail-header-icon {
    width: 140px;
    height: 140px;
    filter: brightness(0) invert(1);
}

.detail-header .section-title {
    margin-bottom: 0;
    text-align: center;
    color: #fff;
    font-size: 64px;
    font-weight: 400;
	letter-spacing: 2px;
}

.detail-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 18px;
}

/* ========== PLATFORM CARDS ========== */
.platforms-grid-wrap {
    background: linear-gradient(to bottom, #efecea 65%, #fff 65%);
    padding: 40px 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0;
    position: relative;
}

.platform-card {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    background: transparent;
    padding: 0 20px;
}

.platforms-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    height: 66%;
    width: 2px;
    background-color: #87dbff;
    pointer-events: none;
}

.platforms-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 75%;
    height: 66%;
    width: 2px;
    background-color: #87dbff;
    z-index: 1;
    pointer-events: none;
}

.platforms-grid .platform-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 66%;
    width: 2px;
    background-color: #87dbff;
}

.platform-card {
    position: relative;
    align-items: stretch;
}

.platform-card-img {
    overflow: hidden;
    margin-bottom: 12px;
}

.platform-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.platform-card-text {
    padding: 16px 0;
    text-align: center;
}

.platform-card-text h3 {
    font-size: 34px;
    font-weight: 400;
    color: #1a3252;
    margin-bottom: 12px;
	line-height: 1.3;
}

.platform-card-text p {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}

/* White area at bottom of kompjuterska analiza */


/* ========== INSOLE SECTION ========== */
.ulosci-section {
    background-color: #fff !important;
}

.ulosci-section .detail-intro-wrap {
    background-color: #d4effc;
}

.insole-content-wrap {
    background: linear-gradient(to bottom, #efecea 67%, #fff 67%);
    padding: 0 0 40px 0;
}

.insole-inner {
    position: relative;
}

.insole-inner::before {
    content: '';
    position: absolute;
    top: 3%;
    left: calc(32.333% + 4px);
    height: 66%;
    width: 3px;
    background-color: #87dbff;
    z-index: 2;
    pointer-events: none;
}

.insole-inner::after {
    content: '';
    position: absolute;
    top: 3%;
    left: calc(66.666% + 3px);
    height: 66%;
    width: 3px;
    background-color: #87dbff;
    z-index: 2;
    pointer-events: none;
}

.insole-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Insole text columns */
.insole-text-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 40px 0;
}

.insole-text-col {
    padding: 0 30px;
    text-align: center;
}

.insole-text-col h3 {
    font-size: 34px;
    font-weight: 400;
    color: #1a3252;
    margin-bottom: 16px;
	line-height: 1.3;
}

.insole-text-col p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* Insole 3×3 image grid */
.insole-img {
    background-color: #efecea;
    overflow: hidden;
    height: 260px;
}

.insole-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== CONDITIONS (Bolovi) ========== */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0;
}

.condition-card {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    text-align: center;
    padding: 40px 30px;
    border-right: none;
    background-image: linear-gradient(to bottom, transparent 4%, #87dbff 4%, #87dbff 94%, transparent 94%);
    background-size: 2px 100%;
    background-position: right;
    background-repeat: no-repeat;
}

.condition-card:last-child {
    background-image: none;
}

.condition-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 28px;
}

.condition-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.condition-card h3 {
    font-size: 28px;
    font-weight: 400;
    color: #1a3252;
    margin-bottom: 16px;
}

.condition-card h3 span {
    font-weight: 400;
    font-size: 20px;
    display: block;
    color: #1a3252;
}

.condition-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* ========== OSTALO (Products) ========== */
.ostalo-section {
    background-color: #fff !important;
    padding-bottom: 40px;
}

.ostalo-grid-wrap {
    background: linear-gradient(to bottom, #efecea 75%, #fff 75%);
}

.ostalo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.ostalo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ostalo-col:last-child {
}

.ostalo-text {
    padding: 30px 40px;
    text-align: center;
}

.ostalo-col:last-child .ostalo-text {
}

.ostalo-grid {
    position: relative;
}

.ostalo-grid::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 50%;
    height: 70%;
    width: 3px;
    background-color: #87dbff;
}

.ostalo-text h3 {
    font-size: 34px;
    font-weight: 400;
    color: #1a3252;
    margin-bottom: 16px;
}

.ostalo-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.ostalo-img {
    background-color: #d4effc;
    overflow: hidden;
    margin: 0 40px 20px;
    height: 220px;
}

.ostalo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ========== O NAMA ========== */
.o-nama-section {
    padding: 0;
    background-color: #fff;
}

.o-nama-content-wrap {
    background: linear-gradient(to bottom, #efecea 71%, #fff 71%);
    padding: 40px 0;
}

.o-nama-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.o-nama-text p {
    margin-bottom: 18px;
    color: #444;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 40.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.athletes-section-wrap {
    background: linear-gradient(to bottom, #fff 23%, #d4effc 23%, #d4effc 90%, #fff 90%);
    padding: 10px 0 30px;
}

.athletes-header {
    text-align: center;
    margin-bottom: 40px;
}

.athletes-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 0px;
    display: block;
    filter: brightness(0) saturate(100%) invert(14%) sepia(30%) saturate(1500%) hue-rotate(190deg) brightness(95%) contrast(95%);
}

.athletes-title {
    font-size: 50px;
    font-weight: 400;
    color: #1a3252;
    text-align: center;
    margin-bottom: 0;
}

.athletes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.athlete-item {
    text-align: center;
}

.athlete-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
}

.athlete-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.athlete-item span {
    font-size: 14px;
    font-weight: 400;
    color: #1a3252;
    display: block;
}

/* ========== KONTAKT ========== */
.kontakt-section {
    background-color: #efecea;
}

.kontakt-content {
    padding: 60px 20px;
}

.kontakt-row {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.kontakt-map {
    flex: 7;
    min-height: 370px;
    overflow: hidden;
}

.kontakt-map iframe {
    width: 100%;
    height: 100%;
    min-height: 370px;
    border: none;
}

.kontakt-info {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.kontakt-info-item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 26px;
}

.kontakt-svg-icon {
    flex-shrink: 0;
    color: #00adef;
}

.kontakt-svg-pin {
    width: 30px;
    height: 41px;
}

.kontakt-svg-phone {
    width: 24px;
    height: 24px;
    margin-top: 3px;
}

.kontakt-svg-email {
    width: 24px;
    height: 24px;
    margin-top: 3px;
}

.kontakt-location {
    flex-direction: column;
    margin-bottom: 15px;
}

.kontakt-info-item p {
    margin-bottom: 0;
    font-size: 18px;
    color: #231f20;
    line-height: 26px;
}

.kontakt-info-item a {
    color: #231f20;
    font-weight: 400;
}

.kontakt-info-item a:hover {
    color: #2a4a8e;
}

.kontakt-hours {
    padding: 0;
    margin-top: 15px;
}

.kontakt-hours p {
    font-size: 18px;
    margin-bottom: 0;
    color: #231f20;
    line-height: 26px;
}

.kontakt-note {
    font-size: 18px;
    color: #231f20;
    line-height: 26px;
    margin-top: 0;
}

.kontakt-form-section {
    padding: 0px 0;
}

.kontakt-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.kontakt-form-svg {
    width: 40px;
    height: 30px;
    color: #193252;
}

.kontakt-form-header h3 {
    font-size: 26px;
    font-weight: 400;
    color: #231f20;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-left {
    flex: 7;
}

.form-left textarea {
    width: 100%;
    height: 140px;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    resize: none;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-left textarea:focus {
    border-color: #1a3252;
}

.form-right {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-right input {
    width: 100%;
    height: 38px;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-right input:focus {
    border-color: #1a3252;
}

.btn-submit {
    padding: 0;
    height: 38px;
    width: 108px;
    background-color: #193252;
    color: #fff;
    border: none;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 0;
    align-self: flex-end;
}

.btn-submit:hover {
    background-color: #2a4a8e;
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
    background-color: #d4effc;
    padding: 28px 0;
    text-align: center;
}

.footer p {
    color: #333;
    font-size: 17px;
    font-weight: 400;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== COOKIE CONSENT ========== */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: rgba(25, 50, 82, 0.95);
    padding: 16px 20px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookie-consent.closing {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-inner p {
    color: #f1f1f1;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.cookie-consent-inner a {
    color: #87dbff;
    text-decoration: underline;
}

.cookie-consent-inner a:hover {
    color: #fff;
}

.cookie-accept-btn {
    background-color: #87dbff;
    color: #193252;
    border: none;
    padding: 8px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.cookie-accept-btn:hover {
    background-color: #fff;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        max-width: 100%;
    }

    .insole-text-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insole-text-col:nth-child(2) {
        border-right: none;
    }

    .insole-text-col:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
        border-right: none;
        border-top: 2px solid #a8c8e8;
        padding-top: 24px;
        margin-top: 24px;
    }

    .insole-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insole-inner::before,
    .insole-inner::after {
        display: none;
    }

    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .condition-card {
        grid-row: auto;
        grid-template-rows: auto;
    }

    .condition-card:nth-child(2) {
        background-image: none;
    }

    .conditions-grid .condition-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
        background-image: none;
    }

    .athletes-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .athlete-photo {
        width: 120px;
        height: 120px;
    }
}

/* Tablet small */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        align-self: center;
    }

    .nav {
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        background-color: #efecea;
        padding: 20px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero {
        height: 50vh;
        min-height: 300px;
        max-height: 500px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-top: -100px;
        max-width: 90%;
    }

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

    .detail-header .section-title {
        font-size: 36px;
    }

    .detail-header-icon {
        width: 80px !important;
        height: 80px !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .service-card {
        height: 220px;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .platform-card {
        grid-row: auto;
        grid-template-rows: auto;
    }

    .platforms-grid::before,
    .platforms-grid::after,
    .platforms-grid .platform-card:nth-child(2)::after {
        display: none;
    }

    .platform-card-text h3 {
        font-size: 24px;
    }

    .platform-card-img img {
        height: 180px;
    }

    .insole-text-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .insole-text-col {
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .insole-text-col:last-child {
        grid-column: auto;
        max-width: 100%;
        border-top: none;
        border-bottom: none;
        padding-top: 0;
        margin-top: 0;
    }

    .insole-inner::before,
    .insole-inner::after {
        display: none;
    }

    .insole-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insole-text-col h3 {
        font-size: 24px;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .condition-card {
        grid-row: auto;
        grid-template-rows: auto;
        background-image: none;
    }

    .conditions-grid .condition-card:last-child {
        max-width: 100%;
    }

    .condition-card h3 {
        font-size: 22px;
    }

    .ostalo-grid {
        grid-template-columns: 1fr;
    }

    .ostalo-grid::after {
        display: none;
    }

    .ostalo-col {
        border-right: none;
        border-bottom: 2px solid #a8c8e8;
        padding-bottom: 24px;
    }

    .ostalo-col:last-child {
        border-bottom: none;
    }

    .ostalo-text h3 {
        font-size: 24px;
    }

    .ostalo-img {
        margin: 0 0 20px;
        height: 220px;
    }

    .athletes-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .athlete-photo {
        width: 100px;
        height: 100px;
    }

    .kontakt-row {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .form-right {
        flex: none;
    }

    .kontakt-info h3 {
        font-size: 20px;
    }

    .kontakt-title {
        margin-top: -4px !important;
    }

    .ostalo-title {
        margin-top: -4px !important;
    }

    .o-nama-title {
        margin-top: -4px !important;
    }

    .athletes-title {
        font-size: 28px;
    }

    .athletes-icon {
        width: 60px;
        height: 60px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .header-inner {
        height: 80px;
    }

    .logo img {
        height: 60px;
		margin-bottom: 10px;
    }

    html {
        scroll-padding-top: 80px;
    }

    .nav {
        top: 80px;
    }

    .hero {
        margin-top: 80px;
        height: 40vh;
        min-height: 250px;
        max-height: 400px;
    }

    .hero-content h1 {
        font-size: 22px;
        margin-top: -60px;
        max-width: 85%;
    }

    .intro {
        padding: 30px 0;
    }

    .intro-content p {
        font-size: 15px;
    }

    .usluge {
        padding: 30px 0;
    }

    .detail-section {
        padding-bottom: 30px;
    }

    .detail-banner {
        padding: 20px 0;
    }

    .detail-header .section-title {
        font-size: 26px;
        text-align: center;
    }

    .detail-header-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .platform-card {
        border-right: none;
        grid-row: auto;
        grid-template-rows: auto;
    }

    .platform-card-text h3 {
        font-size: 20px;
    }

    .platform-card-text p {
        font-size: 15px;
    }

    .platform-card-img img {
        height: 220px;
    }

    .insole-images-grid {
        grid-template-columns: 1fr;
    }

    .insole-img {
        height: 200px;
    }

    .insole-text-col h3 {
        font-size: 20px;
    }

    .insole-text-col p {
        font-size: 15px;
    }

    .condition-icon {
        width: 80px;
        height: 80px;
    }

    .condition-card h3 {
        font-size: 20px;
    }

    .condition-card p {
        font-size: 15px;
    }

    .ostalo-text h3 {
        font-size: 20px;
    }

    .ostalo-text p {
        font-size: 15px;
    }

    .ostalo-img {
        margin: 0 10px 20px;
        height: 180px;
    }

    .athletes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 10px;
    }

    .athlete-photo {
        width: 75px;
        height: 75px;
    }

    .athlete-item span {
        font-size: 10px;
    }

    .athletes-title {
        font-size: 22px;
    }

    .athletes-icon {
        width: 45px;
        height: 45px;
    }

    .kontakt-form-section {
        padding: 24px 0;
    }

    .kontakt-content {
        padding: 30px 20px;
    }

    .detail-intro {
        font-size: 15px;
    }

    body {
        font-size: 15px;
    }
}
