:root {
    --butrinti-blue: #1f8fff;
    --butrinti-light-blue: #36c8ff;
    --white: #ffffff;
    --text-white: rgba(255, 255, 255, 0.94);
    --text-muted: rgba(255, 255, 255, 0.70);
    --border: rgba(255, 255, 255, 0.14);
    --dark: #101010;
    --light-bg: #f8fafc;
    --light-text: #0d1b2a;
    --light-muted: #58677a;
    --light-border: rgba(10, 25, 47, 0.09);
}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: #ffffff;
    color: #111111;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.section-line {
    width: 64px;
    height: 1px;
    background: rgba(7, 23, 47, 0.35);
    margin: 26px auto 0;
}

/* =========================
   HERO + NAVBAR
   Foto e bannerit ndryshohet këtu:
   .hero-bg -> background-image
========================= */

.hero-page {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 760px;
    overflow: hidden;
    background: #111111;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=90&w=2400&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(12, 12, 12, 0.82) 0%, rgba(12, 12, 12, 0.54) 42%, rgba(12, 12, 12, 0.70) 100%),
        linear-gradient(180deg, rgba(12, 12, 12, 0.34) 0%, rgba(12, 12, 12, 0.70) 100%);
}

.navbar {
    position: relative;
    z-index: 20;
    width: 100%;
    height: 98px;
    padding: 0 62px;
    color: var(--white);
    display: grid;
    grid-template-columns: 270px 1fr 250px;
    align-items: center;
    background: transparent;
}

.navbar-logo {
    width: 175px;
    display: flex;
    align-items: center;
}

.navbar-logo img {
    width: 100%;
    height: auto;
}

.navbar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
}

.navbar-menu a,
.navbar-lang a {
    position: relative;
    color: var(--text-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.navbar-menu a::after,
.navbar-lang a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--butrinti-light-blue), var(--butrinti-blue));
    transition: width 0.25s ease;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after,
.navbar-lang a.active::after {
    width: 100%;
}

.navbar-menu a:hover,
.navbar-menu a.active,
.navbar-lang a:hover,
.navbar-lang a.active {
    color: #ffffff;
}

.navbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 26px;
}

.navbar-lang {
    display: flex;
    gap: 12px;
}

.navbar-lang a {
    color: var(--text-muted);
}

.navbar-socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar-socials a {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: 0.25s ease;
}

.navbar-socials a svg {
    width: 18px;
    height: 18px;
}

.navbar-socials a:hover {
    color: var(--butrinti-light-blue);
    transform: translateY(-1px);
}

.navbar-toggle {
    display: none;
    width: 34px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--white);
    margin: 8px 0;
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: calc(100vh - 98px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 92px 58px;
}

.hero-text {
    max-width: 780px;
    text-align: right;
}

.hero-text h1 {
    color: #ffffff;
    font-size: clamp(54px, 5.8vw, 104px);
    line-height: 0.98;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero-text p {
    max-width: 660px;
    margin: 26px 0 0 auto;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(17px, 1.3vw, 24px);
    line-height: 1.5;
}

/* =========================
   BUTTONS
========================= */

.hero-btn,
.projects-btn,
.cta-btn-white {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 185px;
    height: 58px;
    background: linear-gradient(135deg, var(--butrinti-light-blue), var(--butrinti-blue));
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    transition: 0.25s ease;
}

.hero-btn {
    margin-top: 42px;
    margin-right: 10px;
}

.hero-btn::after,
.projects-btn::after,
.cta-btn-white::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.62);
    z-index: -1;
}

.projects-btn::after,
.cta-btn-white::after {
    border-color: rgba(7, 23, 47, 0.28);
}

.hero-btn:hover,
.projects-btn:hover,
.cta-btn-white:hover {
    transform: translateY(-3px);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-navbar {
    position: fixed;
    top: 0;
    right: -60%;
    width: 60%;
    height: 100vh;
    background: #1f1f1f;
    z-index: 1200;
    padding: 28px 28px 34px;
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    border-left: 1px solid var(--border);
}

.mobile-navbar.active {
    right: 0;
}

.mobile-navbar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    width: 145px;
}

.mobile-close {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.mobile-navbar-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
}

.mobile-navbar-menu a {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.mobile-navbar-menu a.active,
.mobile-navbar-menu a:hover {
    color: var(--butrinti-light-blue);
}

.mobile-navbar-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.mobile-lang {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.mobile-lang a,
.mobile-socials a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}

.mobile-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-socials a:hover,
.mobile-lang a:hover,
.mobile-lang a.active {
    color: var(--butrinti-light-blue);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   GLOBAL SECTION LINES
========================= */

.about-lines-light,
.services-lines,
.values-lines-light,
.projects-lines,
.profiles-lines,
.gallery-strip-bg,
.cta-lines-white {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 23, 47, 0.07) 1px, transparent 1px);
    background-size: 25%;
    pointer-events: none;
}

/* =========================
   SERVICES / PRODUCTS
========================= */

.services-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 100px 70px 110px;
    overflow: hidden;
}

.services-header {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 64px;
    text-align: center;
}

.services-header span {
    display: block;
    color: var(--butrinti-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.services-header h2 {
    color: var(--light-text);
    font-size: clamp(38px, 4vw, 64px);
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.services-header p {
    color: #536174;
    font-size: 17px;
    line-height: 1.7;
}

.services-grid {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(7, 23, 47, 0.09);
    box-shadow: 0 24px 70px rgba(7, 23, 47, 0.08);
    overflow: hidden;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(7, 23, 47, 0.13);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #eef3f8;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.55s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-content {
    padding: 32px 32px 36px;
}

.service-content span {
    display: block;
    color: rgba(31, 143, 255, 0.55);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
}

.service-content h3 {
    color: #07172f;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-content p {
    color: #536174;
    font-size: 15px;
    line-height: 1.68;
    margin-bottom: 28px;
}

.service-content a,
.about-read-more,
.profile-content a {
    position: relative;
    display: inline-flex;
    color: #07172f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    padding-bottom: 8px;
}

.service-content a::after,
.about-read-more::after,
.profile-content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: repeating-linear-gradient(-45deg, rgba(31, 143, 255, 0.28), rgba(31, 143, 255, 0.28) 3px, transparent 3px, transparent 7px);
}

.service-content a:hover,
.about-read-more:hover,
.profile-content a:hover {
    color: var(--butrinti-blue);
}

/* =========================
   ABOUT
========================= */

.about-section-light {
    position: relative;
    width: 100%;
    background: #f7f8fa;
    padding: 120px 70px;
    overflow: hidden;
}

.about-container-light {
    position: relative;
    z-index: 2;
    max-width: 1580px;
    min-height: 590px;
    margin: 0 auto;
}

.about-photo-light {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 590px;
    overflow: hidden;
    z-index: 1;
}

.about-photo-light img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card-light {
    position: relative;
    z-index: 3;
    width: 53%;
    min-height: 470px;
    background: #ffffff;
    margin-top: 40px;
    padding: 76px 80px 70px;
    box-shadow: 0 30px 90px rgba(7, 23, 47, 0.10);
    border: 1px solid rgba(7, 23, 47, 0.06);
}

.about-card-light h2 {
    color: #07172f;
    font-size: clamp(34px, 3vw, 54px);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
}

.about-small-line {
    width: 66px;
    height: 1px;
    background: rgba(7, 23, 47, 0.34);
    margin: 28px 0 34px;
}

.about-card-light p {
    max-width: 650px;
    color: #344154;
    font-size: 18px;
    line-height: 1.72;
    margin-bottom: 16px;
}

/* =========================
   PROCESS
========================= */

.process-section {
    position: relative;
    width: 100%;
    background: var(--light-bg);
    padding: 96px 70px 86px;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 28, 52, 0.06) 1px, transparent 1px);
    background-size: 25%;
    pointer-events: none;
}

.process-header,
.profiles-header,
.gallery-strip-header,
.projects-header,
.values-header-light {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-header {
    margin-bottom: 88px;
}

.process-header span,
.profiles-header span,
.gallery-strip-header span,
.projects-header span,
.values-header-light span {
    display: block;
    color: var(--butrinti-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.process-header h2,
.profiles-header h2,
.gallery-strip-header h2,
.projects-header h2,
.values-header-light h2 {
    color: var(--light-text);
    font-size: clamp(38px, 4vw, 66px);
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 38px 1fr 38px 1fr 38px 1fr;
    align-items: start;
    max-width: 1600px;
    margin: 0 auto;
}

.process-item {
    min-height: 330px;
    padding: 0 34px;
    text-align: center;
    border-left: 1px solid rgba(7, 23, 47, 0.10);
}

.process-item:last-child {
    border-right: 1px solid rgba(7, 23, 47, 0.10);
}

.process-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 50px;
    color: var(--light-text);
}

.process-icon svg {
    width: 100%;
    height: 100%;
}

.process-item h3 {
    color: var(--light-text);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.process-item p {
    max-width: 330px;
    margin: 0 auto;
    color: var(--light-muted);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.process-arrow {
    color: var(--butrinti-blue);
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    padding-top: 34px;
}

/* =========================
   PROFILES
========================= */

.profiles-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 100px 70px 110px;
    overflow: hidden;
}

.profiles-header {
    max-width: 820px;
    margin: 0 auto 64px;
}

.profiles-header p,
.projects-header p {
    color: #536174;
    font-size: 17px;
    line-height: 1.7;
    margin-top: 22px;
}

.profiles-slider-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1540px;
    margin: 0 auto;
}

.profiles-single-wrapper {
    max-width: 620px;
}

.profiles-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 28px;
}

.profiles-single {
    justify-content: center;
    overflow: visible;
}

.profiles-slider::-webkit-scrollbar {
    height: 7px;
}

.profiles-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--butrinti-light-blue), var(--butrinti-blue));
}

.profile-card {
    flex: 0 0 370px;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid rgba(7, 23, 47, 0.09);
    box-shadow: 0 24px 70px rgba(7, 23, 47, 0.08);
    overflow: hidden;
    transition: 0.3s ease;
}

.profile-card-single {
    flex: 0 0 520px;
}

.profile-card:hover {
    transform: translateY(-6px);
}

.profile-image {
    height: 280px;
    overflow: hidden;
    background: #eef3f8;
}

.profile-product-image {
    background: #f4f7fb;
    padding: 28px;
}

.profile-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
    padding: 12px;
}

.profile-content {
    padding: 30px 30px 34px;
}

.profile-content span {
    display: block;
    color: rgba(31, 143, 255, 0.55);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
}

.profile-content h3 {
    color: #07172f;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.profile-content p {
    color: #536174;
    font-size: 15px;
    line-height: 1.65;
}

.profiles-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 5;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(7, 23, 47, 0.12);
    background: #ffffff;
    color: #07172f;
    font-size: 42px;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(7, 23, 47, 0.12);
}

.profiles-arrow:hover {
    background: var(--butrinti-blue);
    color: #ffffff;
}

.profiles-prev {
    left: -27px;
}

.profiles-next {
    right: -27px;
}

/* =========================
   GALLERY
========================= */

.gallery-strip-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 96px 0 110px;
    overflow: hidden;
}

.gallery-strip-header {
    margin-bottom: 72px;
}

.gallery-strip {
    position: relative;
    z-index: 2;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 0 30px;
}

.gallery-card {
    position: relative;
    width: 240px;
    border: none;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 22px 55px rgba(7, 23, 47, 0.12);
}

.gallery-card.tall {
    height: 420px;
}

.gallery-card.medium {
    height: 350px;
    transform: translateY(34px);
}

.gallery-card.short {
    height: 300px;
    transform: translateY(-12px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(5, 10, 18, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: min(92vw, 1300px);
    max-height: 88vh;
    object-fit: contain;
}

.gallery-lightbox-close {
    position: fixed;
    top: 24px;
    right: 32px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 38px;
    cursor: pointer;
}

/* =========================
   STATS
   Foto ndryshohet këtu:
   .stats-bg -> background-image
========================= */

.stats-section {
    position: relative;
    width: 100%;
    height: 520px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.stats-bg {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 360px;
    background-image: url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=90&w=2200&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: grayscale(25%) contrast(1.08);
}

.stats-overlay {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 360px;
    background: rgba(0, 0, 0, 0.62);
    z-index: 2;
}

.stats-shape {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 360px;
    z-index: 3;
    pointer-events: none;
}

.stats-shape::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 52%;
    height: 100%;
    background: rgba(31, 143, 255, 0.20);
    clip-path: polygon(0 0, 78% 0, 48% 100%, 0 100%);
}

.stats-shape::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 46%;
    height: 100%;
    background: rgba(54, 200, 255, 0.14);
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.stats-container {
    position: relative;
    z-index: 5;
    width: min(100% - 140px, 1200px);
    margin: 0 auto;
    height: 360px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    text-align: center;
}

.stat-item h3 {
    color: #ffffff;
    font-size: clamp(64px, 5.4vw, 96px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.06em;
    margin-bottom: 20px;
}

.stat-item p {
    color: #ffffff;
    font-size: clamp(20px, 1.55vw, 30px);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =========================
   VALUES
========================= */

.values-section-light {
    position: relative;
    width: 100%;
    background: #f7f9fc;
    padding: 92px 70px 100px;
    overflow: hidden;
}

.values-header-light {
    margin-bottom: 66px;
}

.values-container-light {
    position: relative;
    z-index: 2;
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(7, 23, 47, 0.10);
    border-left: 1px solid rgba(7, 23, 47, 0.10);
}

.value-card-light {
    min-height: 250px;
    padding: 38px 40px 42px;
    background: rgba(255, 255, 255, 0.72);
    border-right: 1px solid rgba(7, 23, 47, 0.10);
    border-bottom: 1px solid rgba(7, 23, 47, 0.10);
    transition: 0.3s ease;
}

.value-card-light:hover {
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(7, 23, 47, 0.08);
    transform: translateY(-4px);
}

.value-card-light span {
    display: block;
    color: rgba(31, 143, 255, 0.45);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 34px;
}

.value-card-light h3 {
    color: #07172f;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.value-card-light p {
    color: #536174;
    font-size: 16px;
    line-height: 1.68;
}

/* =========================
   PROJECTS
========================= */

.projects-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 100px 70px 110px;
    overflow: hidden;
}

.projects-header {
    max-width: 860px;
    margin: 0 auto 66px;
}

.projects-grid {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 24px;
}

.project-card {
    position: relative;
    min-height: 360px;
    background: #07172f;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    box-shadow: 0 22px 70px rgba(7, 23, 47, 0.10);
}

.project-large {
    grid-row: span 2;
    min-height: 744px;
}

.project-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.55s ease;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(7, 23, 47, 0.05) 0%, rgba(7, 23, 47, 0.42) 48%, rgba(7, 23, 47, 0.88) 100%);
}

.project-content {
    position: relative;
    z-index: 3;
    padding: 34px;
    transform: translateY(8px);
    transition: 0.35s ease;
}

.project-content span {
    display: block;
    color: var(--butrinti-light-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-content h3 {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.project-large .project-content h3 {
    font-size: 38px;
}

.project-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.35s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.07);
}

.project-card:hover .project-content,
.project-card:hover .project-content p {
    opacity: 1;
    transform: translateY(0);
}

.projects-action {
    position: relative;
    z-index: 2;
    margin-top: 54px;
    display: flex;
    justify-content: center;
}

/* =========================
   CTA
   Foto ndryshohet këtu:
   .cta-bg-image-white -> background-image
========================= */

.cta-section-white {
    position: relative;
    width: 100%;
    min-height: 430px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.cta-bg-image-white {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=90&w=2200&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    z-index: 2;
    filter: grayscale(15%) contrast(1.02);
}

.cta-overlay-white {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.58);
    z-index: 3;
}

.cta-content-white {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1250px;
    text-align: center;
    padding: 70px 24px;
}

.cta-content-white h2 {
    color: #07172f;
    font-size: clamp(42px, 5vw, 88px);
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 44px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    position: relative;
    background: linear-gradient(180deg, #07172f 0%, #0a1d3a 100%);
    color: #ffffff;
    padding: 86px 70px 28px;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 25%;
    pointer-events: none;
    opacity: 0.45;
}

.footer-top,
.footer-bottom {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 0.85fr 1.05fr;
    gap: 70px;
    padding-bottom: 58px;
}

.footer-logo {
    display: inline-flex;
    width: 210px;
    margin-bottom: 28px;
}

.footer-about p {
    max-width: 470px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.75;
}

.footer-socials-main {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.footer-socials-main a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.footer-socials-main svg {
    width: 17px;
    height: 17px;
}

.footer-socials-main a:hover {
    background: var(--butrinti-blue);
    border-color: var(--butrinti-blue);
}

.site-footer h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 28px;
    letter-spacing: 0.06em;
}

.footer-list,
.footer-contact-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 13px;
}

.footer-list a,
.footer-contact-list a,
.footer-contact-list p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.65;
    transition: 0.25s ease;
}

.footer-list a:hover,
.footer-contact-list a:hover {
    color: var(--butrinti-light-blue);
}

.footer-contact-list li {
    margin-bottom: 22px;
}

.footer-contact-list span {
    display: block;
    color: var(--butrinti-light-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 48px;
    height: 48px;
    border: none;
    background: linear-gradient(135deg, var(--butrinti-light-blue), var(--butrinti-blue));
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: 0.25s ease;
    box-shadow: 0 18px 45px rgba(7, 23, 47, 0.18);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1280px) {
    .navbar {
        padding: 0 42px;
        grid-template-columns: 220px 1fr 220px;
    }

    .navbar-logo {
        width: 155px;
    }

    .navbar-menu {
        gap: 24px;
    }

    .navbar-menu a,
    .navbar-lang a {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-content {
        padding: 0 52px 46px;
    }
}

@media (max-width: 1100px) {
    .services-grid,
    .values-container-light {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 52px 0;
    }

    .process-arrow {
        display: none;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 420px;
    }

    .footer-top {
        grid-template-columns: 1.2fr 1fr;
        gap: 46px 54px;
    }
}

@media (max-width: 991px) {
    .navbar {
        height: 82px;
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
    }

    .navbar-logo {
        width: 150px;
    }

    .navbar-menu,
    .navbar-lang,
    .navbar-socials {
        display: none;
    }

    .navbar-toggle {
        display: block;
    }

    .hero-content {
        height: calc(100vh - 82px);
        padding: 0 32px 40px;
        justify-content: flex-start;
    }

    .hero-text {
        text-align: left;
    }

    .hero-text p {
        margin-left: 0;
    }

    .about-container-light {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .about-photo-light {
        position: relative;
        width: 100%;
        height: 420px;
        order: 1;
    }

    .about-card-light {
        width: 100%;
        min-height: auto;
        margin-top: 0;
        order: 2;
        padding: 52px 42px;
    }

    .profiles-arrow {
        display: none;
    }

    .stats-section {
        height: auto;
        padding: 80px 0;
    }

    .stats-bg,
    .stats-overlay,
    .stats-shape {
        top: 40px;
        height: calc(100% - 80px);
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 52px;
        height: auto;
        padding: 80px 0;
        width: min(100% - 48px, 800px);
    }
}

@media (max-width: 768px) {
    .process-section,
    .profiles-section,
    .projects-section,
    .values-section-light,
    .about-section-light,
    .services-section {
        padding: 70px 22px;
    }

    .services-grid,
    .process-grid,
    .projects-grid,
    .values-container-light {
        grid-template-columns: 1fr;
    }

    .project-large {
        grid-column: span 1;
        min-height: 360px;
    }

    .project-card {
        min-height: 330px;
    }

    .profile-card,
    .profile-card-single {
        flex: 0 0 300px;
    }

    .profiles-single {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .gallery-strip {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 24px 18px;
    }

    .gallery-card {
        flex: 0 0 220px;
    }

    .gallery-card.tall,
    .gallery-card.medium,
    .gallery-card.short {
        height: 320px;
        transform: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content-white h2 {
        font-size: 34px;
    }

    .services-header h2,
    .process-header h2,
    .profiles-header h2,
    .gallery-strip-header h2,
    .projects-header h2,
    .values-header-light h2 {
        font-size: 36px;
    }
}

@media (max-width: 560px) {
    .navbar {
        height: 76px;
        padding: 0 20px;
    }

    .navbar-logo {
        width: 138px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .mobile-navbar {
        width: 70%;
        right: -70%;
    }

    .about-card-light {
        padding: 42px 28px;
    }

    .about-photo-light {
        height: 280px;
    }

    .profile-card,
    .profile-card-single {
        flex-basis: 270px;
    }

    .service-image {
        height: 240px;
    }

    .stat-item h3 {
        font-size: 54px;
    }

    .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 42px;
        height: 42px;
        font-size: 21px;
    }
}






/* =========================
   PREMIUM PROFILE SECTION
========================= */

.premium-profile-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 120px 70px 130px;
    overflow: hidden;
}

.premium-profile-lines {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 23, 47, 0.07) 1px, transparent 1px);
    background-size: 25%;
    pointer-events: none;
}

.premium-profile-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.premium-profile-content span {
    display: block;
    color: var(--butrinti-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.premium-profile-content h2 {
    color: #07172f;
    font-size: clamp(46px, 5vw, 86px);
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}

.premium-profile-content p {
    max-width: 650px;
    color: #536174;
    font-size: 17px;
    line-height: 1.75;
}

.premium-profile-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.premium-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 58px;
    background: linear-gradient(135deg, var(--butrinti-light-blue), var(--butrinti-blue));
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.premium-profile-btn:hover {
    transform: translateY(-3px);
}

.premium-profile-link {
    position: relative;
    display: inline-flex;
    color: #07172f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding-bottom: 8px;
}

.premium-profile-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    background: repeating-linear-gradient(-45deg, rgba(31, 143, 255, 0.28), rgba(31, 143, 255, 0.28) 3px, transparent 3px, transparent 7px);
}

.premium-profile-card {
    position: relative;
    background: #f7f9fc;
    border: 1px solid rgba(7, 23, 47, 0.09);
    box-shadow: 0 30px 90px rgba(7, 23, 47, 0.10);
    padding: 36px;
    overflow: hidden;
}

.premium-profile-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: rgba(31, 143, 255, 0.12);
    border-radius: 50%;
}

.premium-profile-image {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 380px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px;
    border: 1px solid rgba(7, 23, 47, 0.06);
}

.premium-profile-image img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
}

.premium-profile-card-content {
    position: relative;
    z-index: 2;
    padding-top: 32px;
}

.premium-profile-card-content span {
    display: block;
    color: var(--butrinti-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.premium-profile-card-content h3 {
    color: #07172f;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.premium-profile-card-content p {
    color: #536174;
    font-size: 15px;
    line-height: 1.68;
}

.premium-profile-specs {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(7, 23, 47, 0.10);
    border-left: 1px solid rgba(7, 23, 47, 0.10);
}

.profile-spec-box {
    background: rgba(255, 255, 255, 0.78);
    padding: 36px 34px;
    border-right: 1px solid rgba(7, 23, 47, 0.10);
    border-bottom: 1px solid rgba(7, 23, 47, 0.10);
    transition: 0.25s ease;
}

.profile-spec-box:hover {
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(7, 23, 47, 0.08);
    transform: translateY(-3px);
}

.profile-spec-box span {
    display: block;
    color: rgba(31, 143, 255, 0.55);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
}

.profile-spec-box h4 {
    color: #07172f;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.profile-spec-box p {
    color: #536174;
    font-size: 15px;
    line-height: 1.65;
}

/* =========================
   GALLERY LOWER SPACING
========================= */

.gallery-lower-section {
    padding-top: 125px;
}

/* =========================
   PREMIUM CTA SECTION
========================= */

.cta-premium-section {
    position: relative;
    width: 100%;
    min-height: 470px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #07172f;
}

.cta-premium-image {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=90&w=2200&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.02);
}

.cta-premium-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(7, 23, 47, 0.96) 0%, rgba(7, 23, 47, 0.86) 48%, rgba(31, 143, 255, 0.54) 100%),
        linear-gradient(180deg, rgba(7, 23, 47, 0.42) 0%, rgba(7, 23, 47, 0.95) 100%);
}

.cta-premium-lines {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 25%;
    pointer-events: none;
}

.cta-premium-content {
    position: relative;
    z-index: 4;
    max-width: 1150px;
    width: 100%;
    padding: 90px 70px;
    text-align: center;
}

.cta-premium-content span {
    display: block;
    color: var(--butrinti-light-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cta-premium-content h2 {
    color: #ffffff;
    font-size: clamp(42px, 5vw, 82px);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.cta-premium-content p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.7;
}

.cta-premium-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.cta-premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 58px;
    background: linear-gradient(135deg, var(--butrinti-light-blue), var(--butrinti-blue));
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.cta-premium-btn:hover {
    transform: translateY(-3px);
}

.cta-premium-phone {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.cta-premium-phone:hover {
    color: var(--butrinti-light-blue);
}

/* =========================
   RESPONSIVE FIXES
========================= */

@media (max-width: 1100px) {
    .premium-profile-wrapper {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .premium-profile-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .premium-profile-section {
        padding: 80px 22px 90px;
    }

    .premium-profile-image {
        min-height: 280px;
        padding: 28px;
    }

    .premium-profile-card {
        padding: 24px;
    }

    .premium-profile-actions,
    .cta-premium-actions {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .cta-premium-content {
        text-align: left;
        padding: 76px 22px;
    }

    .cta-premium-content p {
        margin: 0;
    }

    .gallery-lower-section {
        padding-top: 90px;
    }
}



















