/* ===========================
   RESET & BASE
   =========================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #020c1a;
    color: #ffffff;
}

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

.page-main {
    padding-top: 86px; /* lartësia e header-it fixed */
}

/* Animacione bazë */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatSlow {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* ===========================
   HEADER
   =========================== */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(2, 9, 20, 0.94), rgba(3, 20, 45, 0.96));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.header-nav a,
.header-nav .nav-link {
    position: relative;
    font-size: 14px;
    opacity: 0.85;
    transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

/* underline animuar poshtë linkut */
.header-nav a::after,
.header-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00c0ff, #007bff);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.header-nav a:hover,
.header-nav .nav-link:hover {
    opacity: 1;
    color: #06c2ff;
    transform: translateY(-1px);
}

.header-nav a:hover::after,
.header-nav .nav-link:hover::after {
    transform: scaleX(1);
}
.nav-link-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-icon-home {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.nav-icon-home svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    filter: drop-shadow(0 0 4px rgba(0,192,255,0.7));
    transition: transform 0.18s ease, fill 0.18s ease;
}

.nav-link-home:hover .nav-icon-home svg {
    transform: translateY(-1px);
    fill: #06c2ff;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo {
    height: 42px;
    filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.7));
}

.header-brand-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.9;
}

.header-brand-text strong {
    font-size: 11px;
    letter-spacing: 0.12em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.header-nav a {
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.15s, color 0.15s;
}

.header-nav a:hover {
    opacity: 1;
    color: #06c2ff;
}

.header-instagram img {
    height: 22px;
    filter: brightness(1.4);
    transition: filter 0.15s, transform 0.15s;
}

.header-instagram:hover img {
    filter: brightness(2);
    transform: translateY(-1px);
}

/* ===========================
   HERO – stil icx.ro
   =========================== */

.hero-section {
    background: radial-gradient(circle at top left, #0d6bb7, #020c1a 55%);
    padding: 90px 30px 110px;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 42px;
    align-items: center;
}

.hero-left {
    animation: fadeUp 0.9s ease-out forwards;
}

.hero-kicker {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
    margin: 0 0 12px;
}

.hero-section h1 {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 18px;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.55;
    max-width: 640px;
    opacity: 0.95;
}

.hero-list {
    margin: 18px 0 0;
    padding-left: 20px;
    font-size: 15px;
}

.hero-list li {
    margin-bottom: 6px;
    opacity: 0.93;
}

.hero-cta {
    display: inline-block;
    margin-top: 26px;
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #00b7ff, #118dff);
    box-shadow: 0 12px 30px rgba(0, 183, 255, 0.5);
    color: #02101c;
    transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
}

.hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(0, 183, 255, 0.7);
    background: linear-gradient(135deg, #00a0e0, #0d77d6);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-card {
    background: radial-gradient(circle at top left, rgba(255,255,255,0.2), rgba(0,0,0,0.9));
    border-radius: 32px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.9);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.16);
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.9s 0.12s ease-out forwards, floatSlow 6s ease-in-out 1s infinite;
}

.hero-logo {
    max-height: 70px;
    width: auto;
    display: block;
}

.hero-logo-luend {
    max-height: 80px;
}

.hero-logo-medentis {
    max-height: 60px;
    opacity: 0.96;
}
/* ===========================
   NEW WELCOME HERO – LIKE ICX.RO
   =========================== */

.hero-welcome {
    position: relative;
    height: 88vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    overflow: hidden;
    margin-top: -1px;
}

.hero-welcome-inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin-left: 60px;
    padding: 20px;
}

.welcome-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.15;
}

.welcome-title span {
    background: linear-gradient(135deg, #00d2ff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-sub {
    font-size: 18px;
    max-width: 540px;
    line-height: 1.6;
    opacity: 0.92;
    margin-bottom: 28px;
}

.big-cta {
    padding: 14px 32px;
    font-size: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00c0ff, #007bff);
    color: #fff !important;
    box-shadow: 0 16px 45px rgba(0, 192, 255, 0.35);
    transition: transform .25s ease, box-shadow .25s ease;
}

.big-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(0, 192, 255, 0.55);
}

/* BACKGROUND IMAGE */
.hero-welcome-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('/assets/img/home-hero.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    filter: brightness(0.75);
    z-index: 1;
}

/* BLUE OVERLAY LIKE ICX.RO */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width:100%; height:100%;
    z-index:2;
    background: linear-gradient(90deg, rgba(2,12,30,0.92) 20%, rgba(0,20,55,0.55) 70%, rgba(0,0,0,0.15));
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .hero-welcome {
        justify-content: center;
        height: auto;
        padding: 80px 0;
        text-align: center;
    }

    .hero-welcome-inner {
        margin: 0;
        padding: 20px;
        max-width: 90%;
    }

    .welcome-title {
        font-size: 34px;
    }

    .welcome-sub {
        font-size: 16px;
    }
}
/* =========================================
   ======== STRIP BANNER – GLOBAL  =========
   ========================================= */

.strip-banner {
    width: 100%;
    background: #f3f3f3;           /* gri e lehtë si te ICX implants */
    padding: 18px 0;
    text-align: center;
    border-top: 5px solid rgba(0,0,0,0.04);
    border-bottom: 5px solid rgba(0,0,0,0.04);
    margin: 0;
}

.strip-banner-icx {
    font-weight: 700;
    font-size: 35px;
    letter-spacing: 2px;
    color: #004c5e;                 /* blu ICX */
    margin-right: 8px;
    text-transform: uppercase;
}

.strip-banner-label {
    font-weight: 700;
    font-size: 45px;
    letter-spacing: 2px;
    color: #f58220;                 /* PORTOKALLI si te ICX implants */
    text-transform: uppercase;
}
/* ===========================
   FAIR SECTION – e bardhë
   =========================== */

/* ===========================
   FAIR IMPLANT SYSTEM
   =========================== */

.fair-section {
    position: relative;
    background: #ffffff;
    padding: 80px 20px 90px;
    overflow: hidden;
}

/* efekt me vija poshtë (si te icx.ro) */
.fair-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: repeating-linear-gradient(
        to right,
        rgba(0, 0, 0, 0.04) 0,
        rgba(0, 0, 0, 0.04) 1px,
        transparent 1px,
        transparent 6px
    );
    opacity: 0.4;
}

.fair-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ICX e zbehtë në sfond */
.fair-icx-watermark {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 110px;
    font-weight: 700;
    letter-spacing: 8px;
    color: rgba(0, 0, 0, 0.04);
    pointer-events: none;
}

/* titulli */
.fair-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #004c5e; /* blu e thellë */
}

.fair-highlight {
    color: #e95555; /* koral si "FAIR" te icx.ro */
    font-style: italic;
}

/* nën-titulli */
.fair-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #8c8c8c;
    margin-bottom: 18px;
}

/* paragrafi */
.fair-desc {
    max-width: 620px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.6;
    color: #4c4c4c;
}

/* pjesa e poshtme: GERMAN & SWISS + implant */
.fair-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 10px;
}

.fair-made {
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
}

.fair-flags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.fair-flags img {
    height: 38px;
}

/* foto e implantit në të djathtë */
.fair-implant img {
    max-height: 120px;
    width: auto;
}

/* responsive */
@media (max-width: 900px) {
    .fair-visual {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .fair-made {
        text-align: center;
    }

    .fair-title {
        font-size: 32px;
    }
}

/* Responsive */
@media (max-width: 980px) {
    .fair-inner {
        grid-template-columns: 1fr;
        padding: 0 18px;
    }

    .fair-image {
        order: -1; /* foto lart në mobile si icx.ro */
        margin-bottom: 12px;
    }

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

    .fair-section {
        padding: 50px 0 60px;
    }
}

/* ===========================
   CLEAN IMPLANT CERTIFICATE
   =========================== */

.clean-section {
    background: #f0f1f4;
    color: #163a4b;
    padding: 70px 0 80px;
}

.clean-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
}

.clean-text {
    animation: fadeUp 0.9s ease-out forwards;
}

.clean-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #8b9bb0;
    margin: 0 0 6px;
}

.clean-title {
    font-size: 30px;
    margin: 0 0 6px;
}

.clean-subtitle {
    font-weight: 600;
    margin-bottom: 14px;
    color: #7a8596;
}

.clean-body {
    margin-top: 0;
    line-height: 1.6;
}

.clean-list {
    margin: 16px 0 0;
    padding-left: 18px;
}

.clean-list li {
    margin-bottom: 6px;
}

.clean-image {
    text-align: center;
}

.clean-cert-img {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}
/* Seksioni TITAN 4KV */
.titan-section {
    background: #ffffff;
    padding: 90px 20px;
}

.titan-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout 3-kolona për kombinimin TITAN | FOTO | SLA */
.titan-inner.titan-3col {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* TITAN | FOTO | SLA */
    align-items: center;
    gap: 50px;
}

/* TITULLI */
.titan-title {
    font-size: 42px;
    font-weight: 700;
    color: #004c5e; /* blu ICX */
    margin-bottom: 18px;
}

.titan-highlight {
    color: #e95555; /* ngjyra koral si te ICX */
    font-weight: 700;
    font-style: italic;
}

/* TEKSTI MAJTAS & DJATHTAS */
.titan-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #3d3d3d;
    max-width: 480px;
}

/* FOTO NË MES */
.titan-image img {
    width: 100%;
    max-width: 320px;  /* zvogëlo pak që të mos jetë gjigande */
    border-radius: 0;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    display: block;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .titan-inner.titan-3col {
        grid-template-columns: 1fr;   /* kalon në një kolonë në telefon */
        text-align: center;
    }

    .titan-text p {
        margin: 0 auto;
    }

    .titan-title {
        font-size: 34px;
    }

    .titan-image img {
        max-width: 260px;
    }
}

.advantages-section {
    background: #ffffff;
    padding: 90px 20px;
    text-align: right;
}

.section-header {
    margin-bottom: 40px;
}

.icx-badge {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #004c5e;
    font-weight: 700;
    font-size: 14px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 6px;
    color: #004c5e;
}

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

.adv-card img {
    max-height: 80px;
    margin-bottom: 18px;
}

.adv-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #004c5e;
}

.adv-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
    .titan-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .titan-text p {
        margin: 0 auto;
    }

    .titan-title {
        font-size: 34px;
    }
}
.implants-section {
    background: #f7fafc;
    padding: 90px 20px;
}

.implant-row {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.implant-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: #004c5e;
}

.implant-sub {
    font-weight: 600;
    color: #8c8c8c;
    margin-bottom: 8px;
}

.implant-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #454545;
}

.implant-media img {
    margin: 18px 0 16px;
    max-width: 100%;
}

.implant-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-outline {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #004c5e;
    color: #004c5e;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline:hover {
    background: #004c5e;
    color: #ffffff;
}

@media (max-width: 900px) {
    .implant-row {
        grid-template-columns: 1fr;
    }
}
/* SFONDI I GJITHË SEKSIONIT */
.implants-section {
    background: #f6fafc;
    padding: 0 0 80px;
}

/* BANDA GRI SIPËR + ICX I MADH + IMPLANTS KORAL */
.implants-banner {
    position: relative;
    background: #e6e6e6;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.implants-banner-icx {
    position: absolute;
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 10px;
    color: rgba(255, 255, 255, 0.7);
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.implants-banner-label {
    position: relative;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #f26a5f; /* koral si te icx.ro */
    text-transform: uppercase;
}

/* DY KOLONAT POSHTË */
.implant-row {
    max-width: 1100px;
    margin: 50px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 40px;
}

/* TITULLI ICX BONE / TISSUE ME DY NGJYRA */
.implant-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}


.implant-sub {
    font-weight: 600;
    color: #888888;
    margin-bottom: 12px;
}

.implant-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #444444;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .implants-banner {
        height: 90px;
    }
    .implants-banner-icx {
        font-size: 80px;
    }
    .implants-banner-label {
        font-size: 30px;
    }
    .implant-row {
        grid-template-columns: 1fr;
    }
}
.advantages-section {
    background: #ffffff;
    padding: 0 0 80px;
}

/* banda gri sipër */
.advantages-banner {
    position: relative;
    background: #e6e6e6;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.advantages-banner-icx {
    position: absolute;
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 10px;
    color: rgba(255, 255, 255, 0.7);
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.advantages-banner-label {
    position: relative;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #f26a5f;   /* korali ICX */
    text-transform: uppercase;
}

/* përmbajtja poshtë bandës */
.advantages-inner {
    max-width: 1100px;
    margin: 50px auto 0;
    padding: 0 20px;
}

/* grid i kartave */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    text-align: center;
}

.adv-card img {
    max-height: 80px;
    margin-bottom: 18px;
}

.adv-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #004c5e;
}

.adv-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

@media (max-width: 900px) {
    .advantages-banner {
        height: 90px;
    }
    .advantages-banner-icx {
        font-size: 80px;
    }
    .advantages-banner-label {
        font-size: 28px;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== IMPLANTS ===== */

/* 2 kolona nën shiritin IMPLANTS */
.implant-row {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 80px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 40px;
}

.implant-block {
    text-align: left;
}

/* ICX BONE LEVEL / ICX TISSUE LEVEL */
.implant-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}


.implant-sub {
    font-weight: 600;
    color: var(--icx-muted);
    margin-bottom: 12px;
}

.implant-block p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--icx-text);
}

.implant-media img {
    margin: 18px 0 16px;
    max-width: 100%;
}

.implant-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== BUTON OUTLINE ===== */

.btn-outline {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--icx-blue);
    color: var(--icx-blue);
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--icx-blue);
    color: #ffffff;
}

/* mobile implants */
@media (max-width: 900px) {
    .implant-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .implant-block {
        text-align: center;
    }

    .implant-actions {
        justify-content: center;
    }
}

/* Container identik si ICX.ro */
.icx-special {
    padding: 100px 0;
    background: #ffffff;
}

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

.icx-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #004c5e;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.icx-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.icx-card {
    background: #ffffff;
    border-radius: 22px;
    text-align: center;
    padding: 40px 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.icx-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 70px rgba(0,0,0,0.10);
}

.icx-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #004c5e;
    margin-bottom: 10px;
}

.icx-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #3e6a7a;
    margin-bottom: 14px;
}

.icx-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4f4f4f;
    margin-bottom: 25px;
}

.icx-img {
    max-width: 150px;
    margin: 0 auto 22px;
    display: block;
    border-radius: 12px;
}

.icx-link {
    font-size: 15px;
    font-weight: 600;
    color: #004c5e;
    text-decoration: none;
    border-bottom: 1px solid #004c5e;
    padding-bottom: 2px;
    transition: 0.2s ease;
}

.icx-link:hover {
    opacity: 0.8;
}

@media(max-width: 900px) {
    .icx-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

* =========================================
   ======== ICX DIGITAL (MAGELLAN) =========
   ========================================= */

.digital-section {
    background: var(--icx-bg-light);
}

/* container i brendshëm si te icx.ro */
.digital-section .strip-inner,
.allon-section .strip-inner {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px 80px;
}

/* header i vogël lart (MAGELLAN SOLUTIONS + tekst) */
.section-header-digital {
    max-width: 650px;
    margin: 0 auto 40px;
    text-align: center;
}

.digital-sub {
    font-weight: 600;
    color: var(--icx-muted);
    margin-top: 10px;
}

.digital-desc {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--icx-text);
}

/* layout 2 kolona: tekst / foto – përdoret si te DIGITAL ashtu edhe te ALL-ON */
.digital-row {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

/* blloqet e tekstit DIGITAL + ALL-ON */
.digital-block h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--icx-blue);
    margin-bottom: 10px;
}

.digital-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--icx-text);
    max-width: 420px;
}

/* imazhi në DIGITAL (iPad / guided) */
.digital-image img {
    width: 100%;
    max-width: 720px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 18px 34px rgba(0,0,0,0.25));
}

/* =========================================
   ========== ICX ALL-ON-4 & ALL-ON-6 ======
   ========================================= */

.allon-section {
    background: #ffffff;
}

/* përdor të njëjtin .strip-inner si më sipër */

/* rreshti me dy COL te ALL-ON */
.allon-section .digital-row {
    margin-top: 40px;
}

/* titujt ALL-ON */
.allon-section .digital-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--icx-blue);
    margin-bottom: 10px;
}

.allon-section .digital-block h3 span {
    color: #e95555; /* ALL-ON i kuq nëse do ta përdorësh span */
}

/* imazhet tek ALL-ON-4 & 6 më kompakte */
.allon-section .digital-block img {
    margin-top: 18px;
    max-width: 230px;
    display: block;
    width: 100%;
}

/* MOBILE – DIGITAL + ALL-ON */
@media (max-width: 900px) {
    .digital-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .digital-block p {
        max-width: 100%;
        margin: 0 auto;
    }

    .digital-image img {
        max-width: 100%;
    }

    .allon-section .digital-block img {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===========================
   ICX DIAMOND LIQUID BANNER
   =========================== */

.diamond-section {
    background: radial-gradient(circle at top left, #f0d89f, #c79a55 30%, #4b3a2d 80%);
    color: #20120a;
    padding: 70px 0 80px;
}

.diamond-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: center;
}

.diamond-image {
    text-align: center;
}

.diamond-img {
    max-width: 100%;
    border-radius: 32px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
    animation: fadeUp 0.9s ease-out forwards, floatSlow 7s ease-in-out infinite;
}

.diamond-text {
    animation: fadeUp 0.9s 0.1s ease-out forwards;
}

.diamond-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: rgba(32,18,10,0.8);
    margin: 0 0 8px;
}

.diamond-title {
    font-size: 26px;
    margin: 0 0 10px;
}

.diamond-body {
    margin-top: 0;
    line-height: 1.6;
}

.diamond-list {
    margin: 16px 0 0;
    padding-left: 18px;
}

.diamond-list li {
    margin-bottom: 6px;
}

/* ===========================
   ICX PRODUCTS – me QR
   =========================== */

.lines-section {
    background: #050b16;
    color: #f5f7fb;
    padding: 60px 0 70px;
}

.lines-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 40px;
    align-items: center;
}

.lines-text {
    animation: fadeUp 0.9s ease-out forwards;
}

.lines-text h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.lines-text p {
    margin-top: 0;
    line-height: 1.6;
    color: #c7d0e3;
}

.lines-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 16px;
}

.lines-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    font-size: 13px;
    color: #e3ecff;
    background: rgba(7, 23, 57, 0.8);
}

.lines-note {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 18px;
}

.lines-cta {
    background: linear-gradient(135deg, #00c0ff, #007bff);
    box-shadow: 0 18px 40px rgba(0, 192, 255, 0.35);
}

/* QR Box */

.lines-qr-box {
    background: radial-gradient(circle at top left, #101b33, #050a17);
    border-radius: 24px;
    padding: 18px 20px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.85);
    border: 1px solid rgba(255,255,255,0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeUp 0.9s 0.12s ease-out forwards;
}

.lines-qr-img {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    margin-bottom: 10px;
}

.lines-qr-text {
    font-size: 13px;
    line-height: 1.5;
    color: #d5e2ff;
}

.lines-qr-text span {
    display: inline-block;
    margin-top: 4px;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 980px) {
    .lines-inner {
        grid-template-columns: 1fr;
        padding: 0 18px;
    }

    .lines-section {
        padding: 50px 0 60px;
    }

    .lines-qr-box {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ========= RESPONSIVE ========= */

@media (max-width: 980px) {
    .clean-inner,
    .diamond-inner {
        grid-template-columns: 1fr;
        padding: 0 18px;
    }

    .clean-section,
    .diamond-section,
    .lines-section {
        padding: 50px 0 60px;
    }

    .diamond-inner {
        text-align: left;
    }

    .diamond-image {
        order: -1;
    }

    .diamond-title {
        font-size: 24px;
    }

    .clean-title {
        font-size: 26px;
    }
}

/* ===========================
   CONTACT
   =========================== */

.contact-section {
    background: #F3F7FF;
    color: #003060;
    padding: 60px 30px 70px;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 40px;
    align-items: start;
    padding: 10px 0;
}

.contact-text h2 {
    margin-top: 0;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    border-radius: 12px;
    border: 1px solid #c4cce5;
    padding: 8px 10px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

.contact-btn {
    border: none;
    cursor: pointer;
}
/* ===========================
   ABOUT PAGE
   =========================== */

.about-hero {
    background: radial-gradient(circle at top left, #0d6bb7, #020c1a 55%);
    padding: 90px 30px 70px;
    color: #ffffff;
}

.about-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-inner h1 {
    margin: 0 0 10px;
    font-size: 32px;
}

.about-hero-inner p {
    margin: 0;
    max-width: 720px;
    line-height: 1.7;
    opacity: 0.9;
}
/* ===========================
   TRAINING PAGE
   =========================== */

.training-hero {
    height: 55vh;
    background: url('/assets/img/home-training.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.training-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 12, 30, 0.92),
        rgba(0, 80, 160, 0.45)
    );
}

.training-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: 0 18px;
    color: #ffffff;
}

.training-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 10px;
}

.training-subtitle {
    font-size: 18px;
    opacity: 0.92;
}

/* Seksioni i tekstit më poshtë */
.training-content {
    padding: 80px 0;
    background: #051428;
}

.training-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 18px;
    color: #ffffff;
}

.training-inner h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.training-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    color: #d4d8e2;
    line-height: 1.7;
    font-size: 17px;
}

.training-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00c0ff, #007bff);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 40px rgba(0, 144, 255, 0.4);
    transition: transform .2s ease, box-shadow .2s ease;
}

.training-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 55px rgba(0, 144, 255, 0.6);
}

/* MOBILE */
@media (max-width: 900px) {
    .training-hero {
        height: 50vh;
        background-position: center center;
    }
    .training-title {
        font-size: 30px;
    }
    .training-subtitle {
        font-size: 16px;
    }
    .training-content {
        padding: 60px 0 50px;
    }
}

/* GRID BLOCK LUEND / MEDENTIS */

.about-grid-section {
    background: #f5f6fa;
    padding: 60px 30px 70px;
}

.about-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
}

.about-block {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 24px 26px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.about-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    background: #0d6bb7;
    color: #ffffff;
    margin-bottom: 10px;
}

.about-badge-outline {
    background: transparent;
    color: #0d6bb7;
    border: 1px solid rgba(13,107,183,0.4);
}

.about-block h2 {
    margin: 0 0 6px;
    font-size: 22px;
    color: #1f3442;
}

.about-subtitle {
    margin: 0 0 14px;
    font-size: 14px;
    color: #6a7b90;
}

.about-block p {
    font-size: 14px;
    line-height: 1.7;
    color: #3a4b5a;
}

.about-list {
    margin: 14px 0 0;
    padding-left: 18px;
}

.about-list li {
    margin-bottom: 6px;
}

/* Meta info 3 kolona */

.about-meta-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-meta-grid h3 {
    font-size: 13px;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #7a8598;
}

.about-meta-grid p {
    font-size: 13px;
    margin: 0;
}

/* Highlight box për Medentis */

.about-highlight {
    margin-top: 18px;
    padding: 14px 14px 16px;
    border-radius: 16px;
    background: #0f2536;
    color: #e7f1ff;
}

.about-highlight h3 {
    margin: 0 0 6px;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* CTA poshtë */

.about-cta-section {
    background: #050b16;
    color: #f5f7fb;
    padding: 50px 30px 60px;
}

.about-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about-cta-text h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.about-cta-text p {
    margin: 0;
    max-width: 620px;
    font-size: 14px;
    line-height: 1.7;
    color: #c7d0e3;
}

/* Responsive */

@media (max-width: 980px) {
    .about-grid-inner {
        grid-template-columns: 1fr;
    }

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

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 80px 16px 50px;
    }

    .about-grid-section,
    .about-cta-section {
        padding: 40px 16px 50px;
    }

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

    .about-cta-inner {
        align-items: stretch;
    }

    .about-cta-text h2 {
        font-size: 20px;
    }
}

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

.site-footer {
    background: radial-gradient(circle at top left, #031733 0%, #020816 60%);
    color: #e5edf7;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 14px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 26px 18px;  /* ishte shumë e lartë, e ulim */
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr) minmax(0, 1.3fr);
    gap: 32px;
}

.footer-col h4 {
    margin: 0 0 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7ac4ff;
}

.footer-col p {
    margin: 0;
    line-height: 1.6;
    color: #c6d3e8;
}

.footer-brand p {
    max-width: 360px;
}

.footer-logo {
    height: 40px;              /* logo më e vogël, më premium */
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    text-decoration: none;
    color: #e5edf7;
}

.footer-social img {
    height: 22px;
}

.footer-social:hover span {
    text-decoration: underline;
}

/* Linja + pjesa e poshtme */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 8px;
    padding: 10px 26px 14px;
    text-align: center;
    font-size: 12px;
    color: #8fa1c0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding: 20px 18px 14px;
        gap: 18px;
    }

    .footer-logo {
        height: 32px;
    }

    .footer-bottom {
        padding: 10px 16px 14px;
    }
}
/* Footer Certifications */
.footer-certifications h4 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #004c5e;
}

.footer-cert-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.footer-cert-logos img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    transition: transform 0.25s ease;
}

.footer-cert-logos img:hover {
    transform: scale(1.07);
}

@media(max-width: 820px) {
    .footer-main {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-cert-logos {
        justify-content: center;
    }
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 980px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .header-nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero-inner,
    .fair-inner,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-top: 96px;
    }

    .hero-logo-card {
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .hero-inner {
        gap: 26px;
    }

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

    .header-inner {
        padding: 10px 16px;
    }

    .hero-section,
    .fair-section,
    .contact-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ===========================
   HEADER – VERSION I RI
   =========================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(3, 8, 20, 0.92);
    backdrop-filter: blur(14px);
    z-index: 9999;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo-large {
    height: 56px;
    filter: drop-shadow(0 0 20px rgba(0, 198, 255, 0.6));
}

.header-brand h1 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.header-brand span {
    font-size: 11px;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.header-nav a {
    color: #fff;
    opacity: 0.85;
    font-size: 14px;
    transition: .2s ease;
}

.header-nav a:hover {
    opacity: 1;
    color: #06c2ff;
}

.header-instagram img {
    height: 26px;
    filter: drop-shadow(0 0 6px #ff00ff);
    transition: .2s ease;
}

.header-instagram:hover img {
    transform: scale(1.1);
}

/* MOBILE FIX */
@media (max-width: 700px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-logo-large {
        height: 48px;
    }

    .header-nav {
        width: 100%;
        justify-content: space-between;
    }
}
/* ===========================
   FOOTER PREMIUM
   =========================== */

.lux-footer {
    background: linear-gradient(145deg, #020b17, #041126, #051a34);
    padding: 60px 30px 40px;
    color: #d9e8ff;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.lux-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
}

/* ----------- Left Column ----------- */
.lux-footer-logo {
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.6));
}

.lux-footer-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

/* ----------- Middle Column ----------- */
.lux-footer-middle h4,
.lux-footer-right h4 {
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8acbff;
}

.lux-footer-middle ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lux-footer-middle li {
    font-size: 14px;
    margin-bottom: 6px;
    opacity: 0.9;
}

/* ----------- Right Column ----------- */
.lux-social-icons {
    display: flex;
    gap: 14px;
}

.lux-social-icons img {
    width: 28px;
    filter: brightness(2);
    transition: 0.25s ease;
}

.lux-social-icons img:hover {
    transform: scale(1.14);
    filter: brightness(3);
}

.lux-follow {
    font-size: 13px;
    margin-top: 12px;
    opacity: 0.8;
}

/* ----------- Bottom Bar ----------- */
.lux-footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #8fa8c9;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ----------- Responsive ----------- */
@media (max-width: 900px) {
    .lux-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lux-social-icons {
        justify-content: center;
    }

    .lux-footer-logo {
        margin: 0 auto 18px;
    }
}

/* ===========================
   ICX PRODUCTS PAGE
   =========================== */

.products-page-hero {
    background: radial-gradient(circle at top left, #0d6bb7, #020c1a 55%);
    padding: 90px 30px 60px;
    color: #ffffff;
}

.products-page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.products-page-hero-inner h1 {
    margin: 0 0 10px;
    font-size: 32px;
}

.products-page-hero-inner p {
    margin: 0;
    max-width: 650px;
    line-height: 1.6;
    opacity: 0.9;
}

/* GRID si icx-shop/Implantate */

.products-page-grid {
    background: #f5f6fa;
    padding: 50px 30px 70px;
}

.products-page-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.products-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 14px 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.products-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.14);
}

.products-card-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.products-card-image img {
    max-width: 100%;
    max-height: 130px;
}

.products-card h2 {
    font-size: 15px;
    margin: 4px 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1f3442;
}

.products-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #4a5c6c;
    margin: 0;
}

/* QR section poshtë */

.products-page-qr {
    background: #050b16;
    color: #f5f7fb;
    padding: 50px 30px 60px;
}

.products-page-qr-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    gap: 30px;
    align-items: center;
}

.products-page-qr-text h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.products-page-qr-text p {
    margin: 0 0 18px;
    line-height: 1.6;
    color: #c7d0e3;
}

.products-page-qr-box {
    background: radial-gradient(circle at top left, #101b33, #050a17);
    border-radius: 24px;
    padding: 18px 20px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.85);
    border: 1px solid rgba(255,255,255,0.14);
    text-align: center;
}

.products-page-qr-box img {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    margin-bottom: 10px;
}

.products-page-qr-box p {
    font-size: 13px;
    margin: 0;
    color: #d5e2ff;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .products-page-grid-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .products-page-grid-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-page-qr-inner {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

@media (max-width: 520px) {
    .products-page-hero {
        padding: 80px 16px 40px;
    }

    .products-page-grid {
        padding: 40px 16px 60px;
    }

    .products-page-grid-inner {
        grid-template-columns: 1fr;
    }

    .products-page-qr {
        padding: 40px 16px 50px;
    }
}
html {
    scroll-behavior: smooth;
}
@media (max-width: 900px) {
    .hero-welcome {
        height: auto;
        padding: 90px 0 60px; /* pak hapsirë sipër e poshtë, jo full screen i detyruar */
        justify-content: center;
        text-align: center;
    }

    .hero-welcome-inner {
        margin: 0;
        padding: 0 18px;
        max-width: 95%;
    }

    .welcome-title {
        font-size: 32px;
    }

    .welcome-sub {
        font-size: 15px;
        max-width: 100%;
    }

    /* KRYESORJA: background të vihet në qendër në mobile */
    .hero-welcome-bg {
        background-position: center center;
    }
}
/* TRAINING PAGE */

.training-hero {
    height: 55vh;
    background: url('/assets/img/home-training.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.training-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.training-hero-inner {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 750px;
    padding: 0 18px;
}

.training-title {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.training-subtitle {
    font-size: 18px;
    color: #e0e0e0;
    margin-top: 10px;
}


/* CONTENT */

.training-content {
    padding: 80px 0;
    background: #051428;
}

.training-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 18px;
    color: #fff;
}

.training-inner h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.training-list {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 18px;
    color: #d4d8df;
}

.training-button {
    display: inline-block;
    padding: 14px 35px;
    background: #0094ff;
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.25s;
}

.training-button:hover {
    background: #0078d4;
}


/* MOBILE FIXES */

@media (max-width: 900px) {
    .training-title {
        font-size: 32px;
    }
    .training-subtitle {
        font-size: 16px;
    }
    .training-hero {
        height: 50vh;
        background-position: center center;
    }
}
/* CONTACT PAGE */
.contact-hero {
    height: 45vh;
    background: linear-gradient(135deg, #04336a, #02101f);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 18px;
}

.contact-hero-inner {
    max-width: 800px;
}

.contact-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 6px;
}

.contact-subtitle {
    font-size: 16px;
    opacity: 0.85;
}

/* SEKSCIONI KRYESOR 2 KOLONA */

.contact-section {
    background: #051428;
    padding: 70px 0 60px;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 22px;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
}

.contact-col h2 {
    font-size: 22px;
    margin: 0 0 12px;
}

.contact-col p {
    margin: 0 0 10px;
    line-height: 1.6;
}

.contact-col-info a {
    color: #8ecbff;
    text-decoration: none;
}
.contact-col-info a:hover {
    text-decoration: underline;
}

/* Social në kontakt */

.contact-social-block {
    margin: 16px 0 10px;
}

.contact-social-block > span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7a8fb0;
    margin-bottom: 6px;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #0b2343;
    border: 1px solid #1a3a66;
    text-decoration: none;
    color: #dfe9ff;
    font-size: 14px;
}

.contact-social-link img {
    height: 20px;
}

.contact-note {
    margin-top: 12px;
    font-size: 13px;
    color: #b6c3dc;
}

/* Forma djathtas  */

.contact-form {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form label {
    font-size: 13px;
    color: #cfd7ea;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 13px;
    border-radius: 10px;
    background: #0a1d3b;
    border: 1px solid #1a335a;
    color: #fff;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00a8ff;
}

.contact-btn {
    margin-top: 8px;
    padding: 12px 26px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #00c0ff, #007bff);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 38px rgba(0, 144, 255, 0.4);
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 144, 255, 0.6);
}

/* ALERT sukses / error */

.contact-alert {
    margin-bottom: 20px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
}

.contact-success {
    background: #0f4d1a;
    color: #b6f3c2;
}

.contact-error {
    background: #521212;
    color: #ffbcbc;
}

/* MAPS */

.contact-map-section {
    background: #040915;
    padding: 40px 0 60px;
    border-top: 1px solid #10182c;
}

.contact-map-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 22px;
    color: #f0f4ff;
}

.contact-map-inner h2 {
    margin: 0 0 16px;
    font-size: 20px;
}

.contact-map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,0.6);
    border: 1px solid #141f33;
}

.contact-map-container iframe {
    display: block;
    width: 100%;
    height: 360px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .contact-title {
        font-size: 30px;
    }

    .contact-hero {
        height: 38vh;
    }

    .contact-section {
        padding: 50px 0 50px;
    }

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