/* ======================================
   GLOBAL RESET / HTML / BODY
   Construction Industrial Theme
   ====================================== */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

/* Anti-aliasing */
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Manrope', 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 17px;      /* më i madh */
  line-height: 1.8;     /* më i lexueshëm */
  color: var(--text-main);
  background-color: var(--bg-light);
  overflow-x: hidden;

  /* Industrial texture feeling (super subtle) */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 14px 14px;
}

/* Titujt – Rajdhani, pak më të mëdhenj dhe interesantë */
.section-title,
.hero-title,
h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Shkallëzim i titujve */
h1,
.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  line-height: 1.1;
}

h2,
.section-title {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.15;
}

h3 {
  font-size: 1.7rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

/* ============================
   VARIABLES – COLORS UNTOUCHED
============================ */

:root {
  /* ============================
     BRAND COLORS (RED THEME)
     ============================ */

  --primary: #D7263D;
  --primary-dark: #B51F32;
  --primary-soft: rgba(215, 38, 61, 0.15);

  /* ============================
     METAL / STEEL NEUTRALS
     ============================ */

  --steel-lightest: #F3F4F6;
  --steel-light: #E5E7EB;
  --steel: #9CA3AF;
  --steel-dark: #4B5563;
  --steel-deep: #1F2937;
  --steel-black: #0A0D14;

  /* ============================
     TEXT
     ============================ */

  --text-main: #111827;
  --text-muted: #6B7280;
  --text-light: #F9FAFB;

  /* ============================
     BACKGROUNDS
     ============================ */

  --bg-light: #F9FAFB;
  --bg-soft: #F3F4F6;
  --bg-white: #ffffff;
  --bg-dark: #0F1624;
  --bg-darker: #070A12;

  /* ============================
     SHADOWS
     ============================ */

  --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 14px 34px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 22px 50px rgba(0, 0, 0, 0.35);

  /* ============================
     BORDERS & RADII
     ============================ */

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-round: 999px;

  --border-light: 1px solid rgba(255, 255, 255, 0.12);
  --border-dark: 1px solid rgba(0, 0, 0, 0.12);

  /* ============================
     ANIMATIONS / TIMING
     ============================ */

  --fast: 0.18s ease-out;
  --normal: 0.28s ease-out;
  --slow: 0.45s ease;

  /* ============================
     OVERLAYS / SPECIAL
     ============================ */

  --overlay-dark: rgba(0, 0, 0, 0.65);
  --overlay-red: rgba(215, 38, 61, 0.45);
  --overlay-steel: rgba(31, 41, 55, 0.45);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  padding-left: 0;
  list-style: none;
}

button {
  border: none;
  background: none;
}


/* ============ PRELOADER ============ */

.preloader-active {
  overflow: hidden;
}

#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, var(--primary-soft), transparent 55%), var(--bg-darker);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--normal), visibility var(--normal);
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
  color: var(--text-light);
}

.preloader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.preloader-logo .logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow-strong);
}

.preloader-logo .logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 15px;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 3px solid rgba(249, 250, 251, 0.08);
  border-top-color: var(--primary);
  margin: 0 auto 12px;
  animation: spin 0.8s linear infinite;
}

.preloader-subtext {
  font-size: 13px;
  color: rgba(249, 250, 251, 0.7);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============ NAVBAR ============ */

.sc-header {
  background: rgba(7, 10, 18, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition:
    background-color var(--normal),
    box-shadow var(--normal),
    backdrop-filter var(--normal),
    transform var(--normal);
}

/* kur scrollon */
.sc-header.sc-header-scrolled {
  background: rgba(3, 6, 12, 0.98);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  transform: translateY(0);
}

.sc-navbar {
  padding: 18px 0;
  background: transparent;
}

/* Brand */
.navbar-brand {
  color: var(--text-light);
}

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

.brand-main {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--text-light);
}

.brand-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(249, 250, 251, 0.75);
}

.brand-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* Toggler – container */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 6px 10px;
  outline: none;
  box-shadow: none;
}

/* Hiq ikonën default të Bootstrap */
.navbar-toggler:focus {
  box-shadow: none;
}

/* Ikona custom */
.navbar-toggler-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 22px;
  height: 16px;
}

.navbar-toggler-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background-color: #ffffff;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    background-color 0.22s ease;
}

/* Kur navbar është i hapur */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
  background-color: #ffffff;
}

.navbar-toggler[aria-expanded="true"] {
  border-color: #ffffff;
  background-color: rgba(15, 23, 42, 0.6);
}

/* Center links */
.sc-nav-links .nav-link {
  position: relative;
  padding: 8px 14px;
  margin: 0 4px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(249, 250, 251, 0.75);
  transition: color var(--fast);
}

.sc-nav-links .nav-link:hover,
.sc-nav-links .nav-link.active {
  color: var(--text-light);
}

.sc-nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform var(--fast);
}

.sc-nav-links .nav-link:hover::after,
.sc-nav-links .nav-link.active::after {
  transform: scaleX(1);
}

/* Language + CTA */
.sc-navbar-actions {
  color: var(--text-light);
}

.sc-lang-switch {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.lang-btn {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 3px 6px;
  color: rgba(249, 250, 251, 0.75);
}

.lang-btn.active {
  color: #fff;
}

.lang-divider {
  font-size: 13px;
  color: rgba(148, 163, 184, 0.8);
}

/* CTA Buttons */
.sc-btn-contact,
.sc-btn-main {
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-medium);
}

.sc-btn-contact:hover,
.sc-btn-main:hover {
  filter: brightness(1.05);
  box-shadow: var(--shadow-strong);
}

.sc-btn-ghost {
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(249, 250, 251, 0.45);
  color: var(--text-light);
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
}

.sc-btn-ghost:hover {
  background-color: rgba(15, 23, 42, 0.9);
}

@media (max-width: 991.98px) {
  .navbar-brand-mobile {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin-right: auto; /* LOGO në të majtë */
  }

  .navbar-toggler {
    margin-left: 0;
  }
}

 /* ===============================
   FIX: MENU IN ONE LINE (IT/EN)
   =============================== */

.sc-nav-links .nav-link {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  letter-spacing: 0.10em;  /* pak më ngushtë */
}

/* 1200px - pak më kompakt */
@media (max-width: 1200px) {
  .sc-nav-links .nav-link {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 13.5px;
  }
}

/* 1100px - balancimi perfekt për italisht */
@media (max-width: 1100px) {
  .sc-nav-links .nav-link {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }
}

/* 1024px - siguri që mos të thyhet */
@media (max-width: 1024px) {
  .sc-nav-links .nav-link {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12.7px;
  }
}

/* ===============================
   FIX: BUTTON ARROW ON SAME LINE
   =============================== */

.sc-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;                 /* distanca midis tekstit dhe shigjetës */
  white-space: nowrap;      /* mos e lejo të thyhet */
}

.sc-btn-contact i {
  position: static !important;  /* e heq ngjitjen poshtë */
  transform: translateY(0);     /* e vendos në qendër */
}



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

.sc-hero {
  min-height: 100vh;
  padding-top: 84px;
  position: relative;
  color: var(--text-light);
  background-image:
    linear-gradient(rgba(7, 10, 18, 0.25), rgba(7, 10, 18, 0.25)),
    url("./assets/img/hero/metal-bridge.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* overlay grid sipër fotos */
.sc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.28;
  pointer-events: none;
}

.sc-hero > .container {
  position: relative;
  z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e, #15803d);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
}

/* Teksti kryesor */
.hero-title {
  font-family: 'Rajdhani', 'Poppins', sans-serif;
  font-size: clamp(42px, 5vw + 14px, 68px);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-title .accent {
  color: var(--primary);
}

/* Hero paragraph */
.hero-text {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(249, 250, 251, 0.85);
}

/* Teksti me background blur */
.hero-text-box {
  background: rgba(7, 10, 18, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 650px;
  margin-bottom: 22px;
}

/* Hero stats */
.hero-stats .stat-card {
  background-color: rgba(15, 23, 42, 0.85);
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.stat-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: rgba(209, 213, 219, 0.85);
}

/* Hero visual */
.hero-visual {
  position: relative;
  max-width: 380px;
  margin-left: auto;
}

.hero-frame {
  position: relative;
  border-radius: 24px;
  padding: 18px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(7, 10, 18, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  border-radius: 18px;
  background-image: linear-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.15) 1px, transparent 1px);
  background-size: 22px 22px;
  min-height: 220px;
  overflow: hidden;
}

.hero-structure-layer {
  position: absolute;
  inset: 18px;
  background-image: linear-gradient(135deg, rgba(215, 38, 61, 0.18), transparent 55%),
    linear-gradient(45deg, rgba(148, 163, 184, 0.14), transparent 55%);
  mask-image: linear-gradient(to bottom, transparent 8%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
}

.hero-overlay-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 11px;
  color: rgba(249, 250, 251, 0.8);
}

/* Floating cards */
.hero-floating-card {
  position: absolute;
  padding: 10px 14px;
  border-radius: 14px;
  background-color: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow: var(--shadow-medium);
  font-size: 11px;
  color: rgba(248, 250, 252, 0.92);
  min-width: 160px;
}

.hero-floating-card .label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: rgba(148, 163, 184, 0.85);
}

.hero-floating-card .value {
  font-weight: 600;
}

.hero-floating-top {
  top: -10px;
  right: -6px;
}

.hero-floating-bottom {
  bottom: -8px;
  left: -4px;
}

/* ============ SECTIONS GENERAL ============ */

.sc-section {
  padding: 80px 0;
  position: relative;
}

.sc-section:nth-of-type(odd) {
  background-color: var(--bg-white);
}

.sc-section:nth-of-type(even) {
  background-color: var(--bg-soft);
}

.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-text {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 520px;
}

/* ============ ABOUT ============ */

.sc-about .about-highlights .about-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background-color: var(--bg-light);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 14px;
  font-weight: 500;
  color: var(--steel-dark);
}

.about-chip i {
  color: var(--primary);
  font-size: 16px;
}

.about-meta .meta-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--steel);
}

.about-meta .meta-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--steel-deep);
}

/* About right panel */
.about-panel {
  border-radius: 18px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 20px 20px 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-medium);
}

.about-panel-header {
  font-size: 14px;
  color: rgba(249, 250, 251, 0.85);
  margin-bottom: 18px;
}

.about-status {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-status .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e, #15803d);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
}

.about-timeline {
  border-left: 1px dashed rgba(148, 163, 184, 0.6);
  padding-left: 16px;
}

.timeline-step {
  position: relative;
  margin-bottom: 12px;
}

.timeline-step .bullet {
  position: absolute;
  left: -16px;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.9);
  background: var(--bg-dark);
}

.timeline-step h5 {
  font-size: 15px;
  margin-bottom: 3px;
  font-weight: 600;
}

.timeline-step p {
  font-size: 13px;
  color: rgba(209, 213, 219, 0.86);
}

.about-footer .about-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.9);
}

.about-footer .about-value {
  font-size: 15px;
  margin-bottom: 0;
}

.about-link {
  font-size: 14px;
  color: #e5e7eb;
  font-weight: 500;
}

.about-link:hover {
  color: var(--primary);
}

/* ============ SERVICES ============ */

.sc-services {
  background-color: var(--bg-white);
}

.sc-services .section-heading {
  max-width: 720px;
  margin: 0 auto 10px;
}

.sc-services .section-title {
  margin-bottom: 8px;
}

/* Kartat e shërbimeve */

.service-card {
  border-radius: 18px;
  background-color: var(--bg-light);
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 22px 18px 18px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition:
    transform var(--normal),
    box-shadow var(--normal),
    border-color var(--normal),
    background-color var(--normal);
}

.service-card:hover {
  transform: translateY(-6px);
  background-color: #fff;
  box-shadow: var(--shadow-medium);
  border-color: rgba(15, 23, 42, 0.25);
}

/* Ikona */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  background-color: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 28px;
  transition: transform var(--fast), box-shadow var(--fast);
  animation: servicePulse 3s ease-in-out infinite;
}

/* Hover animacion */
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 8px 22px rgba(215, 38, 61, 0.25);
}

/* Pulsi i lehtë */
@keyframes servicePulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.service-card h5 {
  font-size: 17px;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--steel-deep);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.service-card ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  margin-top: 4px;
}

.service-card ul li {
  font-size: 13px;
  color: var(--steel-dark);
  margin-bottom: 4px;
  position: relative;
  padding-left: 18px;
}

/* Custom bullet */
.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .service-card {
    padding: 16px 14px;
  }
}

/* ============ PROJECTS ============ */

.sc-projects {
  background-color: var(--bg-light);
}

.sc-projects .section-heading {
  align-items: flex-end;
}

/* Filter button */
.sc-filter-btn {
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-color: var(--steel-light);
  color: var(--steel-deep);
  background-color: var(--bg-white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    background-color var(--fast),
    color var(--fast),
    border-color var(--fast),
    box-shadow var(--fast),
    transform var(--fast);
}

.sc-filter-btn i {
  font-size: 16px;
}

/* hover + active */
.sc-filter-btn:hover,
.sc-filter-btn:focus-visible,
.sc-filter-btn.sc-filter-btn-active {
  background-color: var(--primary);
  border-color: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow-medium);
  transform: translateY(-1px);
}

/* Project cards */
.project-card {
  border-radius: 18px;
  overflow: hidden;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.6);
  transition:
    transform var(--normal),
    box-shadow var(--normal),
    border-color var(--normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(15, 23, 42, 0.2);
}

/* Tag sipër thumbnail */
.project-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 4px 11px;
  border-radius: 999px;
  background-color: rgba(249, 250, 251, 0.12);
  border: 1px solid rgba(249, 250, 251, 0.5);
  color: #e5e7eb;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Body */
.project-body {
  padding: 16px 18px 14px;
  flex: 1;
}

.project-body h5 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--steel-deep);
  font-weight: 600;
}

.project-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Meta */
.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--steel-dark);
  gap: 8px;
}

.project-meta i {
  margin-right: 4px;
}

/* Footer */
.projects-footer p {
  font-size: 14px;
}

.projects-footer .btn {
  border-radius: 999px;
  font-size: 13px;
  padding: 7px 16px;
  transition:
    background-color var(--fast),
    color var(--fast),
    border-color var(--fast),
    box-shadow var(--fast),
    transform var(--fast);
}

.projects-footer .btn:hover {
  background-color: var(--primary);
  border-color: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

/* Wrapper i filtrave */
.projects-filter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

/* Paneli i filtrave (chips) */
.projects-filter-panel {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.projects-filter-panel.is-visible {
  display: flex;
}

.projects-filter-chip {
  border-radius: 999px;
  border: 1px solid var(--steel-light);
  background-color: var(--bg-white);
  font-size: 12px;
  padding: 4px 10px;
  color: var(--steel-dark);
  cursor: pointer;
  transition:
    background-color var(--fast),
    color var(--fast),
    border-color var(--fast),
    box-shadow var(--fast),
    transform var(--fast);
}

.projects-filter-chip:hover {
  background-color: var(--steel-lightest);
  border-color: var(--steel);
  transform: translateY(-1px);
}

.projects-filter-chip.active {
  background-color: var(--primary);
  border-color: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

/* PROJECT THUMBNAILS ME FOTO REALISTE */

.project-thumb {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */
.project-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(7, 10, 18, 0.92), transparent 40%);
}

/* Projekti 1 */
.project-thumb-1 {
  background-image: url("./assets/img/project-1.webp");
}

/* Projekti 2 */
.project-thumb-2 {
  background-image: url("./assets/img/project-3.webp");
}

/* Projekti 3 */
.project-thumb-3 {
  background-image: url("./assets/img/project-2.webp");
}

/* ============ JOBS ============ */

.sc-jobs {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.85), #020617);
  color: var(--text-light);
}

.sc-jobs .section-heading {
  text-align: center;
}

.sc-jobs .section-title {
  color: var(--text-light);
  font-size: clamp(24px, 2.1vw + 10px, 30px);
  margin-bottom: 6px;
}

.sc-jobs .section-text {
  color: rgba(209, 213, 219, 0.86);
  max-width: 640px;
  margin: 0 auto;
}

/* Label "Currently hiring" */
.jobs-label-wrapper {
  width: 100%;
}

.jobs-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(248, 250, 252, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.jobs-label .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e, #15803d);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

/* Side cards */

.jobs-side-card {
  background: radial-gradient(circle at top,
              rgba(15, 23, 42, 0.98),
              rgba(15, 23, 42, 0.92));
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 20px 22px 18px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.jobs-side-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(248, 250, 252, 0.9);
  margin-bottom: 10px;
}

.jobs-side-text {
  font-size: 13px;
  color: rgba(209, 213, 219, 0.85);
  margin-bottom: 10px;
}

.jobs-side-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.jobs-side-list li {
  font-size: 12px;
  color: rgba(209, 213, 219, 0.9);
  margin-bottom: 4px;
  position: relative;
  padding-left: 16px;
}

.jobs-side-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Lista e punëve */

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.job-card {
  background: radial-gradient(circle at top left,
              rgba(15, 23, 42, 0.98),
              rgba(15, 23, 42, 0.9));
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 16px;
  align-items: center;
  transition:
    border-color var(--normal),
    box-shadow var(--normal),
    transform var(--normal);
}

.job-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.job-main h5 {
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 600;
  color: #f9fafb;
}

.job-main p {
  font-size: 13px;
  color: rgba(209, 213, 219, 0.78);
  margin-bottom: 0;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(209, 213, 219, 0.82);
}

.job-meta i {
  margin-right: 3px;
}

.job-cta {
  border-radius: 999px;
  font-size: 12px;
  padding: 7px 18px;
  border: 1px solid rgba(248, 250, 252, 0.8);
  color: #f9fafb;
  background-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition:
    background-color var(--fast),
    color var(--fast),
    border-color var(--fast),
    box-shadow var(--fast),
    transform var(--fast);
}

.job-cta:hover {
  background-color: var(--primary);
  border-color: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.sc-jobs .jobs-footer p {
  color: rgba(156, 163, 175, 0.9);
  font-size: 13px;
}

.sc-jobs .jobs-footer .btn {
  border-radius: 999px;
  font-size: 13px;
  padding: 8px 22px;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .jobs-side-card {
    margin-bottom: 8px;
  }

  .job-card {
    border-radius: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .job-card {
    text-align: left;
    padding: 16px 18px;
  }
}

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

.sc-contact {
  background-color: var(--bg-soft);
}

.sc-contact .section-kicker,
.sc-contact .section-title,
.sc-contact .section-text {
  text-align: center;
}

.sc-contact .section-text {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* CONTACT INFO */

.contact-info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Ikona majtas, teksti djathtas */
.contact-info .info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
}

.contact-info h6 {
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: 600;
  color: var(--steel-deep);
}

.contact-info p {
  font-size: 13px;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Mobile tweak */
@media (max-width: 576px) {
  .contact-info .info-item {
    justify-content: flex-start;
  }
}

/* CONTACT DIRECTORY (4 EMAIL-A) */

.contact-directory {
  margin-top: 24px;
}

.contact-directory-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--steel-deep);
  text-align: center;
  margin-bottom: 4px;
}

.contact-directory-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 14px;
}

/* Mini cards */

.contact-card-mini {
  border-radius: 16px;
  background-color: var(--bg-white);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 10px 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    transform var(--fast),
    box-shadow var(--fast),
    border-color var(--fast),
    background-color var(--fast);
}

.contact-card-mini:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(215, 38, 61, 0.3);
  background-color: #ffffff;
}

.contact-mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background-color: var(--primary-soft);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-mini-body {
  display: flex;
  flex-direction: column;
}

.mini-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--steel);
}

.mini-title {
  font-size: 13px;
  margin: 2px 0;
  font-weight: 600;
  color: var(--steel-deep);
}

.mini-email {
  font-size: 12px;
  color: var(--primary-dark);
  text-decoration: none;
  word-break: break-all;
}

.mini-email:hover {
  text-decoration: underline;
}

/* Contact card / form */

.contact-card {
  border-radius: 20px;
  background: radial-gradient(circle at top,
              #ffffff,
              #f3f4f6);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

/* Form */

.contact-form .form-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--steel-dark);
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 12px;
  border-color: rgba(209, 213, 219, 0.9);
  font-size: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(215, 38, 61, 0.35);
}

/* Note + alert */

.form-note {
  font-size: 12px;
  color: var(--steel-dark);
  text-align: center;
}

.form-note span {
  font-weight: 600;
}

.form-alert {
  font-size: 13px;
  border-radius: 10px;
  padding: 8px 10px;
}

/* Responsive tweaks */

@media (max-width: 767.98px) {
  .contact-card {
    padding: 18px 14px;
  }

  .contact-info .info-item {
    align-items: flex-start;
  }

  .contact-info h6,
  .contact-info p {
    text-align: left;
  }
}

/* ============================
   FOOTER – Modern Centered
============================ */

.sc-footer {
  background: #050814;
  color: rgba(209, 213, 219, 0.9);
  padding: 50px 0 26px;
  text-align: center;
  border-top: 1px solid rgba(31, 41, 55, 0.6);
}

/* Brand */
.footer-brand .brand-main {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}

.footer-brand .brand-sub {
  font-size: 13px;
  color: rgba(148, 163, 184, 0.9);
}

.footer-text {
  font-size: 13px;
  max-width: 360px;
  line-height: 1.55;
  color: rgba(156, 163, 175, 0.92);
}

/* Meta small text */
.footer-meta span {
  font-size: 12px;
  color: rgba(156, 163, 175, 0.85);
}

/* Headings */
.footer-title {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
  color: rgba(249, 250, 251, 0.9);
}

/* Links list */
.footer-links li,
.footer-info li {
  margin-bottom: 6px;
  font-size: 13px;
}

.footer-links a {
  color: rgba(209, 213, 219, 0.85);
  transition: 0.25s;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Social icons */
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(209, 213, 219, 0.9);
  transition: 0.25s;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Bottom area */
.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.6);
  padding-top: 16px;
  margin-top: 32px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.85);
}

.footer-legal a {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.85);
  transition: 0.25s;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* Responsive fix */
@media (max-width: 768px) {
  .footer-text {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .sc-footer {
    padding: 40px 0 24px;
  }
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ======================================
   MOBILE GLOBAL – <= 768px
====================================== */
@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  .sc-section {
    padding: 60px 0;
  }

  /* NAVBAR */
  .sc-navbar {
    padding: 12px 0;
  }

  .navbar-collapse {
    text-align: center;
  }

  .sc-nav-links {
    margin-top: 10px;
  }

  .sc-nav-links .nav-link {
    display: inline-block;
    padding: 8px 0;
    margin: 2px 0;
  }

  .sc-navbar-actions {
    margin-top: 10px;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }

  /* HERO */
  .hero-badge {
    margin-top: 26px;
  }

  .hero-text-box {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-title {
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    margin-top: 24px;
  }

  .hero-stats .stat-card {
    text-align: center;
  }

  .hero-visual {
    margin: 32px auto 0;
  }

  /* SECTIONS */
  .section-kicker,
  .section-title,
  .section-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* ABOUT */
  .sc-about .about-highlights {
    justify-content: center;
  }

  .about-meta {
    justify-content: center;
    text-align: center;
  }

  .about-panel {
    margin-top: 24px;
  }

  /* PROJECTS */
  .sc-projects .section-heading {
    text-align: center;
    align-items: center;
  }

  .projects-filter-wrapper {
    align-items: center;
  }

  .projects-filter-panel {
    justify-content: center;
  }

  .project-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* JOBS */
  .jobs-side-card {
    margin-bottom: 12px;
  }

  .jobs-list {
    margin-top: 20px;
  }

  .job-card {
    border-radius: 18px;
    align-items: flex-start;
  }

  .job-main h5,
  .job-main p,
  .job-meta {
    text-align: left;
  }

  .jobs-footer .btn {
    margin-top: 6px;
  }

  /* CONTACT DIRECTORY mini cards */
  .contact-directory .row > [class^="col-"],
  .contact-directory .row > [class*=" col-"] {
    margin-bottom: 10px;
  }

  .contact-card-mini {
    justify-content: center;
  }

  /* FOOTER */
  .sc-footer {
    padding: 40px 0 24px;
  }

  .footer-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links,
  .footer-info {
    padding-left: 0;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* BACK TO TOP – INDUSTRIAL MODERN RED */
.back-to-top-modern {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at top left,
              rgba(15, 23, 42, 0.82),
              rgba(7, 10, 18, 0.94));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.38),
    0 0 16px rgba(215, 38, 61, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity .35s ease, transform .35s ease, background .35s ease, box-shadow .35s ease;
  z-index: 9999;
  cursor: pointer;
}

/* SHOW */
.back-to-top-modern.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: redPulse 2.8s ease-in-out infinite;
}

/* HOVER OVERRIDES PULSE */
.back-to-top-modern:hover {
  transform: translateY(-6px);
  background: radial-gradient(circle at top left,
              rgba(215, 38, 61, 0.88),
              rgba(181, 31, 50, 0.95));
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 10px 26px rgba(215, 38, 61, 0.48),
    0 0 22px rgba(215, 38, 61, 0.60);
  color: #fff;
  animation: none;    /* Stop pulsing during hover */
}

/* ICON MOVEMENT */
.back-to-top-modern i {
  transition: transform 0.28s ease;
}

.back-to-top-modern:hover i {
  transform: translateY(-3px);
}

/* RED PULSE ANIMATION */
@keyframes redPulse {
  0% {
    box-shadow:
      0 6px 18px rgba(0,0,0,0.38),
      0 0 12px rgba(215, 38, 61, 0.10);
  }
  50% {
    box-shadow:
      0 6px 20px rgba(0,0,0,0.42),
      0 0 26px rgba(215, 38, 61, 0.38);
  }
  100% {
    box-shadow:
      0 6px 18px rgba(0,0,0,0.38),
      0 0 12px rgba(215, 38, 61, 0.10);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 480px) {
  .back-to-top-modern {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 22px;
    font-size: 28px;
    border-radius: 16px;
  }
}


/* ============================
   AREAS / WHERE WE OPERATE
============================ */

.sc-areas {
  background-color: var(--bg-white);
}

/* Grid i kutive të zonave */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.areas-box {
  border-radius: 14px;
  background-color: var(--bg-soft);
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
}

.areas-box-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--steel-deep);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.areas-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.areas-box ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.areas-box ul li {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.areas-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* Card e hartës */

.areas-map-card {
  border-radius: 20px;
  background: radial-gradient(circle at top,
              #020617,
              #020617);
  padding: 18px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-soft);
  color: var(--text-light);
}

.areas-map-header {
  font-size: 13px;
  margin-bottom: 10px;
}

.areas-map-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(248, 250, 252, 0.95);
  font-weight: 500;
}

.areas-map-status {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(209, 213, 219, 0.9);
}

.areas-map-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e, #15803d);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

/* Leaflet map container */

.areas-map {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.55);
}

/* Footer i hartës */

.areas-map-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 13px;
}

.areas-foot-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.9);
}

.areas-foot-value {
  font-size: 13px;
  color: rgba(249, 250, 251, 0.92);
}

.areas-foot-link {
  font-size: 13px;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.areas-foot-link:hover {
  color: var(--primary);
}

/* Responsive */

@media (max-width: 991.98px) {
  .areas-map-card {
    margin-top: 16px;
  }
}

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

@media (max-width: 576px) {
  .areas-map {
    height: 220px;
  }
}

/* ============================
   FAQ SECTION
============================ */

.sc-faq {
  background-color: var(--bg-white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Card */

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background-color: var(--bg-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    border-color var(--fast),
    box-shadow var(--fast),
    background-color var(--fast);
}

.faq-item.is-open {
  border-color: var(--primary);
  box-shadow: var(--shadow-medium);
  background-color: #ffffff;
}

/* Header */

.faq-item-header {
  width: 100%;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.faq-question {
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--steel-deep);
}

/* Icon (+ / -) */

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.faq-icon .line {
  position: absolute;
  background-color: rgba(31, 41, 55, 0.95);
  border-radius: 999px;
  transition: transform var(--fast), opacity var(--fast);
}

.faq-icon .line-1 {
  width: 11px;
  height: 2px;
}

.faq-icon .line-2 {
  width: 2px;
  height: 11px;
}

/* Kur është hapur -> bëhet minus */

.faq-item.is-open .faq-icon .line-2 {
  transform: scaleY(0);
  opacity: 0;
}

/* Body */

.faq-body {
  padding: 0 16px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s ease-out, padding-top 0.2s ease-out, padding-bottom 0.2s ease-out;
}

.faq-item.is-open .faq-body {
  padding-top: 4px;
  padding-bottom: 12px;
  max-height: 240px;
}

.faq-body p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Mobile */

@media (max-width: 576px) {
  .faq-item-header {
    padding: 10px 12px;
  }
  .faq-body {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* NAVBAR – mobile hamburger modern */

.sc-navbar {
  backdrop-filter: blur(10px);
}

/* Mobile toggler container */
.sc-navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kutia e 3 vijave */
.sc-navbar-toggler .toggler-box {
  width: 24px;
  height: 18px;
  position: relative;
  display: inline-block;
}

/* Vijat */
.sc-navbar-toggler .toggler-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease,
    bottom 0.25s ease;
}

.sc-navbar-toggler .line-1 {
  top: 0;
}

.sc-navbar-toggler .line-2 {
  top: 8px;
}

.sc-navbar-toggler .line-3 {
  bottom: 0;
}

/* Label "Menu" */
.sc-navbar-toggler .toggler-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  opacity: 0.9;
}

/* Kur menuja është e hapur */
.sc-navbar-toggler[aria-expanded="true"] .line-1 {
  top: 8px;
  transform: rotate(45deg);
}

.sc-navbar-toggler[aria-expanded="true"] .line-2 {
  opacity: 0;
}

.sc-navbar-toggler[aria-expanded="true"] .line-3 {
  bottom: 8px;
  transform: rotate(-45deg);
}

/* Mobile nav dropdown styling */
@media (max-width: 991.98px) {
  .sc-header {
    background: linear-gradient(
      135deg,
      rgba(12, 17, 28, 0.96),
      rgba(27, 36, 56, 0.96)
    );
  }

  .navbar-collapse {
    background: rgba(7, 10, 18, 0.98);
    border-radius: 1rem;
    padding: 0.75rem 1rem 1rem;
    margin-top: 0.75rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  }

  .sc-nav-links .nav-link {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .sc-nav-links .nav-link.active,
  .sc-nav-links .nav-link:hover {
    color: #ffffff;
  }

  .sc-nav-cta-mobile .btn {
    font-size: 0.75rem;
    border-radius: 999px;
  }
}

/* Mobile language switch */
.mobile-lang-box {
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.sc-lang-switch-mobile .lang-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 8px;
  opacity: 0.75;
}

.sc-lang-switch-mobile .lang-btn.active {
  opacity: 1;
  color: #ff4b4b;
}

.sc-lang-switch-mobile .lang-divider {
  padding: 0 6px;
  color: rgba(255,255,255,0.4);
}

/* Desktop language switch (EN / IT) */
.sc-lang-switch .lang-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 4px 8px;
  opacity: 0.75;
}

.sc-lang-switch .lang-btn.active {
  opacity: 1;
  color: #ff4b4b;
}

.sc-lang-switch .lang-divider {
  padding: 0 6px;
  color: rgba(255,255,255,0.4);
}

/* ============================
   COOKIE BANNER
============================ */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 680px;
  width: calc(100% - 2rem);
  background: rgba(12, 16, 26, 0.97);
  color: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner-title {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cookie-banner-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(248, 249, 250, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cookie-banner-text {
  font-size: 0.9rem;
  color: #d3d7dd;
  margin-bottom: 0;
}

.cookie-banner-links {
  font-size: 0.85rem;
  color: #adb5bd;
}

.cookie-banner-links a {
  color: #f1f3f5;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.cookie-btn {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  border: 1px solid transparent;
  background: transparent;
  color: #f8f9fa;
  cursor: pointer;
  transition: all 0.15s ease-out;
}

.cookie-btn-primary {
  background: #dc3545;
  border-color: #dc3545;
}

.cookie-btn-primary:hover {
  background: #b72835;
  border-color: #b72835;
}

.cookie-btn-secondary {
  border-color: rgba(248, 249, 250, 0.35);
  background: rgba(248, 249, 250, 0.03);
}

.cookie-btn-secondary:hover {
  background: rgba(248, 249, 250, 0.09);
}

.cookie-btn-link {
  padding-inline: 0;
  border: none;
  color: #adb5bd;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 576px) {
  .cookie-banner {
    bottom: 1rem;
    padding: 1rem 1.1rem;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }
}
 

/* TYPO OVERRIDES – Improved readability */
.hero-text {
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
}

.section-text {
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
}

.project-body p,
.service-card p,
.faq-body p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
}

.jobs-side-text,
.jobs-side-list li,
.contact-info p,
.contact-directory-subtitle,
.footer-text {
  font-size: 15px;
  line-height: 1.7;
}

/* Small UI text */
.mini-title,
.mini-email,
.mini-label,
.footer-info li,
.footer-links li {
  font-size: 13px;
}
