/* =========================================
   NGJYRAT DHE RREGULLIMET KRYESORE
========================================= */

:root {
    --blue: #278bb5;
    --light-blue: #dff3fa;
    --sky: #f1faff;

    --green: #4f9278;
    --light-green: #e4f2e9;

    --coral: #e76f51;
    --light-coral: #fbe5dd;

    --yellow: #efbd58;
    --light-yellow: #fff4d5;

    --cream: #fffaf1;
    --white: #ffffff;

    --navy: #244357;
    --text: #31404a;
    --grey: #6d7b83;

    --border: rgba(36, 67, 87, 0.13);

    --title-font: "Playfair Display", Georgia, serif;
    --body-font: "DM Sans", Arial, sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    width: 100%;
    overflow-x: hidden;
    color: var(--text);
    background-color: var(--white);
    font-family: var(--body-font);
}


body.menu-open {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


img {
    display: block;
    max-width: 100%;
}


/* =========================================
   HEADER DHE MENUJA
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.site-header.header-scrolled {
    border-bottom-color: var(--border);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(36, 67, 87, 0.09);
    backdrop-filter: blur(15px);
}


.navbar {
    width: min(1240px, 92%);
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
}


.site-header.header-scrolled .brand {
    color: var(--navy);
}


.brand-symbol {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
}


.site-header.header-scrolled .brand-symbol {
    border-color: transparent;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--green)
        );
}


.brand-text {
    display: flex;
    flex-direction: column;
}


.brand-text strong {
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}


.navigation {
    display: flex;
    align-items: center;
    gap: 29px;
}


.navigation a {
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
}


.site-header.header-scrolled .navigation a {
    color: var(--text);
}


.navigation a:not(.navigation-contact)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    border-radius: 10px;
    background-color: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}


.navigation a:hover::after {
    transform: scaleX(1);
}


.navigation-contact {
    padding: 11px 20px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 30px;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}


.site-header.header-scrolled .navigation-contact {
    border-color: transparent;
    color: var(--white) !important;
    background-color: var(--coral);
}


.navigation-contact:hover {
    border-color: var(--yellow);
    color: var(--navy);
    background-color: var(--yellow);
}


.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
}


.menu-button span {
    width: 18px;
    height: 2px;
    margin: 4px auto;
    display: block;
    border-radius: 5px;
    background-color: var(--white);
}


.site-header.header-scrolled .menu-button {
    border-color: var(--border);
}


.site-header.header-scrolled .menu-button span {
    background-color: var(--navy);
}


/* =========================================
   PAMJA HYRËSE
========================================= */

.hero {
    position: relative;
    min-height: 700px;
    height: 94vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background-color: var(--blue);
}


.hero-image {
    position: absolute;
    inset: 0;
    background-image: url("images/shqiperia-1.jpg");
    background-position: center;
    background-size: cover;
    animation: heroMovement 16s ease-in-out infinite alternate;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(25, 74, 94, 0.89) 0%,
            rgba(35, 105, 126, 0.70) 48%,
            rgba(43, 139, 181, 0.18) 100%
        ),
        linear-gradient(
            0deg,
            rgba(26, 63, 78, 0.38),
            transparent 55%
        );
}


.hero-content {
    position: relative;
    z-index: 3;
    width: min(1240px, 92%);
    margin: 80px auto 0;
}


.hero-label {
    width: fit-content;
    margin-bottom: 22px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}


.hero h1 {
    max-width: 930px;
    font-family: var(--title-font);
    font-size: clamp(56px, 7vw, 98px);
    font-weight: 500;
    letter-spacing: -3px;
    line-height: 0.98;
}


.hero h1 span {
    max-width: 850px;
    margin-top: 8px;
    display: block;
    color: #ffe3a2;
    font-style: italic;
}


.hero-description {
    max-width: 580px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}


.hero-buttons {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 14px;
}


.main-button {
    min-height: 52px;
    padding: 0 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--navy);
    background-color: var(--yellow);
    box-shadow: 0 12px 30px rgba(40, 63, 75, 0.18);
    font-size: 13px;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}


.main-button:hover {
    transform: translateY(-3px);
    background-color: #ffd77c;
}


.hero-decorations {
    position: absolute;
    right: 4%;
    bottom: 45px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
}


.decoration {
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
}


.decoration-blue {
    width: 18px;
    height: 18px;
    background-color: var(--blue);
}


.decoration-yellow {
    width: 25px;
    height: 25px;
    background-color: var(--yellow);
}


.decoration-coral {
    width: 14px;
    height: 14px;
    background-color: var(--coral);
}


@keyframes heroMovement {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.08);
    }
}


/* =========================================
   HYRJA PËR SHQIPËRINË
========================================= */

.albania-introduction {
    position: relative;
    padding: 100px 5%;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            var(--sky),
            var(--cream)
        );
}


.introduction-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


.section-small-title {
    margin-bottom: 14px;
    color: var(--coral);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.introduction-content h2,
.section-heading h2,
.gallery-heading h2,
.project-content h2 {
    color: var(--navy);
    font-family: var(--title-font);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1.08;
}


.introduction-content h2 span {
    color: var(--blue);
    font-style: italic;
}


.introduction-content > p:not(.section-small-title) {
    max-width: 700px;
    margin: 24px auto 0;
    color: var(--grey);
    font-size: 16px;
    line-height: 1.85;
}


.introduction-content .introduction-second-paragraph {
    margin-top: 13px;
    font-size: 15px;
}


.introduction-shapes span {
    position: absolute;
    border-radius: 50%;
}


.introduction-shapes span:nth-child(1) {
    top: 40px;
    left: 7%;
    width: 90px;
    height: 90px;
    background-color: var(--light-yellow);
}


.introduction-shapes span:nth-child(2) {
    right: 9%;
    bottom: 45px;
    width: 70px;
    height: 70px;
    background-color: var(--light-coral);
}


.introduction-shapes span:nth-child(3) {
    top: 55px;
    right: 24%;
    width: 24px;
    height: 24px;
    background-color: var(--light-green);
}


/* =========================================
   KARTAT E INFORMACIONIT
========================================= */

.albania-facts {
    width: 100%;
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}


.fact-card {
    min-height: 125px;
    padding: 22px 16px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(36, 67, 87, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 35px rgba(36, 67, 87, 0.12);
}


.fact-card strong {
    color: var(--navy);
    font-family: var(--title-font);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.1;
}


.fact-card span {
    margin-top: 8px;
    color: var(--grey);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}


.fact-blue {
    background:
        linear-gradient(
            145deg,
            var(--light-blue),
            var(--white)
        );
}


.fact-coral {
    background:
        linear-gradient(
            145deg,
            var(--light-coral),
            var(--white)
        );
}


.fact-green {
    background:
        linear-gradient(
            145deg,
            var(--light-green),
            var(--white)
        );
}


.fact-yellow {
    background:
        linear-gradient(
            145deg,
            var(--light-yellow),
            var(--white)
        );
}


/* =========================================
   HARTA
========================================= */

.map-section {
    padding: 105px 5%;
    background-color: var(--white);
}


.section-heading {
    width: min(1080px, 100%);
    margin: 0 auto 45px;
}


.map-card {
    width: min(1080px, 100%);
    min-height: 570px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    background-color: var(--cream);
    box-shadow: 0 25px 70px rgba(36, 67, 87, 0.11);
}


.map-information {
    position: relative;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(239, 189, 88, 0.35),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #e6f6fb,
            #f3fbf6
        );
}


.map-information::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background-color: rgba(231, 111, 81, 0.10);
}


.destination-number {
    color: var(--blue);
    font-family: var(--title-font);
    font-size: 60px;
    line-height: 1;
}


.destination-label {
    margin-top: 17px;
    color: var(--coral);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.map-information h3 {
    margin: 10px 0 20px;
    color: var(--navy);
    font-family: var(--title-font);
    font-size: 59px;
    font-weight: 500;
}


.destination-text {
    max-width: 380px;
    color: var(--grey);
    font-size: 15px;
    line-height: 1.8;
}


.destination-categories {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


.destination-categories span {
    padding: 8px 13px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}


.destination-categories span:nth-child(1) {
    color: #9f422e;
    background-color: var(--light-coral);
}


.destination-categories span:nth-child(2) {
    color: #326b8a;
    background-color: var(--light-blue);
}


.destination-categories span:nth-child(3) {
    color: #39735c;
    background-color: var(--light-green);
}


.discover-kruja-button {
    position: relative;
    z-index: 2;
    width: fit-content;
    min-height: 49px;
    margin-top: 30px;
    padding: 0 22px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 25px;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--coral),
            #ef896d
        );
    box-shadow: 0 10px 25px rgba(231, 111, 81, 0.20);
    font-size: 12px;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.discover-kruja-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(231, 111, 81, 0.28);
}


.map-visual {
    position: relative;
    min-height: 570px;
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--light-yellow);
}


.map-decoration {
    position: absolute;
    border-radius: 50%;
}


.map-decoration-one {
    top: -65px;
    right: -65px;
    width: 210px;
    height: 210px;
    background-color: rgba(39, 139, 181, 0.13);
}


.map-decoration-two {
    bottom: -60px;
    left: -60px;
    width: 175px;
    height: 175px;
    background-color: rgba(79, 146, 120, 0.15);
}


.real-map-wrapper {
    position: relative;
    z-index: 3;
    width: min(290px, 72%);
    margin: 0 auto;
}


.real-albania-map {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 15px rgba(36, 67, 87, 0.14));
}


/*
   LINKU TRANSPARENT MBI FJALËN KRUJË
*/

.kruja-map-link {
    position: absolute;
    top: 39.5%;
    left: 19%;
    z-index: 50;
    width: 20%;
    height: 7%;
    display: block;
    border-radius: 8px;
    cursor: pointer;
    background-color: transparent;
}


.kruja-map-link:hover {
    outline: 2px solid rgba(231, 111, 81, 0.55);
    background-color: rgba(255, 255, 255, 0.12);
}


.map-instruction {
    position: relative;
    z-index: 3;
    margin-top: 23px;
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
}


/* =========================================
   PROJEKTI
========================================= */

.project-section {
    padding: 105px 5%;
    background:
        linear-gradient(
            135deg,
            var(--light-green),
            var(--sky)
        );
}


.project-card {
    width: min(1080px, 100%);
    min-height: 460px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    overflow: hidden;
    border-radius: 30px;
    background-color: var(--white);
    box-shadow: 0 22px 60px rgba(36, 67, 87, 0.10);
}


.project-logo-area {
    position: relative;
    min-height: 460px;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 20% 15%,
            rgba(255, 255, 255, 0.8),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            var(--light-blue),
            var(--light-green)
        );
}


.project-logo-area::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -55px;
    width: 190px;
    height: 190px;
    border: 28px solid rgba(239, 189, 88, 0.23);
    border-radius: 50%;
}


.project-logo-area::after {
    content: "";
    position: absolute;
    bottom: -55px;
    left: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: rgba(231, 111, 81, 0.13);
}


.project-logo-image {
    position: relative;
    z-index: 3;
    width: min(280px, 85%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(36, 67, 87, 0.14));
}


.project-logo-placeholder {
    position: relative;
    z-index: 2;
    width: min(280px, 88%);
    min-height: 230px;
    padding: 30px;
    border: 2px dashed rgba(39, 139, 181, 0.35);
    border-radius: 24px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background-color: rgba(255, 255, 255, 0.65);
    text-align: center;
    backdrop-filter: blur(8px);
}


.project-logo-placeholder::before {
    content: "360°";
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--green)
        );
    font-family: var(--title-font);
    font-size: 21px;
    font-weight: 600;
}


.project-logo-placeholder span {
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 600;
}


.project-logo-placeholder small {
    margin-top: 7px;
    color: var(--grey);
    font-size: 10px;
    letter-spacing: 1px;
}


.project-content {
    padding: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.project-description {
    max-width: 600px;
    margin-top: 22px;
    color: var(--text);
    font-family: var(--title-font);
    font-size: 21px;
    line-height: 1.55;
}


.project-official,
.project-financing {
    max-width: 600px;
    margin-top: 16px;
    padding: 17px 20px;
    border-radius: 0 12px 12px 0;
    color: var(--grey);
    font-size: 13px;
    line-height: 1.75;
}


.project-official {
    border-left: 4px solid var(--yellow);
    background-color: var(--light-yellow);
}


.project-financing {
    border-left: 4px solid var(--coral);
    background-color: var(--light-coral);
}


.project-official strong,
.project-financing strong {
    color: var(--text);
}


/* =========================================
   GALERIA ME 10 FOTO
========================================= */

.gallery-section {
    padding: 105px 0;
    overflow: hidden;
    background-color: var(--white);
}


.gallery-heading {
    width: min(1120px, 92%);
    margin: 0 auto 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}


.gallery-buttons {
    display: flex;
    gap: 10px;
}


.gallery-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--navy);
    background-color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}


.gallery-arrow:hover {
    color: var(--white);
    background-color: var(--blue);
    transform: translateY(-2px);
}


.gallery-track {
    padding: 5px 5% 25px;
    display: flex;
    align-items: stretch;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}


.gallery-track:active {
    cursor: grabbing;
}


.gallery-track::-webkit-scrollbar {
    display: none;
}


.gallery-photo {
    position: relative;
    flex: 0 0 310px;
    height: 390px;
    overflow: hidden;
    border-radius: 20px;
    background-color: var(--light-blue);
    box-shadow: 0 14px 35px rgba(36, 67, 87, 0.10);
}


.gallery-photo-large {
    flex-basis: 430px;
}


.gallery-photo:nth-child(3n + 1) {
    transform: translateY(13px);
}


.gallery-photo:nth-child(3n + 2) {
    transform: translateY(-3px);
}


.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.7s ease;
}


.gallery-photo:hover img {
    transform: scale(1.06);
}


/* =========================================
   DREJTKËNDËSHI PËRMBYLLËS
========================================= */

.final-banner {
    position: relative;
    min-height: 470px;
    padding: 85px 5%;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(
            90deg,
            rgba(39, 139, 181, 0.90),
            rgba(79, 146, 120, 0.70)
        ),
        url("images/shqiperia-2.jpg") center/cover no-repeat;
}


.final-banner::before {
    content: "";
    position: absolute;
    top: -90px;
    right: 7%;
    width: 240px;
    height: 240px;
    border: 35px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}


.final-banner-content {
    position: relative;
    z-index: 2;
    width: min(850px, 100%);
    margin: 0 auto;
    text-align: center;
}


.final-small-title {
    margin-bottom: 16px;
    color: #ffe09a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}


.final-banner h2 {
    font-family: var(--title-font);
    font-size: clamp(43px, 6vw, 70px);
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1.08;
}


.final-banner h2 span {
    color: #ffe3a4;
    font-style: italic;
}


.final-banner-content > p:not(.final-small-title) {
    max-width: 650px;
    margin: 23px auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.8;
}


.final-button {
    min-height: 50px;
    margin-top: 30px;
    padding: 0 23px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    gap: 22px;
    color: var(--navy);
    background-color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}


.final-button:hover {
    transform: translateY(-3px);
    background-color: var(--white);
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 75px 5% 0;
    color: var(--text);
    background-color: #eef8f5;
}


.footer-content {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding-bottom: 55px;
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr 0.7fr;
    gap: 55px;
}


.footer .brand {
    color: var(--navy);
}


.footer .brand-symbol {
    border-color: transparent;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--green)
        );
}


.footer-brand > p,
.footer-project p {
    margin-top: 20px;
    color: var(--grey);
    font-size: 13px;
    line-height: 1.75;
}


.footer-project p + p {
    margin-top: 10px;
}


.footer h3 {
    margin-bottom: 20px;
    color: var(--coral);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.footer-links a,
.footer-contact a {
    margin-bottom: 11px;
    color: var(--grey);
    font-size: 13px;
    transition: color 0.3s ease;
}


.footer-links a:hover,
.footer-contact a:hover {
    color: var(--blue);
}


.footer-bottom {
    width: min(1120px, 100%);
    min-height: 75px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--grey);
    font-size: 11px;
}


/* =========================================
   ANIMIMET E JAVASCRIPT
========================================= */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}


.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 980px) {

    .navigation {
        gap: 16px;
    }


    .navigation a {
        font-size: 11px;
    }


    .albania-facts {
        grid-template-columns: repeat(2, 1fr);
    }


    .map-information {
        padding: 55px 35px;
    }


    .project-content {
        padding: 55px 40px;
    }


    .project-logo-image {
        width: min(230px, 82%);
    }


    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 760px) {

    .navbar {
        min-height: 78px;
    }


    .brand-symbol {
        width: 43px;
        height: 43px;
        font-size: 11px;
    }


    .brand-text strong {
        max-width: 210px;
        overflow: hidden;
        font-size: 15px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }


    .menu-button {
        position: relative;
        z-index: 1002;
        display: block;
    }


    .navigation {
        position: fixed;
        inset: 0;
        z-index: 1001;
        padding: 125px 8% 50px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        background:
            linear-gradient(
                145deg,
                var(--blue),
                var(--green)
            );
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }


    .navigation.active {
        transform: translateX(0);
    }


    .navigation a,
    .site-header.header-scrolled .navigation a {
        color: var(--white);
        font-family: var(--title-font);
        font-size: 29px;
    }


    .navigation-contact,
    .site-header.header-scrolled .navigation-contact {
        padding: 0;
        border: none;
        background: transparent;
    }


    .hero {
        min-height: 720px;
        height: 100vh;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(31, 94, 117, 0.91),
                rgba(39, 139, 181, 0.48)
            ),
            linear-gradient(
                0deg,
                rgba(20, 66, 82, 0.50),
                transparent
            );
    }


    .hero-content {
        margin-top: 55px;
    }


    .hero h1 {
        font-size: clamp(48px, 14vw, 68px);
        letter-spacing: -2px;
    }


    .hero-description {
        max-width: 95%;
        font-size: 14px;
    }


    .albania-introduction,
    .map-section,
    .project-section,
    .gallery-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }


    .introduction-content h2,
    .section-heading h2,
    .gallery-heading h2,
    .project-content h2 {
        font-size: 43px;
    }


    .introduction-content > p:not(.section-small-title) {
        font-size: 14px;
    }


    .albania-facts {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 32px;
    }


    .fact-card {
        min-height: 110px;
        padding: 17px 10px;
    }


    .fact-card strong {
        font-size: 21px;
    }


    .fact-card span {
        font-size: 8px;
    }


    .map-card {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }


    .map-information {
        padding: 50px 28px;
    }


    .map-information h3 {
        font-size: 52px;
    }


    .map-visual {
        min-height: 480px;
        padding: 40px 20px;
    }


    .real-map-wrapper {
        width: min(245px, 68%);
    }


    .project-card {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }


    .project-logo-area {
        min-height: 340px;
        padding: 30px;
    }


    .project-logo-image {
        width: min(220px, 78%);
    }


    .project-logo-placeholder {
        min-height: 210px;
    }


    .project-content {
        padding: 50px 28px;
    }


    .project-financing,
    .project-official {
        font-size: 12px;
    }


    .gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }


    .gallery-photo,
    .gallery-photo-large {
        flex-basis: 80vw;
        height: 390px;
        transform: none;
    }


    .final-banner {
        min-height: 530px;
    }


    .final-banner h2 {
        font-size: 43px;
    }


    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .footer-bottom {
        padding: 22px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}
/* LOGOJA E PROJEKTIT – RRETHORE */

.project-logo-image {
    width: 310px;
    height: 310px;
    padding: 0;
    overflow: hidden;
    border: none;
    border-radius: 50%;
    background-color: white;
    object-fit: cover;
    object-position: center;
    clip-path: circle(49% at 50% 50%);
    filter: drop-shadow(0 15px 25px rgba(36, 67, 87, 0.18));
}
@media (max-width: 760px) {
    .project-logo-image {
        width: 240px;
        height: 240px;
    }
}
@media (max-width: 760px) {
    .project-logo-image {
        width: 270px;
        height: 270px;
    }
}
@media (max-width: 760px) {
    .project-logo-image {
        width: 270px;
        height: 270px;
    }
}
.project-logo-image {
    width: 330px;
    height: 330px;
    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;
    clip-path: circle(43% at 50% 50%);

    background: transparent;
    mix-blend-mode: multiply;

    border: none;
    box-shadow: none;
}
@media (max-width: 760px) {
    .project-logo-image {
        width: 270px;
        height: 270px;
    }
}
/* =========================================
   LOGOJA NË HEADER – VERSIONI PËRFUNDIMTAR
========================================= */

.brand-symbol.brand-logo {
    width: 54px;
    height: 54px;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: none;
    background: transparent;
}

.brand-symbol.brand-logo img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;
    transform: scale(1.05);
    mix-blend-mode: multiply;
}

/* Logoja në telefon */

@media (max-width: 760px) {
    .brand-symbol.brand-logo {
        width: 44px;
        height: 44px;
    }

    .brand-symbol.brand-logo img {
        transform: scale(1.05);
    }
}
/* =========================================
   LOGOJA NË HEADER DHE FOOTER
========================================= */

.brand-symbol.brand-logo {
    width: 54px;
    height: 54px;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: none;
    background: transparent;
}

.brand-symbol.brand-logo img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;
    transform: scale(1.05);

    /* Fsheh/shkrin sfondin e bardhë */
    mix-blend-mode: multiply;
}

/* Logoja në telefon */

@media (max-width: 760px) {
    .brand-symbol.brand-logo {
        width: 44px;
        height: 44px;
    }

    .brand-symbol.brand-logo img {
        transform: scale(1.05);
    }
}