/* Font Source Sans Pro je načten přes Google Fonts v index.php */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1b4263;
    background: #FFFFFF;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

#hlavni_stranka {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    max-width: 1700px;
    width: 100%;
    margin: 0 auto;
}

/* Modrá část - celá obrazovka na pozadí */
.modra_cast {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #308CDD;
    z-index: 0;
}

/* Dekorativní kruhy */
.dekorativni_kruhy {
    position: absolute;
    top: 111px;
    right: 173px;
    width: 100%;
    height: 100vh;
    object-fit: contain;
    object-position: right center;
    pointer-events: none;
    rotate: 3deg;
}

/* Bílá část - překrývá zleva 1/3 */
.bila_cast {
    position: fixed;
    top: 0;
    left: 0;
    width: 33.333%;
    height: 100vh;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bila_cast_barva {
    background: #FFFFFF;
    z-index: 1;
}
/* Oblast loga */
.oblast_loga {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 0 0 50px;
}

.oblast_loga img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.logo_oddelovac {
    width: 1px;
    height: 80px;
    background: #ECF6FF;
    flex-shrink: 0;
}

.logo_text {
    color: #1b4263;
    font-size: 24px;
    line-height: 1.3;
}

.logo_text strong {
    font-weight: 700;
}

/* Tlačítko "Kde najdu identifikátor" */
.bila_cast > .tlacitko_kde_najdu {
    position: fixed;
    top: 40px;
    right: 60px;
    background-color: #1E486C;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bila_cast > .tlacitko_kde_najdu img {
    width: 20px;
    height: 20px;
}

.bila_cast > .tlacitko_kde_najdu:hover {
    background-color: #1B4262;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Hlavní obsah - vycentrovaný na celou šířku stránky */
.hlavni_obsah {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 240px 330px;
    z-index: 101;
    pointer-events: none;
}

.hlavni_obsah > * {
    pointer-events: auto;
}

.karta_formular {
    background: #DEEFFF;
    border-radius: 54px;
   /* padding: 60px 80px;*/
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.karta_formular > div {
    z-index: 5 !important;
    background: #DEEFFF;
    padding: 60px 80px;
    border-radius: 40px;
}

@media screen and (min-width: 768px) {
    .karta_formular::after {
        content: "";
        width: 33.333%;
        position: fixed;
        top: calc(50vh - 300px );
        height: 600px;
        background: white;
        z-index: 2;
        left:0px;
    }
}
.karta_formular::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0px;
    width: calc(100%);
    height: 100%;
    border-radius: 40px;
    z-index: 1;
    box-shadow: 0 20px 90px rgb(24 71 111 / 60%);
}

.karta_nadpis_maly {
    color: #6788a7;
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: 400;
    width: 100%;
    text-align: left;
}

.karta_nadpis_velky {
    color: #1b4263;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 45px;
    line-height: 1.3;
    padding-right: 0;
    width: 100%;
    text-align: left;
}

/* Obal zadávání - obsahuje input a tlačítka vedle sebe */
.obal_zadavani {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
    padding-right: 0;
}

/* Pole pro zadávání */
.pole_input {
    background: white;
    border-radius: 50px;
    flex: 0 1 auto;
    width: 660px;
    border: 1px solid #D4E7F6;
    min-width: 0;
    height: 100px;
    display: flex;
    align-items: center;
}
.pole_input:hover, .pole_input:focus {
    box-shadow: 0 0 10px rgba(17, 176, 255, 0.22);
}
.hlavni_input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 30px;
    font-weight: 400;
    color: #1b4263;
    letter-spacing: 12px;
    background: transparent;
    padding: 0;
    padding: 22px 35px;
}
.chyba_input {
    border-color: #de3931;
}

.hlavni_input::placeholder {
    color: rgba(29, 72, 107, 0.15);
    letter-spacing: 8px;
    font-weight: 400;
}
#kontakt_poznamka::placeholder {
    color: #9BB3C8;
    font-weight: 400;
}
.tlacitko_qr {
    width: 100px;
    height: 100px;
    background: #DDB031;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    /*box-shadow: 0 5px 15px rgba(245, 166, 35, 0.35);*/
    flex-shrink: 0;
}

.tlacitko_qr:hover {
    background: #DDB031;
    transform: translateY(-3px);
    /*box-shadow: 0 8px 20px rgba(245, 166, 35, 0.45);*/
}

.tlacitko_qr input[type="file"] {
    display: none;
}

.tlacitko_qr img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.tlacitko_odeslat {
    width: 100px;
    height: 100px;
    background: #09c829;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    /*box-shadow: 0 5px 15px rgba(78, 171, 109, 0.35);*/
    position: relative;
    flex-shrink: 0;
}

.tlacitko_odeslat:hover {
    background: #09c829;
    transform: translateY(-3px);
    /*box-shadow: 0 8px 20px rgba(78, 171, 109, 0.45);*/
}

.ikona_sipka {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}

.ikona_nacitani {
    display: none;
    width: 40px;
    height: 40px;
}

/* Chybová hláška - pod kartou vycentrovaná */
.chybova_hlaska {
    display: none;
    background-color: #de3931;
    color: #F8B3B0;
    padding: 16px 24px;
    border-radius: 12px;
    position: fixed;
    left: 50%;
    top: calc(50vh + 216px);
    transform: translateX(-50%);
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 90px rgba(24, 71, 111, 0.4);
    z-index: 15000;
}

.chybova_hlaska span {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
}

.chybova_hlaska img {
    width: 22px;
    height: 22px;
}

/* Patička kontakt - vlevo dole v bílé části */
.paticka_kontakt {
    padding: 0 0 30px 50px;
    color: #547088;
    font-size: 16px;
    line-height: 1.8;
}

.paticka_kontakt_mobilni {
    display: none;
}

.paticka_kontakt b {
    font-weight: 400;
}

.paticka_telefon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #305777;
    margin-top: 2px;
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 16px;
}

.paticka_telefon img {
    width: 20px;
    height: 20px;
}

/* Patička odkazy - dole v pravé modré části */
.paticka_odkazy {
    position: fixed;
    bottom: 20px;
    left: 33.333%;
    width: 66.667%;
    background-color: transparent;
    padding: 25px 60px;
    text-align: center;
    color: white;
    font-size: 13px;
    z-index: 2;
    text-align: right;
    line-height: 24px;
}
.copyright_pc  {
    margin-right: 16px;
}

.paticka_odkazy a {
    color: white;
    text-decoration: underline;
    transition: all 0.3s;
    margin: 0;
    margin-left: 16px;
}

.paticka_odkazy a:hover {
    text-decoration: none;
}

.paticka_odkazy span {
    margin-left: 8px;
    color: white;
}

/* Překrytí obrazovky a popupy */
.prekryti_obrazovky {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(32, 92, 145, 0.90);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.prekryti_obrazovky.visible {
    opacity: 1;
    visibility: visible;
}

/* Úvodní formulářové okno podle předlohy */
.popup_uvodni_wrapper {
    display: none;
    width: calc(100vw - 560px);
    max-width: 840px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(24, 71, 111, 0.3);
    background: transparent;
    position: relative;
}

.popup_uvodni_pozadi {
    position: absolute;
    top: 0;
    left: -70px;
    right: -70px;
    bottom: -70px;
    background: #5686B0;
    border-radius: 30px;
    z-index: -1;
}

.popup_uvodni_vnitrni {
    background: #ffffff;
    border-radius: 30px;
    padding: 36px 44px 38px;
    position: relative;
    z-index: 1;
}

.popup_uvodni_hlavicka {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.popup_uvodni_ikonka {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #deeb51;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 26px;
    font-family: Georgia, serif;
    font-style: italic;
    flex-shrink: 0;
}

.popup_uvodni_titulek {
    font-size: 16px;
    font-weight: 700;
    color: #1b4263;
    margin-bottom: 4px;
}

.popup_uvodni_podtitulek {
    font-size: 13px;
    color: #6b7c90;
    line-height: 1.5;
}

.popup_uvodni_formular {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #D1E2F4;
    border-bottom: 1px solid #D1E2F4;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.formular_radek {
    display: grid;
    gap: 16px;
}

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

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

.formular_radek_3 {
    grid-template-columns: repeat(3, 1fr);
}

.popup_uvodni_formular label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
    padding-left: 20px;
    color: #1b4263;
}

.popup_uvodni_formular input[type="text"],
.popup_uvodni_formular textarea {
    width: 100%;
    border-radius: 999px;
    border: 0px !important;
    padding: 12px 24px;
    font-size: 13px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    background: #DEEEFF;
    outline: none;
    transition: border-color 0.3s;
    color: #1b4263;
    text-align: left;
}

.popup_uvodni_formular input[type="text"]:focus,
.popup_uvodni_formular textarea:focus {
    border-color: #4a90d9;
}

.popup_uvodni_formular textarea {
    border-radius: 16px;
    resize: vertical;
    min-height: 70px;
}

.popup_uvodni_formular_radek_siroky {
    grid-column: 1 / -1;
}

.popup_uvodni_checkbox_radek {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup_uvodni_checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.popup_uvodni_souhlas {
    font-size: 12px;
    font-weight: 400;
    color: #6b7c90;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.popup_uvodni_souhlas a {
    color: #6b7c90;
    text-decoration: underline;
    cursor: pointer;
}

.popup_uvodni_souhlas a:hover {
    color: #4a90d9;
}

.popup_uvodni_tlacitka {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
}

.popup_uvodni_btn_zrusit {
    background: #F8B3B0;
    border-radius: 999px;
    padding: 25px 32px;
    border: none;
    color: #d9534f;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 70px;
    width: 140px;
}

.popup_uvodni_btn_zrusit::after {
    content: '✕';
    font-size: 16px;
}

.popup_uvodni_btn_zrusit:hover {
    background: #ffd0d0;
}

.popup_uvodni_btn_odeslat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #09C82A;
    border-radius: 999px;
    padding: 25px 34px 25px 30px;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    height: 70px;
    width: 140px;
}

.popup_uvodni_btn_odeslat:hover {
    background: #009938;
}

.popup_uvodni_btn_odeslat_sipka {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.popup_uvodni_btn_odeslat_sipka::after {
    content: '→';
}

.kde_najit_popup, .popup {
    background-color: white;
    border-radius: 30px;
    padding: 45px 55px;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(24, 71, 111, 0.3);
    position: relative;
    display: none;
}

.popup_kde_najdu_identifikator {
    display: none;
    background-color: white;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(24, 71, 111, 0.3);
    position: relative;
    padding: 60px;
}

.popup_kde_najdu_identifikator .tlacitko_zavrit {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.popup_kde_najdu_identifikator .tlacitko_zavrit img {
    width: 14px;
    height: 14px;
}

.popup_kde_najdu_identifikator .tlacitko_zavrit:hover img {
    opacity: 1;
}

.popup_kde_najdu_identifikator .popup_nadpis {
    font-size: 18px;
    font-weight: 700;
    color: #1b4263;
    margin-bottom: 20px;
}

.popup_kde_najdu_identifikator .popup_obsah ol {
    margin: 0;
    padding-left: 20px;
    color: #1b4263;
    font-size: 14px;
    line-height: 1.8;
}

.popup_kde_najdu_identifikator .popup_obsah ol li {
    margin-bottom: 5px;
    padding-left: 8px;
}
.popup_kde_najdu_identifikator .popup_obsah ol li::marker {
    font-weight: 600;
    padding-right: 8px;
}

/* Nové okno kontaktniho formulare podle navrhu */
.popup_novy_kontakt {
    display: none;
    max-width: 900px;
    width: 90%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    background: transparent;
    position: relative;
}

.popup_novy_vnitrni {
    background: #ffffff;
    border-radius: 30px;
    padding: 32px 40px 34px;
}

.popup_novy_hlavicka {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
}

.popup_novy_ikonka {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffdf80;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1b4263;
    font-size: 22px;
}

.popup_novy_titulek {
    font-size: 18px;
    font-weight: 700;
    color: #1b4263;
}

.popup_novy_podtitulek {
    font-size: 13px;
    color: #6b7c90;
    margin-top: 4px;
}

.popup_novy_formular {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 26px;
}

.popup_novy_formular label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1b4263;
}

.popup_novy_formular input,
.popup_novy_formular textarea {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #dde6f0;
    padding: 10px 16px;
    font-size: 14px;
    font-family: 'Source Sans Pro', sans-serif;
    background: #f5f9ff;
}

.popup_novy_formular textarea {
    border-radius: 16px;
    resize: vertical;
    min-height: 70px;
}

.popup_novy_formular_radek_siroky {
    grid-column: 1 / -1;
}

.popup_novy_spodek {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.popup_novy_souhlas {
    font-size: 11px;
    color: #6b7c90;
    max-width: 70%;
}

.popup_novy_tlacitka {
    display: flex;
    align-items: center;
    gap: 14px;
}

.popup_novy_btn_zrusit {
    background: #ffe1e1;
    border-radius: 999px;
    padding: 10px 22px;
    border: none;
    color: #d9534f;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.popup_novy_btn_odeslat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00b543;
    border-radius: 999px;
    padding: 10px 24px 10px 20px;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.popup_novy_btn_odeslat_sipka {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
}

.kde_najit_popup .nadpis, .popup .nadpis {
    font-size: 24px;
    font-weight: 700;
    color: #1b4263;
    margin-bottom: 25px;
}

.popup_kde_najdu_identifikator .popup_obsah {
    color: #1b4263;
    line-height: 1.7;
    font-size: 15px;
}

.kde_najit_popup .popup_radek {
    display: flex;
    margin-bottom: 14px;
}

.kde_najit_popup .radek div:first-child {
    font-weight: 700;
    margin-right: 12px;
    color: #4a90d9;
}

.tlacitko_zavrit {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.tlacitko_zavrit img {
    width: 100%;
    height: 100%;
}

.popup_uspech {
    background-color: white;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
    position: relative;
    display: none;
    text-align: center;
    padding: 60px;
}

.popup_uspech .tlacitko_zavrit {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.popup_uspech .tlacitko_zavrit img {
    width: 14px;
    height: 14px;
}

.popup_uspech .tlacitko_zavrit:hover img {
    opacity: 1;
}

.popup_uspech .popup_hlavicka {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.popup_uspech .popup_hlavicka img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 12px;
    box-sizing: border-box;
}

.popup_uspech .popup_hlavicka span {
    color: #1b4263;
    font-size: 15px;
    font-weight: 700;
}

.popup_uspech .popup_obsah {
    padding: 0;
}

.popup_uspech .popup_zprava {
    margin-bottom: 0;
    line-height: 1.6;
    color: #666;
    font-size: 14px;
}

#formular_kontaktni_udaje {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 25px;
}

#formular_kontaktni_udaje > div {
    flex: 1;
    min-width: 280px;
}

#formular_kontaktni_udaje > div:nth-child(3) {
    flex: 100%;
}

#formular_kontaktni_udaje label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1b4263;
    font-size: 14px;
}

#formular_kontaktni_udaje input,
#formular_kontaktni_udaje textarea {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid #e8f4fc;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s;
}

#formular_kontaktni_udaje input:focus,
#formular_kontaktni_udaje textarea:focus {
    outline: none;
    border-color: #4a90d9;
}

#formular_kontaktni_udaje textarea {
    resize: vertical;
    min-height: 110px;
}

.popup_uspech button:not(.tlacitko_zavrit),
.popup_obecny button:not(.tlacitko_zavrit) {
    background-color: #4a90d9;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(74, 144, 217, 0.35);
}

.vse_vporadku_popup button:hover,
.popup button:hover {
    background-color: #2e6db5;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(74, 144, 217, 0.45);
}

#popup_souhlas {
    max-width: 650px;
    display: none !important;
}

.popup_obecny {
    background-color: white;
    border-radius: 18px;
    padding: 45px 55px;
    max-width: 650px;
    width: 90%;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
    position: relative;
    display: none !important;
}

#popup_souhlas .body {
    padding: 35px;
}

#popup_souhlas ul {
    margin: 22px 0;
    padding-left: 25px;
}

#popup_souhlas li {
    margin-bottom: 12px;
    line-height: 1.7;
}

#popup_souhlas a {
    color: #4a90d9;
    text-decoration: none;
}

#popup_souhlas a:hover {
    text-decoration: underline;
}

#popup_souhlas button {
    float: right;
    margin-top: 22px;
}

#popup_podminky .body {
    padding: 35px;
    line-height: 1.8;
    color: #1b4263;
    font-size: 15px;
}

#popup_podminky .nadpis {
    font-size: 20px;
    font-weight: 700;
    margin-top: 22px;
    margin-bottom: 12px;
    color: #1b4263;
}
.paticka_odkazy > * {
    white-space: nowrap;
    display: inline-block;
}
.copyright_mobil {
    display: none
}
/* Responsive Design */
@media screen and (max-width: 1700px) {
    .hlavni_obsah {
        padding: 180px 120px;
    }
}

@media screen and (max-width: 1400px) {
    .hlavni_obsah {
        padding: 100px 80px;
    }
    
    .pole_input {
        width: 500px;
    }
}
@media screen and (max-width: 1310px) {
    .copyright_mobil {
        display: block;
        margin-bottom: 12px;
    }
    .copyright_pc {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    .oblast_loga {
        padding: 20px 0 0 30px;
        gap: 15px;
    }
    .copyright_mobil {
        display: block;
        margin-bottom: 12px;
    }
    .copyright_pc {
        display: none;
    }
}
@media screen and (max-width: 1230px) {

    .oblast_loga {
        gap: 14px;
    }
    .oblast_loga img {
        width: 120px;
        height: 120px;
    }
    .logo_text {
        font-size: 22px;
    }
}
@media screen and (max-width: 1024px) {
    .hlavni_obsah {
        padding: 80px 40px;
    }
    
    .karta_nadpis_velky {
        font-size: 28px;
    }
    
    .pole_input {
        width: 400px;
    }
    
    .bila_cast > .tlacitko_kde_najdu {
        right: 40px;
    }
    .paticka_telefon {
        font-size: 24px;
    }
    .oblast_loga {
        gap: 12px;
    }
    .oblast_loga img {
        width: 100px;
        height: 100px;
    }
    .logo_text {
        font-size: 20px;
    }
}

@media screen and (max-width: 910px) {
    .oblast_loga {
        gap: 6px;
    }
    .oblast_loga img {
        width: 80px;
        height: 80px;
    }
    .logo_text {
        font-size: 18px;
    }
}
@media screen and (max-width: 840px) {
    .paticka_telefon {
        font-size: 20px;
    }

    .karta_formular > div {
        padding: 20px 0px;
    }
}
@media screen and (max-width: 768px) {
    .karta_formular::before {
        display: none;
    }
    body {
        background: #308CDD;
        overflow-x: hidden;
    }
    
    #hlavni_stranka {
        display: flex;
        flex-direction: column;
        min-height: auto;
        position: static;
        overflow: visible;
        background: #308CDD;
    }
    
    .modra_cast {
        display: none;
    }
    
    .dekorativni_kruhy {
        display: none;
    }
    
    .bila_cast {
        width: 100%;
        position: static;
        height: auto;
        padding: 20px;
        z-index: 1;
        order: 1;
        display: flex;
        flex-direction: column;
        background: #FFFFFF;
    }
    
    .bila_cast > .paticka_kontakt {
        display: none;
    }
    
    .oblast_loga {
        flex-direction: row;
        justify-content: flex-start;
        padding: 0;
        gap: 15px;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .oblast_loga img {
        width: 60px;
        height: 60px;
    }
    
    .logo_oddelovac {
        width: 1px;
        height: 50px;
        background: #ECF6FF;
    }
    
    .logo_text {
        font-size: 16px;
        text-align: left;
    }
    
    .bila_cast > .tlacitko_kde_najdu {
        position: static;
        top: auto;
        right: auto;
        margin: 0;
        width: fit-content;
        font-size: 13px;
        padding: 10px 20px;
        align-self: flex-start;
        background: #1E486C;
    }
    
    .bila_cast > .tlacitko_kde_najdu img {
        width: 16px;
        height: 16px;
    }
    
    .bila_cast > .paticka_kontakt {
        display: none;
    }
    
    .paticka_kontakt_mobilni {
        display: block !important;
        text-align: center;
        padding: 30px 20px;
        order: 4;
        width: 100%;
        background: #308CDD;
        color: #FFFFFF;
        position: static;
    }
    
    .paticka_kontakt_mobilni b {
        color: #FFFFFF;
    }
    
    .paticka_kontakt_mobilni .paticka_telefon {
        font-size: 24px;
        justify-content: center;
        color: #FFFFFF;
    }
    
    .hlavni_obsah {
        padding: 0 20px;
        position: relative;
        height: auto;
        width: 100%;
        order: 3;
        margin-top: -150px;
        z-index: 10;
    }
    
    .karta_formular {
        padding: 40px 30px;
        width: 100%;
        align-items: flex-start;
        margin-top: 140px;
        position: relative;
    }
    

    
    .karta_nadpis_maly {
        font-size: 15px;
        text-align: left;
    }
    
    .karta_nadpis_velky {
        font-size: 24px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .obal_zadavani {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        align-items: flex-start;
    }
    
    .pole_input {
        width: 100%;
        max-width: 100%;
        height: 70px;
    }
    
    .hlavni_input {
        font-size: 24px;
        letter-spacing: 8px;
    }
    
    .tlacitko_qr,
    .tlacitko_odeslat {
        flex: 1;
        min-width: calc(50% - 5px);
        padding: 18px 20px;
        font-size: 15px;
        border-radius: 50px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    
    .tlacitko_qr {
        margin-right: 0;
    }
    
    .paticka_odkazy {
        position: static;
        left: 0;
        width: 100%;
        padding: 30px 20px;
        order: 5;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 15px;
    }
    
    .paticka_odkazy a,
    .paticka_odkazy span {
        margin: 0 !important;
        display: block !important;
        width: 100%;
        text-align: center;
    }

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

    .logo {
        width: 100%;
        justify-content: center;
        padding: 25px 20px 0;
    }
    
    .logo-circle {
        width: 75px;
        height: 75px;
    }
    
    .logo-circle span {
        font-size: 36px;
    }
    
    .logo-text {
        font-size: 18px;
        color: white;
    }

    .kde_najit_btn {
        position: relative;
        top: 0;
        right: 0;
    }

    .main-content {
        position: relative;
        left: 0;
        width: 100%;
        padding: 20px;
    }
    
    .content-card {
        padding: 40px 35px;
    }
    
    .card-title {
        font-size: 28px;
    }

    .red_alert {
        position: relative;
        left: 0;
        transform: none;
        top: 0;
        margin: 20px auto;
    }
    
    .footer {
        position: relative;
        left: 0;
        width: 100%;
        padding: 20px 30px;
        font-size: 12px;
    }

    .footer-contact {
        position: relative;
        left: auto;
        bottom: auto;
        text-align: center;
        margin: 20px auto;
        color: white;
    }

    .footer-phone {
        justify-content: center;
        color: white;
    }
    .popup_kde_najdu_identifikator {
        padding: 20px 25px;
    }
}

@media screen and (max-width: 1700px) {
    .popup_uvodni_wrapper {
        width: calc(100vw - 300px);
    }
}

@media screen and (max-width: 1400px) {
    .popup_uvodni_wrapper {
        width: calc(100vw - 200px);
    }
}

@media screen and (max-width: 1024px) {
    .popup_uvodni_wrapper {
        width: calc(100vw - 160px);
    }
}

@media screen and (max-width: 900px) {
    .formular_radek_3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .formular_radek_3 > div:last-child {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 768px) {
    .popup_uvodni_wrapper {
        width: calc(100vw - 80px);
    }
}

@media screen and (max-width: 600px) {
    .popup_uvodni_vnitrni {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .formular_radek_2,
    .formular_radek_3 {
        grid-template-columns: 1fr;
    }
    .formular_radek_3 > div:last-child {
        grid-column: auto;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        gap: 15px;
        padding: 20px;
    }
    
    .logo-circle {
        width: 65px;
        height: 65px;
    }
    
    .logo-circle span {
        font-size: 30px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .content-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .input-container {
        flex-direction: row;
        padding: 15px 20px;
    }
    
    .hlavni_input {
        font-size: 24px;
        letter-spacing: 3px;
    }
    .hlavni_input::placeholder {
        color: rgba(29, 72, 107, 0.15);
        letter-spacing:2px;
        font-weight: 400;
    }
    
    .input-buttons {
        flex-shrink: 0;
    }
    
    .qr-button,
    .submit-button {
        width: 50px;
        height: 50px;
    }
    
    .footer {
        padding: 20px;
        font-size: 11px;
    }
    
    .kde_najit_popup, .popup {
        padding: 35px 25px;
    }
    
    .popup_uspech .popup_obsah {
        padding: 35px 25px;
    }
    
    #formular_kontaktni_udaje > div {
        min-width: 100%;
    }

    .popup_uvodni_wrapper {
        width: calc(100vw - 40px);
        max-width: none;
    }

    .popup_uvodni_vnitrni {
        padding: 28px 24px 30px;
    }

    .popup_uvodni_checkbox_wrapper {
        width: 100%;
    }

    .popup_uvodni_tlacitka {
        width: 100%;
        justify-content: space-between;
    }

    .popup_uvodni_btn_zrusit,
    .popup_uvodni_btn_odeslat {
        flex: 1;
    }
}
