/* Stilizimi ne css */

*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}

body
{
    font-family: Arial;
    margin: 0;
}

:root
{
    --primare: #0a1f44;
    --sekondare: rgb(18, 104, 251);
}

/* Shiriti i kontaktit ~ FILLIMI */

.shiriti-kontaktit 
{
    background: var(--primare);
    color: white;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}

.container
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.info-kontakt
{
    display: flex;
    gap: 50px;
    font-size: 16px;
}

.info-kontakt span
{
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-kontakt img
{
    width: 20px; 
    height: 20px;
}

.info-djathtas
{
  display: flex;
  gap: 20px;
  align-items: center;
}

.info-djathtas span
{
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-djathtas img
{
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.rrjetet-sociale
{
    display: flex;
    gap: 20px;
}

.rrjetet-sociale img
{
    width: 24px;
    height: 24px;
    transition: 0.3s;
}

/* Shiriti i kontaktit ~ PERFUNDIMI */





/* Striktura e heeader ~ FILLIMI */

.header
{
    background: transparent;
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.header::after
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(75,75,75);
}

.header .container
{
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo
{
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.emri-faqes
{
    font-size: 24px;
    font-weight: bolder;
    color: white;
}

.menu ul
{
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu ul li 
{
    display: inline;
}

.menu ul li a 
{
    text-decoration: none;
    font-size: 18px;
    color: white;
    transition: 0.3s;
}

.termin-btn
{
    background: white;
    color: var(--sekondare);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 200;
    text-decoration: none;
    transition: 0.3s;
}

.termin-btn:hover
{
    background: var(--primare);
}

/* Striktura e heeader ~ PERFUNDIMI */





/* Struktura e heroit ~ FILLIMI */

.hero
{
    background:linear-gradient(0deg, rgba(0, 0, 255, 0.8), rgba(0, 0, 255, 0.8)), url(assets/fotot/hero_background.jpg);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container
{
    padding: 0 200px;
    width: 1700px;
}

.titulli1
{
    font-size: 20px;
    color: white;
    font-weight: bold;
    margin-bottom: 15px;
}

.titulli2
{
    font-size: 90px;
    color: white;
    font-weight: bolder;
    margin-bottom: 15px;
    max-width: 800px;
}

.shkrimi
{
    font-size: 20px;
    color: white;
    font-weight: 100;
    margin-bottom: 50px;
}


.button-hero
{
    display: flex;
    padding: 13px 50px;
    background-color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    color: var(--sekondare);
    cursor: pointer;
}

.button-hero:hover
{
    background-color: var(--primare);
    transition: 0.5s;
    color: white;
}

.hero-image img
{
    width: 450px;
    height: 600px;
    clip-path: ellipse(350px 360px at 300px 400px); /* Nuk kam mujt me ba shape-n e njejte si te modeli projektues, por e bera nje te ngjashme duke perdorur faqen https://bennettfeely.com/clippy/ */
    border-radius:70% 30% 30% 70% / 60% 40% 60% 40%;
    filter: drop-shadow(5px 5px 10px rgba(255, 255, 255, 0.5));
}

/* Struktura e heroit ~ PERFUNDIMI */





/* Struktura e rrethnesh ~ FILLIMI */

.rreth-nesh
{
    background-color: rgba(230, 230, 230, 0.15);
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rrethnesh-image img
{
    padding-left: 20px;
    padding-right: 60px;
    max-width: 500px;
    height: 500px;
    border-radius: 60%;
    clip-path: ellipse(250px 260px at 200px 300px); /* Nuk kam mujt me ba shape-n e njejte si te modeli projektues, por e bera nje te ngjashme duke perdorur faqen https://bennettfeely.com/clippy/ */
    filter: drop-shadow(15px 40px 30px rgba(70, 70, 70, 0.5));
}

.rrethnesh1
{
    font-size: 20px;
    color: var(--sekondare);
    margin-bottom: 5px;
}

.rrethnesh2
{
    font-size: 70px;
    color: var(--primare);
    line-height: 1.2;
    margin-bottom: 20px;
}

.rrethnesh3
{
    font-size: 20px;  
    color: var(--primare);
    margin-bottom: 40px;
}

.button-rrethnesh
{
    display: flex;
    padding: 13px 50px;
    background-color: var(--primare);
    border: none;
    border-radius: 25px;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

.button-rrethnesh:hover
{
    background-color: var(--sekondare);
    transition: 0.5s;
    color: white;
}

/* Struktura e rrethnesh ~ PERFUNDIMI */





/* Struktura e fakteve ~ FILLIMI */

.faktet
{
    background-color: var(--primare);
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.faktet .container
{
    max-width: 1700px;
    width: 100%;
}

.titujt
{
    margin-bottom: 20px;
}

.nentitulli-fakte
{
    font-size: 18px;
    color: var(--sekondare);
    margin-bottom: 10px;
    text-align: left;
}

.nr-flasin
{
    font-size: 60px;
    color: white;
    font-weight: bolder;
}

.fakte-kutia
{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.fakte-shkrimi-ikona
{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-right: 15px;
}

.ikona
{
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.fakte-shkrimi-ikona h3
{
    font-size: 50px;
    color: white;
    font-weight: bold;
}

.fakte-shkrimi-ikona p
{
    font-size: 16px;
    color: white;
}

/* Struktura e fakteve ~ PERFUNDIMI */





/* Struktura e sherbimeve - FILLIMI */

.sherbimet
{
    background-color: rgba(230, 230, 230, 0.15);
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sherbimet .container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1700px;
    padding: 40px 20px;
}

.sherbimet-tona
{
    color: var(--sekondare);
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 10px;
}

.sherbimet-titulli
{
    color: rgb(10, 10, 50);
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sherbimet-pershkrimi
{
    color: rgb(50, 50, 50);
    font-size: 20px;
    margin-bottom: 40px;
}

.sherbimet-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 40px;
}

.sherbim-kutia
{
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 250px;
    outline-style: solid;
    outline-color: rgb(210, 210, 210);
    outline-width: thin;
}

.sherbim-kutia:hover
{
    transform: translateY(-5px);
}

.sherbim-icon
{
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.sherbim-kutia h3
{
    font-size: 24px;
    color: #1e1b4b;
    margin-bottom: 15px;
}

.sherbim-kutia p
{
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
}

.sherbimet-lexoms
{
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: bold;
}

.sherbimet-lexoms:hover
{
    text-decoration: underline;
}

/* Struktura e sherbimeve - PERFUNDIMI */





/* Pse ne - FILLIMI */

.pse-ne
{
    background-color: rgba(230, 230, 230, 0.15);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.pse-ne .container
{
    max-width: 1600px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.pse-ne-shtresa
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    min-height: 450px;
}

.pse-ne-text
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;
}

.pse-ne-nentitulli
{
    color: var(--sekondare);
    font-size: 18px;
    margin-bottom: 10px;
}

.pse-ne-titulli
{
    color: #1e1b4b;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 20px;
    max-width: 600px;
}

.pse-ne-pershkrimi
{
    color: #64748b;
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 500px;
    position: relative;
}

.pse-ne-pershkrimi::after
{
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
}

.pse-ne-permbajtja
{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 20px;
}

.pse-ne-statistikat
{
    display: flex;
    align-items: center;
    gap: 20px;
}

.shkalla-suksesit
{
    position: relative;
    width: 140px;
    height: 140px;
}

.bg-circle
{
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 10;
}

.fg-circle
{
    fill: none;
    stroke: #1e1b4b;
    stroke-width: 10;
    stroke-dasharray: 376.8;
    stroke-dashoffset: 94.20;
    transition: stroke-dashoffset 0.3s ease;
}

.nr-vleresimit
{
    font-size: 24px;
    font-weight: bold;
    fill: #1e1b4b;
}

.texti-statistikav-shtresa
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.teksti-statistikes
{
    color: #1e1b4b;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.pershkrimi-statistikes
{
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.pse-ne-foto
{
    flex-shrink: 0;
    position: relative;
    width: 450px;
    height: 450px;
}

.pse-ne-fotoja
{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    clip-path: polygon(50% 0%, 80% 10%, 96% 33%, 90% 69%, 79% 86%, 50% 100%, 20% 90%, 10% 72%, 8% 33%, 22% 13%); 
}

/* Pse ne - PERFUNDIMI */





/* Struktura e procesit te punes - FILLIMI */

.procesi-punues
{
    background-color: #E9EAEC;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.procesi-punues .container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1400px;
    padding: 0 20px;
}

.procesi-punues-nentitulli
{
    color: var(--sekondare);
    font-size: 18px;
    margin-bottom: 10px;
}

.procesi-punues-titulli
{
    color: var(--primare);
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 40px;
}

.hapat-e-procesit
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.hapi
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 22%;
}

.hapi-numer
{
    width: 50px;
    height: 50px;
    background-color: white;
    color: var(--sekondare);
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    border: 2px solid lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.hapi:nth-child(1) .hapi-numer
{
    background-color: darkblue;
    color: white;
    border: none;
}

.hapi h3
{
    color: var(--primare);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hapi p
{
    color: #64748b;
    font-size: 16px;
    line-height: 1.5;
}

.hapi-lidhsja
{
    flex-grow: 1;
    height: 22px;
    background: url('assets/ikonat/dashed_line.png') repeat-x;
    background-size: 20px 22px;
}

/* Struktura e procesit te punes - PERFUNDIMI */





/* Struktura e ekipes - FILLIMI */

.ekipa
{
    background-color: rgba(230, 230, 230, 0.15);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 500px;
}

.ekipa .container
{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1700px;
    width: 100%;
    gap: 40px;
}

.ekipa-permbajtja
{
    flex: 1;
    max-width: 500px;
}

.ekipa-nentitulli
{
    color: var(--sekondare);
    font-size: 18px;
    margin-bottom: 10px;
}

.ekipa-titulli
{
    color: var(--primare);
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 20px;
}

.ekipa-pershkrimi
{
    color: #64748b;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.ekipa-specifikat
{
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ekipa-specifikat li
{
    color: var(--primare);
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ikona-blue-check
{
    width: 24px;
    height: 24px;
    margin-right: 5px;
    margin-bottom: 10px;
    vertical-align: middle;
}

.ekipa-buttoni
{
    background-color: #0a1f44;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ekipa-buttoni:hover
{
    background-color: var(--sekondare);
}

.ekipa-anetaret
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 2;
}

.ekipa-anetari
{
    text-align: center;
}

.foto-anetarit
{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.emri-anetarit
{
    color: var(--primare);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.titulli-anetarit
{
    color: #64748b;
    font-size: 14px;
}

/* Struktura e ekipes - PERFUNDIMI */





/* Struktura e cmimores - FILLIMI */

.cmimorja
{
    background-color: rgba(230, 230, 230, 0.15);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.cmimorja .container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1700px;
    width: 100%;
}

.cmimorja-nentitulli
{
    color: var(--sekondare);
    font-size: 18px;
    margin-bottom: 10px;
}

.cmimorja-titulli
{
    color: var(--primare);
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.kutia-cmimeve
{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.kutia-cmimit
{
    background-color: #f5f7fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: transform 0.3s ease;
}

.kutia-cmimit:hover
{
    transform: translateY(-5px);
}

.highlighted
{
    background-color: white;
}

.titulli-pakos
{
    text-align: left;
    margin-bottom: 10px;
}

.emri-pakos
{
    color: var(--primare);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.cmimi-pakos
{
    color: var(--primare);
    font-size: 45px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1;
}

.cmimi-pakos span
{
    font-size: 18px;
    font-weight: normal;
    color: #64748b;
}

.vija-poshte-cmimit
{
    border: 0;
    height: 1px;
    background-color: #ccc;
    margin: 5px 0 10px 0;
    width: 100%;
}

.pershkrimi-pakos
{
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

.buttoni-pakos
{
    background-color: white;
    color: var(--primare);
    padding: 14px 40px;
    border: 2px solid var(--primare);
    border-radius: 35px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.7s ease;
    display: inline-block;
}

.buttoni-pakos:hover
{
    background-color: var(--primare);
    color: white;
}

.highlighted .buttoni-pakos
{
    background-color: var(--primare);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 500;
}

.highlighted .buttoni-pakos:hover
{
    background-color: #0a1f44;
}

.specifikat-pakos
{
    list-style: none;
    padding: 0;
    text-align: left;
}

.specifikat-pakos li
{
    color: #64748b;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check-ikona
{
    color: gray;
    margin-right: 10px;
    font-size: 18px;
}

/* Struktura e cmimores - PERFUNDIMI */





/* Struktura e FAQ - FILLIMI */

.faq
{
    background-color: rgba(230, 230, 230, 0.15);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 400px;

}

.faq .container
{
    display: flex;
    max-width: 1700px;
    width: 100%;
    gap: 40px;
}

.faq-titujt
{
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.faq-info
{
    color: var(--sekondare);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.faq-titulli
{
    color: var(--primare);
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.faq-nentitulli
{
    color: #64748b;
    font-size: 18px;
    margin-bottom: 20px;
}

.faq-buttoni
{
    background-color: var(--primare);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.7s ease;
    display: inline-block;
}

.faq-buttoni:hover
{
    background-color: #0a1f44;
}

.faq-permbajtja
{
    flex: 2;
    padding: 20px;
    border-radius: 10px;
}

.faq-pika
{
    margin-bottom: 10px;
}

.faq-pyetja
{
    background-color: rgba(230, 230, 230, 0.15);
    color: var(--primare);
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 50;
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.faq-pyetja:after
{
    color: var(--sekondare);
    content: '+';
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.faq-pyetja.active:after
{
    content: '-';
}

.faq-pergjigjja
{
    display: none;
    padding: 15px;
    background-color: white;
    color: #64748b;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    margin-top: -1px;
}

.faq-pergjigjja p
{
    margin: 0;
    font-size: 14px;
}

.faq-pika.active .faq-pergjigjja
{
    display: block;
}

/* Struktura e FAQ - PERFUNDIMI */





/* Struktura e informatave dhe abonimit - FILLIMI */

.infot
{
    background-color: var(--primare);
    padding: 40px 20px;
    color: white;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.infot .container
{
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.infot-pamja
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.infot-nentitulli
{
    color: var(--sekondare);
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.infot-titulli
{
    font-size: 45px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    max-width: 700px;
    margin-bottom: 15px;
}

.infot-forma
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.infot-inputet
{
    display: flex;
    border: 2px solid white;
    border-radius: 30px;
    overflow: hidden;
    background-color: transparent;
}

.infot-emaili
{
    padding: 12px 20px;
    border: none;
    font-size: 16px;
    width: 250px;
    outline: none;
    color: white;
    background-color: transparent;
    border-radius: 30px 0 0 30px;
}

.infot-buttoni
{
    padding: 12px 25px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    background-color: var(--sekondare);
    color: white;
    transition: background-color 0.3s ease;
    border-radius: 0 30px 30px 0;
}

.infot-buttoni:hover
{
    background-color: #2563eb;
}

/* Struktura e informatave dhe abonimit - PERFUNDIMI */





/* Struktura e Footer - FILLIMI */

.footer
{
    background-color: rgba(230, 230, 230, 0.15);
    color: #333333;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

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

.footer-pjesa-larte
{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 40px;
    gap: 20px;
}

.footer-ikonat-rrethit
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #3b82f6;
    border-radius: 50%;
    overflow: hidden;
}

.footer-ikonat-rrethit img
{
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-kutia-lokacion-email-nr
{
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(211, 211, 211, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: calc(33.33% - 13.33px);
    text-align: left;
    flex-direction: row;
    gap: 15px;
}

.footer-ikonat-lart
{
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-kutia-permbajtja
{
    display: flex;
    flex-direction: column;
}

.footer-kutia-titulli
{
    font-size: 12px;
    font-weight: bold;
    color: #666666;
    margin: 0 0 5px 0;
}

.footer-kutia-nentitulli
{
    font-size: 16px;
    color: var(--primare);
    font-weight: 550;
    margin: 0;
}

.footer-pjesa-poshte
{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-kolonat
{
    flex: 1;
    padding: 0 15px;
}

.footer-logo
{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img
{
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.footer-logo span
{
    font-size: 18px;
    font-weight: bold;
    color: var(--primare);
}

.footer-kolonat p
{
    margin-bottom: 20px;
    color: #333333;
    font-size: 14px;
}

.footer-kolonat h3
{
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primare);
}

.footer-kolonat ul
{
    list-style: none;
    padding: 0;
}

.footer-kolonat ul li
{
    margin-bottom: 10px;
}

.footer-kolonat ul li a
{
    color: #333333;
    text-decoration: none;
    font-size: 14px;
}

.footer-kolonat ul li a:hover
{
    color: #3b82f6;
}

.footer-rrjetet-sociale
{
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-rrjetet-sociale a
{
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-rrjetet-sociale-rrethi-ikones
{
    width: 30px;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.footer-rrjetet-sociale-rrethi-ikones img
{
    width: 18px;
    height: 18px;
    filter: none;
    transition: opacity 0.3s;
}

.footer-rrjetet-sociale a:hover .footer-rrjetet-sociale-rrethi-ikones img
{
    opacity: 0.8;
}

.footer-copyright
{
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
    color: #666666;
    font-size: 14px;
}

/* Struktura e Footer - PERFUNDIMI */