html, body {
            margin: 0;
            padding: 0;
            background: #0f3357;
            /* background: #000; */ /* tumšs fons */
            font-family: Arial, sans-serif;
        }

        /* Augšējā kontaktjosla */
        .contact-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0,0,0,0.55); 
            /* background: #0f3357; */
            color: #fff;
            padding: 10px 10px;
            text-align: center;
            font-size: 14px; /* font-size: 12px; */
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
            backdrop-filter: blur(6px);
            z-index: 9999;
        }

        .contact-header a,
        .contact-header span {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* Attēls centrā */
        .image-wrapper {
            margin-top: 80px; /* vieta zem header */
            margin-bottom: 80px; /* vieta virs footer */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-wrapper img {
            max-width: 100%;
            max-height: 85vh; /* attēls mazāks */
            height: auto;
            width: auto;
            border-radius: 4px;
        }

        /* Apakšējā kontaktjosla */
        .contact-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0,0,0,0.65);
            /* background: #0f3357; */
            color: #fff;
            padding: 12px 10px;
            text-align: center;
            font-size: 14px; /* font-size: 12px; */
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
            backdrop-filter: blur(6px);
        }

        .contact-footer a,
        .contact-footer span {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        /* Kontaktforma */
.wrapper-form {
    width: 100%;
    max-width: 380px;  /* max-width: 380px; */
    margin: 20px auto 100px auto;
    padding: 18px;
    background: #0f3357;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.wrapper-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wrapper-input {
    display: flex;
    gap: 15px;
}

.wrapper-input input,
textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #0a233f;
    color: #fff;
    font-size: 14px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button#send {
    padding: 12px;
    background: #25D366;
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

button#send:hover {
    background: #1eb85a;
}

/* Mobilajam ekrānam */
@media (max-width: 480px) {

    .wrapper-form {
        max-width: 90%;
        padding: 15px;
    }

    .wrapper-input {
        flex-direction: column;
        gap: 10px;
    }

    .wrapper-input input,
    textarea {
        width: 100%;
        max-width: 100%;
        padding: 10px;
        font-size: 14px;
        box-sizing: border-box; /* kritiski! */
    }
}

/* Vienāds attēlu platums uz datora */
@media (min-width: 769px) {
    .image-wrapper img {
        width: 410px;      /* width: 410px; izvēlies platumu, kas vizuāli patīk */
        height: auto;
        object-fit: contain; /* saglabā proporcijas */
        display: block;
        margin: 0 auto;     /* centrē attēlu */
    }
}

/* Apakšējais kontaktu attēls Telefons – pilnā platumā */
.contact-bar img {
    width: 100% !important;
    display: block;
}

/* Apakšējais kontaktu attēls Dators – mazāks attēls */
@media (min-width: 1024px) {
    .contact-bar img {
        width: 27% !important;   /* vari mainīt uz 70%, 60%, 50%, 40% */
        margin: 0 auto !important;
        display: block;
    }
}

/* Apakšējais kontaktu attēls stāv uz vietas */
.contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.contact-bar img {
    width: 100%;
    display: block;
}


