/* ==================================================
   YOUTH RISE – STYLE.CSS
================================================== */

:root {
    --primary: #e94f37;
    --primary-dark: #c83b28;
    --secondary: #176b87;
    --secondary-dark: #0d485d;
    --yellow: #f4bd36;
    --green: #3e8b72;
    --purple: #7655a6;

    --dark: #17222b;
    --dark-soft: #263641;
    --text: #4d5b64;
    --light-text: #71808a;

    --white: #ffffff;
    --cream: #fff9f1;
    --light-blue: #edf7fa;
    --light-green: #eef8f3;
    --light-orange: #fff2ea;
    --light-purple: #f3effa;
    --light-yellow: #fff8df;
    --light-gray: #f4f6f7;
    --border: #dfe6e9;

    --shadow-small: 0 8px 25px rgba(23, 34, 43, 0.08);
    --shadow-medium: 0 15px 45px rgba(23, 34, 43, 0.12);
    --shadow-large: 0 25px 70px rgba(23, 34, 43, 0.18);

    --radius-small: 12px;
    --radius-medium: 22px;
    --radius-large: 36px;

    --transition: 0.3s ease;
}


/* ==================================================
   RESET
================================================== */

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

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

body {
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

ul {
    list-style: none;
}

section {
    position: relative;
}

.container {
    width: min(92%, 1240px);
    margin-inline: auto;
}

.section-padding {
    padding: 100px 0;
}


/* ==================================================
   TITUJT
================================================== */

h1,
h2,
h3 {
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.055em;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.045em;
}

h3 {
    font-weight: 750;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-label::before {
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.section-label-light {
    color: var(--yellow);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 50px;
}

.section-heading p {
    max-width: 560px;
    padding-bottom: 7px;
    color: var(--text);
    font-size: 1.04rem;
}

.section-heading-light h2,
.section-heading-light p {
    color: var(--white);
}


/* ==================================================
   BUTONAT
================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 14px 25px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 28px rgba(233, 79, 55, 0.28);
}

.button-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 14px 34px rgba(233, 79, 55, 0.36);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.button-secondary:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 800;
    transition:
        gap var(--transition),
        color var(--transition);
}

.text-link:hover {
    gap: 16px;
    color: var(--primary);
}


/* ==================================================
   HEADER DHE NAVBAR
================================================== */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(15, 31, 40, 0.22);
    backdrop-filter: blur(12px);
    transition:
        background var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.site-header.scrolled {
    border-bottom-color: rgba(23, 34, 43, 0.08);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 30px rgba(23, 34, 43, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(96%, 1450px);
    min-height: 88px;
    margin-inline: auto;
}

.site-logo {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 11px;
}

.site-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    color: var(--white);
    font-size: 1.08rem;
    font-weight: 800;
    transition: color var(--transition);
}

.logo-description {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.site-header.scrolled .logo-name {
    color: var(--dark);
}

.site-header.scrolled .logo-description {
    color: var(--light-text);
}

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

.navigation-list {
    display: flex;
    align-items: center;
    gap: 1px;
}

.navigation-item {
    position: relative;
}

.navigation-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 8px;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.93);
    font-size: 0.7rem;
    font-weight: 750;
    white-space: nowrap;
    transition:
        color var(--transition),
        background var(--transition);
}

.navigation-link:hover,
.navigation-link.active {
    background: rgba(255, 255, 255, 0.13);
    color: var(--white);
}

.site-header.scrolled .navigation-link {
    color: var(--dark-soft);
}

.site-header.scrolled .navigation-link:hover,
.site-header.scrolled .navigation-link.active {
    background: var(--light-orange);
    color: var(--primary);
}

.contact-link {
    margin-left: 5px;
    padding-right: 14px;
    padding-left: 14px;
    background: var(--primary);
    color: var(--white);
}

.contact-link:hover,
.site-header.scrolled .contact-link,
.site-header.scrolled .contact-link:hover {
    background: var(--primary-dark);
    color: var(--white);
}


/* ==================================================
   DROPDOWN – RRETH NESH
================================================== */

.dropdown-button i {
    font-size: 0.62rem;
    transition: transform var(--transition);
}

.dropdown.active .dropdown-button i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    width: 225px;
    padding: 10px;
    border: 1px solid rgba(23, 34, 43, 0.08);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.dropdown-menu::before {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    content: "";
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 10px;
    color: var(--dark-soft);
    font-size: 0.82rem;
    font-weight: 700;
    transition:
        padding-left var(--transition),
        color var(--transition),
        background var(--transition);
}

.dropdown-menu a:hover {
    padding-left: 18px;
    background: var(--light-orange);
    color: var(--primary);
}


/* ==================================================
   ZGJEDHJA E GJUHËS
================================================== */

.language-switcher {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.language-button {
    padding: 3px 4px;
    border: 0;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    transition:
        color var(--transition),
        transform var(--transition);
}

.language-button:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.language-button.active {
    color: var(--yellow);
}

.language-divider {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
}

.site-header.scrolled .language-switcher {
    border-color: var(--border);
    background: var(--light-gray);
}

.site-header.scrolled .language-button {
    color: var(--light-text);
}

.site-header.scrolled .language-button:hover {
    color: var(--secondary);
}

.site-header.scrolled .language-button.active {
    color: var(--primary);
}

.site-header.scrolled .language-divider {
    color: var(--border);
}


/* ==================================================
   BUTONI I MENUSË MOBILE
================================================== */

.mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.13);
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: var(--white);
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.site-header.scrolled .mobile-menu-button {
    background: var(--light-gray);
}

.site-header.scrolled .mobile-menu-button span {
    background: var(--dark);
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ==================================================
   HERO
================================================== */

.hero-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background: var(--secondary-dark);
}

.hero-background,
.hero-overlay {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(11, 39, 51, 0.96) 0%,
            rgba(13, 61, 77, 0.83) 47%,
            rgba(13, 61, 77, 0.35) 100%
        );
}

.hero-section::after {
    position: absolute;
    right: -80px;
    bottom: -250px;
    width: 540px;
    height: 540px;
    border: 90px solid rgba(244, 189, 54, 0.16);
    border-radius: 50%;
    content: "";
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-one {
    top: 19%;
    right: 13%;
    width: 90px;
    height: 90px;
    border: 18px solid rgba(233, 79, 55, 0.7);
    animation: floatShape 6s ease-in-out infinite;
}

.hero-shape-two {
    right: 37%;
    bottom: 17%;
    width: 38px;
    height: 38px;
    background: var(--yellow);
    animation: floatShape 5s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-18px) rotate(8deg);
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    padding-top: 145px;
    padding-bottom: 130px;
}

.hero-content {
    max-width: 850px;
}

.hero-label {
    color: var(--yellow);
}

.hero-content h1 {
    max-width: 900px;
    color: var(--white);
}

.hero-content h1 span {
    color: var(--yellow);
}

.hero-content h1 .normal-heading-text {
    color: var(--white);
}

.hero-content > p {
    max-width: 680px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero-statistics {
    display: flex;
    gap: 50px;
    margin-top: 70px;
}

.statistic-item {
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    border-left: 3px solid var(--primary);
}

.statistic-item:nth-child(2) {
    border-color: var(--yellow);
}

.statistic-item:nth-child(3) {
    border-color: #6cc5ae;
}

.statistic-item strong {
    color: var(--white);
    font-size: 1.9rem;
    line-height: 1;
}

.statistic-item span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    font-weight: 700;
}

.scroll-down {
    position: absolute;
    z-index: 5;
    right: 4%;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-down i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    animation: arrowBounce 1.8s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


/* ==================================================
   RRETH NESH
================================================== */

.about-preview {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 93% 10%,
            rgba(244, 189, 54, 0.18),
            transparent 22%
        ),
        var(--cream);
}

.about-preview::before {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    border: 45px solid rgba(62, 139, 114, 0.09);
    border-radius: 50%;
    content: "";
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    align-items: center;
    gap: 85px;
}

.about-preview-image {
    position: relative;
    padding: 0 30px 35px 0;
}

.about-preview-image > img {
    position: relative;
    z-index: 2;
    height: 580px;
    border-radius: 0 80px 0 80px;
    object-fit: cover;
    box-shadow: var(--shadow-large);
}

.image-decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 76%;
    height: 76%;
    border-radius: 0 70px 0 70px;
    background: var(--yellow);
}

.about-image-note {
    position: absolute;
    z-index: 3;
    right: -25px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    max-width: 230px;
    padding: 22px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-medium);
}

.about-image-note span {
    color: var(--primary);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.about-image-note strong {
    margin-top: 5px;
    color: var(--dark);
    font-size: 0.96rem;
    line-height: 1.35;
}

.about-preview-content h2 span {
    color: var(--secondary);
}

.about-preview-content h2 .normal-heading-text {
    color: var(--dark);
}

.about-preview-content p {
    margin-top: 22px;
    font-size: 1.02rem;
}

.about-preview-content .text-link {
    margin-top: 30px;
}


/* ==================================================
   FUSHAT E PUNËS
================================================== */

.work-areas-section {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(23, 107, 135, 0.11),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 90%,
            rgba(233, 79, 55, 0.1),
            transparent 25%
        ),
        #f7fafb;
}

.work-areas-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.work-area-item {
    position: relative;
    display: flex;
    min-height: 155px;
    padding: 22px 70px 22px 23px;
    overflow: hidden;
    border: 1px solid rgba(23, 34, 43, 0.07);
    border-radius: 18px;
    background: var(--light-blue);
    box-shadow: 0 7px 20px rgba(23, 34, 43, 0.05);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.work-area-item:nth-child(2) {
    background: var(--light-orange);
}

.work-area-item:nth-child(3) {
    background: var(--light-green);
}

.work-area-item:nth-child(4) {
    background: var(--light-purple);
}

.work-area-item:nth-child(5) {
    background: var(--light-yellow);
}

.work-area-item:nth-child(6) {
    background: #edf5ff;
}

.work-area-item:nth-child(7) {
    background: #fff0f1;
}

.work-area-item:nth-child(8) {
    background: #f0f7ee;
}

.work-area-item:nth-child(9) {
    background: #f5f0fb;
}

.work-area-item::before {
    position: absolute;
    right: -35px;
    bottom: -55px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    content: "";
}

.work-area-item:hover {
    z-index: 2;
    background: var(--secondary);
    box-shadow: 0 15px 35px rgba(23, 107, 135, 0.18);
    transform: translateY(-5px);
}

.work-area-item:nth-child(2):hover,
.work-area-item:nth-child(7):hover {
    background: var(--primary);
}

.work-area-item:nth-child(3):hover,
.work-area-item:nth-child(8):hover {
    background: var(--green);
}

.work-area-item:nth-child(4):hover,
.work-area-item:nth-child(9):hover {
    background: var(--purple);
}

.work-area-item:nth-child(5):hover {
    background: #bc821d;
}

.work-area-item:nth-child(6):hover {
    background: #3d6fa3;
}

.work-area-number {
    flex-shrink: 0;
    margin-right: 17px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.work-area-item h3 {
    position: relative;
    z-index: 2;
    max-width: 255px;
    font-size: 1rem;
    line-height: 1.4;
}

.work-area-arrow {
    position: absolute;
    z-index: 2;
    right: 19px;
    bottom: 19px;
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border: 1px solid rgba(23, 107, 135, 0.22);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 0.7rem;
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.work-area-item:hover h3,
.work-area-item:hover .work-area-number {
    color: var(--white);
}

.work-area-item:hover .work-area-arrow {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    transform: rotate(45deg);
}


/* ==================================================
   PROJEKTET
================================================== */

.projects-section {
    isolation: isolate;
    overflow: hidden;
    background: var(--dark);
}

.projects-background-image {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(
            rgba(13, 40, 50, 0.94),
            rgba(13, 40, 50, 0.97)
        ),
        url("images/projects-background.jpg") center / cover fixed;
}

.projects-section::before {
    position: absolute;
    z-index: -1;
    top: -160px;
    right: -120px;
    width: 450px;
    height: 450px;
    border: 80px solid rgba(233, 79, 55, 0.09);
    border-radius: 50%;
    content: "";
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 25px;
}

.project-card {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.project-card:hover {
    border-color: rgba(244, 189, 54, 0.48);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transform: translateY(-7px);
}


/* Hapësira e madhe e posterit */

.project-poster-area {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background:
        linear-gradient(135deg, #eef3f5, #ffffff);
}

.project-poster-area::after {
    position: absolute;
    inset: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    content: "";
    pointer-events: none;
}

.project-poster-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.65s ease;
}

.project-card:hover .project-poster-area img {
    transform: scale(1.035);
}

.project-content {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 29px 27px;
}

.project-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.19);
    font-size: 1.6rem;
    font-weight: 800;
}

.project-content h3 {
    max-width: 90%;
    padding-right: 18px;
    color: var(--white);
    font-size: 1.18rem;
    line-height: 1.35;
}

.project-information {
    margin-top: 20px;
}

.project-information p {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.71);
    font-size: 0.78rem;
    line-height: 1.65;
}

.project-information strong {
    color: var(--yellow);
}

.project-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 24px;
}

.project-footer p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.73rem;
    line-height: 1.45;
}

.project-footer p span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-footer p strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}


/* ==================================================
   GALERIA
================================================== */

.gallery-section {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 5% 90%,
            rgba(23, 107, 135, 0.13),
            transparent 25%
        ),
        var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--light-gray);
}

.gallery-item-large {
    grid-row: span 2;
    grid-column: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(13, 72, 93, 0.55);
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-overlay i {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    transform: scale(0.7);
    transition: transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}


/* ==================================================
   DRITARJA E GALERISË
================================================== */

.gallery-modal {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(8, 17, 22, 0.95);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity var(--transition),
        visibility var(--transition);
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal img {
    max-width: 1100px;
    max-height: 85vh;
    border-radius: 18px;
    object-fit: contain;
    box-shadow: var(--shadow-large);
    transform: scale(0.92);
    transition: transform var(--transition);
}

.gallery-modal.active img {
    transform: scale(1);
}

.gallery-modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 1.25rem;
    transition:
        background var(--transition),
        transform var(--transition);
}

.gallery-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}


/* ==================================================
   MUNDËSI ANGAZHIMI
================================================== */

.engagement-section {
    isolation: isolate;
    overflow: hidden;
}

.engagement-background,
.engagement-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.engagement-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.engagement-overlay {
    z-index: -1;
    background:
        linear-gradient(
            115deg,
            rgba(12, 54, 68, 0.97),
            rgba(23, 107, 135, 0.82)
        );
}

.engagement-container {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    align-items: center;
    gap: 70px;
}

.engagement-introduction h2 {
    color: var(--white);
}

.engagement-introduction p {
    margin-top: 23px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
}

.engagement-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.engagement-card {
    min-height: 315px;
    padding: 27px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
    transition:
        background var(--transition),
        transform var(--transition);
}

.engagement-card:hover {
    background: var(--white);
    transform: translateY(-8px);
}

.engagement-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 16px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 1.25rem;
}

.engagement-card h3 {
    margin-top: 25px;
    color: var(--white);
    font-size: 1.18rem;
}

.engagement-card p {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.83rem;
}

.engagement-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    color: var(--yellow);
    font-size: 0.77rem;
    font-weight: 800;
}

.engagement-card:hover h3 {
    color: var(--dark);
}

.engagement-card:hover p {
    color: var(--text);
}

.engagement-card:hover a {
    color: var(--primary);
}


/* ==================================================
   KONTAKTI
================================================== */

.contact-section {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(233, 79, 55, 0.1),
            transparent 24%
        ),
        var(--light-blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
}

.contact-information h2 {
    max-width: 530px;
}

.contact-information > p {
    max-width: 530px;
    margin-top: 22px;
}

.contact-details {
    display: grid;
    gap: 18px;
    margin-top: 40px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    display: grid;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    background: var(--white);
    color: var(--secondary);
    box-shadow: var(--shadow-small);
}

.contact-detail > span:last-child {
    display: flex;
    flex-direction: column;
}

.contact-detail small {
    color: var(--light-text);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-detail strong {
    color: var(--dark);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 35px;
}

.social-links a {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    transition:
        background var(--transition),
        transform var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}


/* ==================================================
   FORMULARI
================================================== */

.contact-form {
    padding: 42px;
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: var(--shadow-medium);
}

.form-heading {
    margin-bottom: 28px;
}

.form-heading h3 {
    font-size: 1.6rem;
}

.form-heading p {
    margin-top: 7px;
    color: var(--light-text);
    font-size: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 0.76rem;
    font-weight: 800;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    background: var(--light-gray);
    color: var(--dark);
    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.form-group input {
    height: 53px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 150px;
    padding: 15px 16px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(23, 107, 135, 0.1);
}

.form-button {
    width: 100%;
}

.form-message {
    display: none;
    margin-top: 15px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.form-message.success {
    display: block;
    background: var(--light-green);
    color: var(--green);
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    background: #101b22;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
    gap: 60px;
    padding-top: 75px;
    padding-bottom: 65px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-about p {
    max-width: 320px;
    margin-top: 20px;
    font-size: 0.85rem;
}

.footer-social-links {
    display: flex;
    gap: 9px;
    margin-top: 23px;
}

.footer-social-links a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.78rem;
    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.footer-social-links a:hover {
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-column h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-column ul {
    display: grid;
    gap: 11px;
}

.footer-column li,
.footer-column a {
    font-size: 0.8rem;
}

.footer-column a {
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--yellow);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list i {
    width: 16px;
    padding-top: 5px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75px;
    font-size: 0.74rem;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 700;
}

.back-to-top:hover {
    color: var(--yellow);
}


/* ==================================================
   ANIMACIONET
================================================== */

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.js-enabled .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==================================================
   VERSIONI ANGLISHT
================================================== */

html[lang="en"] .navigation-link {
    letter-spacing: -0.01em;
}

html[lang="en"] .hero-content h1 {
    max-width: 980px;
}

html[lang="en"] .work-area-item h3 {
    max-width: 280px;
}

html[lang="en"] .project-content h3 {
    max-width: 95%;
}


/* ==================================================
   EKRANE DERI NË 1300PX
================================================== */

@media (max-width: 1300px) {

    .header-container {
        width: 95%;
    }

    .site-logo img {
        width: 52px;
        height: 52px;
    }

    .logo-description {
        display: none;
    }

    .navigation-link {
        padding-right: 7px;
        padding-left: 7px;
        font-size: 0.67rem;
    }

    .language-switcher {
        margin-left: 4px;
    }

    .engagement-container {
        grid-template-columns: 1fr;
    }

    .engagement-introduction {
        max-width: 720px;
    }
}


/* ==================================================
   TABLET DHE MENUJA MOBILE
================================================== */

@media (max-width: 1100px) {

    .section-padding {
        padding: 85px 0;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        display: block;
        width: min(88%, 390px);
        height: 100vh;
        padding: 105px 25px 35px;
        overflow-y: auto;
        background: var(--white);
        box-shadow: -20px 0 50px rgba(23, 34, 43, 0.17);
        transition: right 0.4s ease;
    }

    .main-navigation.open {
        right: 0;
    }

    .navigation-list {
        display: block;
        width: 100%;
    }

    .navigation-item {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .navigation-link,
    .site-header .navigation-link,
    .site-header.scrolled .navigation-link {
        justify-content: space-between;
        width: 100%;
        padding: 16px 5px;
        border-radius: 0;
        background: transparent;
        color: var(--dark);
        font-size: 0.88rem;
        text-align: left;
    }

    .navigation-link:hover,
    .navigation-link.active,
    .site-header.scrolled .navigation-link:hover,
    .site-header.scrolled .navigation-link.active {
        background: transparent;
        color: var(--primary);
    }

    .contact-link,
    .site-header.scrolled .contact-link {
        justify-content: center;
        margin: 15px 0 0;
        padding: 14px 20px;
        border-radius: 12px;
        background: var(--primary);
        color: var(--white);
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 0 0 15px;
        overflow: hidden;
        border: 0;
        border-radius: 0;
        background: var(--light-gray);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition:
            max-height 0.35s ease,
            padding 0.35s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 230px;
        padding-top: 8px;
        padding-bottom: 8px;
        transform: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a {
        padding: 11px 12px;
    }

    .dropdown:hover .dropdown-menu {
        transform: none;
    }

    .language-switcher,
    .site-header.scrolled .language-switcher {
        width: max-content;
        margin-top: 25px;
        margin-left: 0;
        padding: 8px 14px;
        border-color: var(--border);
        background: var(--light-gray);
    }

    .language-button,
    .site-header.scrolled .language-button {
        color: var(--light-text);
        font-size: 0.77rem;
    }

    .language-button:hover,
    .site-header.scrolled .language-button:hover {
        color: var(--secondary);
    }

    .language-button.active,
    .site-header.scrolled .language-button.active {
        color: var(--primary);
    }

    .language-divider,
    .site-header.scrolled .language-divider {
        color: var(--border);
    }

    .about-preview-grid {
        gap: 55px;
    }

    .about-preview-image > img {
        height: 520px;
    }

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

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

    .project-card {
        grid-template-columns: 35% 65%;
        min-height: 480px;
    }

    .engagement-options {
        max-width: 850px;
    }

    .contact-grid {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}


/* ==================================================
   TABLET I VOGËL
================================================== */

@media (max-width: 800px) {

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .hero-container {
        padding-top: 145px;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-statistics {
        flex-wrap: wrap;
        gap: 30px;
    }

    .scroll-down {
        display: none;
    }

    .about-preview-grid {
        grid-template-columns: 1fr;
    }

    .about-preview-image {
        max-width: 600px;
        margin-inline: auto;
    }

    .about-preview-image > img {
        height: 540px;
    }

    .project-card {
        grid-template-columns: 42% 58%;
    }

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

    .gallery-item-large {
        grid-row: span 2;
        grid-column: span 2;
    }

    .engagement-options {
        grid-template-columns: 1fr;
    }

    .engagement-card {
        min-height: auto;
    }

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

    .contact-information {
        max-width: 650px;
    }
}


/* ==================================================
   TELEFON
================================================== */

@media (max-width: 600px) {

    .section-padding {
        padding: 68px 0;
    }

    .container {
        width: min(91%, 1240px);
    }

    .header-container {
        min-height: 76px;
    }

    .site-logo img {
        width: 48px;
        height: 48px;
    }

    .logo-name {
        font-size: 0.95rem;
    }

    .main-navigation {
        width: 92%;
        padding-top: 92px;
    }

    .language-switcher {
        margin-top: 22px;
    }

    .language-button {
        min-width: 29px;
        min-height: 29px;
    }

    .hero-section {
        min-height: 850px;
    }

    .hero-overlay {
        background: rgba(10, 45, 58, 0.84);
    }

    .hero-container {
        padding-top: 125px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: clamp(2.7rem, 14vw, 4.2rem);
    }

    html[lang="en"] .hero-content h1 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .hero-content > p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-statistics {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 55px;
    }

    .statistic-item:last-child {
        grid-column: span 2;
    }

    .about-preview-image {
        padding: 0 16px 22px 0;
    }

    .about-preview-image > img {
        height: 420px;
        border-radius: 0 50px 0 50px;
    }

    .image-decoration {
        border-radius: 0 45px 0 45px;
    }

    .about-image-note {
        right: 0;
        bottom: 45px;
        max-width: 190px;
        padding: 17px;
    }

    .work-areas-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .work-area-item {
        min-height: 125px;
        padding: 19px 65px 19px 19px;
    }

    .work-area-item h3 {
        font-size: 0.94rem;
    }

    .project-card {
        display: block;
        min-height: auto;
    }

    .project-poster-area {
        width: 100%;
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .project-poster-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-content {
        min-height: 420px;
        padding: 27px 23px;
    }

    .project-content h3 {
        font-size: 1.22rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .gallery-modal {
        padding: 18px;
    }

    .gallery-modal-close {
        top: 15px;
        right: 15px;
    }

    .engagement-container {
        gap: 45px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
        padding-top: 60px;
    }

    .footer-about {
        grid-column: span 2;
    }

    .footer-column:last-child {
        grid-column: span 2;
    }

    .footer-bottom-container {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        min-height: 95px;
        text-align: center;
    }
}


/* ==================================================
   TELEFON SHUMË I VOGËL
================================================== */

@media (max-width: 380px) {

    .hero-statistics {
        grid-template-columns: 1fr;
    }

    .statistic-item:last-child {
        grid-column: auto;
    }

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

    .footer-about,
    .footer-column:last-child {
        grid-column: auto;
    }
}


/* ==================================================
   REDUKTIMI I ANIMACIONEVE
================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
/* Logo më e vogël në navbar */
.logo img {
    width: 105px !important;
    height: 52px !important;
    object-fit: contain;
}

/* Projektet */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(230px, 285px));
    justify-content: center;
    align-items: start;
    gap: 20px;
}

.project-card {
    width: 100%;
    max-width: 285px;
    height: auto !important;
    min-height: 0 !important;
    display: flex;
    flex-direction: column;
    align-self: start;
    overflow: hidden;
    background: #ffffff;
    border-radius: 17px;
    border: 1px solid rgba(17, 57, 87, 0.14);
    box-shadow: 0 10px 26px rgba(15, 52, 80, 0.14);
}

/* Poster katror, por më i vogël */
.project-poster {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
    flex: none !important;
    overflow: hidden;
    background: #edf2f5;
    border-radius: 17px 17px 0 0;
}

.project-poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0 !important;
}

/* Informacion kompakt */
.project-content {
    position: static !important;
    display: block;
    padding: 15px 17px 17px !important;
    background: #ffffff;
}

.project-content h3 {
    margin: 0 0 9px !important;
    color: #123d5d;
    font-size: 1rem;
    line-height: 1.3;
}

.project-content p {
    margin: 0 0 7px !important;
    color: #536572;
    font-size: 0.82rem;
    line-height: 1.42;
}

.project-content p:last-child {
    margin-bottom: 0 !important;
}

.project-donor {
    margin: 10px 0 0 !important;
    padding: 10px 0 0 !important;
    border-top: 1px solid rgba(17, 57, 87, 0.12);
    color: #df681f !important;
    font-size: 0.8rem !important;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 950px) {
    .projects-grid {
        grid-template-columns: repeat(2, minmax(230px, 285px));
    }
}

@media (max-width: 620px) {
    .projects-grid {
        grid-template-columns: minmax(0, 285px);
    }

    .logo img {
        width: 90px !important;
        height: 46px !important;
    }
}
/* ==============================
   GALERIA
================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: #e8eef2;
    cursor: pointer;
    box-shadow: 0 9px 24px rgba(13, 48, 75, 0.16);
}

.gallery-item::after {
    content: "＋";
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    font-size: 1.35rem;
    background: rgba(16, 58, 88, 0.82);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* Dritarja ku hapet fotografia */
.yr-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 90px;
    background: rgba(5, 19, 30, 0.94);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.yr-gallery-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.yr-gallery-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    max-height: 90vh;
}

.yr-gallery-image-wrapper img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

#yrGalleryCounter {
    margin: 13px 0 0;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
}

/* Butoni i mbylljes */
.yr-gallery-close {
    position: absolute;
    top: 20px;
    right: 27px;
    width: 48px;
    height: 48px;
    padding: 0;
    color: #ffffff;
    font-size: 2.4rem;
    line-height: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
}

/* Shigjetat anash */
.yr-gallery-arrow {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    padding: 0;
    color: #ffffff;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.yr-gallery-arrow:hover {
    background: #e86c25;
    transform: translateY(-50%) scale(1.08);
}

.yr-gallery-prev {
    left: 25px;
}

.yr-gallery-next {
    right: 25px;
}

body.gallery-open {
    overflow: hidden;
}

@media (max-width: 850px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .yr-gallery-modal {
        padding: 65px 60px 35px;
    }
}

@media (max-width: 550px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .yr-gallery-modal {
        padding: 65px 15px 85px;
    }

    .yr-gallery-image-wrapper img {
        max-height: 68vh;
    }

    .yr-gallery-arrow {
        top: auto;
        bottom: 18px;
        width: 48px;
        height: 48px;
        transform: none;
    }

    .yr-gallery-arrow:hover {
        transform: scale(1.06);
    }

    .yr-gallery-prev {
        left: calc(50% - 62px);
    }

    .yr-gallery-next {
        right: calc(50% - 62px);
    }
}
/* Ikonat sociale horizontalisht */
.contact-socials,
.footer-socials,
.social-links,
.social-icons,
.social-media {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: fit-content !important;
}

.contact-socials a,
.footer-socials a,
.social-links a,
.social-icons a,
.social-media a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
}