/* ===== WK – Ngjyra nga logotipi (rozë & vjollcë) ===== */
:root {
  --pink: #ec4899;
  --pink-light: #f472b6;
  --pink-dark: #db2777;
  --purple: #7c3aed;
  --purple-dark: #6b21a8;
  --purple-deep: #5b21b6;
  --gradient: linear-gradient(135deg, #ec4899 0%, #7c3aed 50%, #ec4899 100%);
  --gradient-soft: linear-gradient(135deg, #f472b6 0%, #a78bfa 100%);
  --bg-dark: #0f0a14;
  --bg-card: #1a1225;
  --text: #faf5ff;
  --text-muted: #c4b5fd;
  --shadow: 0 10px 40px rgba(124, 58, 237, 0.25);
  --radius: 16px;
  --font: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header & Nav ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 10, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--pink-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.12;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 58, 237, 0.25) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-brand {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  text-shadow: 0 10px 30px rgba(91, 33, 182, 0.35);
}

.hero-brand .brand-website,
.hero-brand .brand-kosova {
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-brand .brand-website {
  background-image: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

.hero-brand .brand-kosova {
  background-image: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 35%, #7c3aed 100%);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-trust {
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin-top: 2rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(236, 72, 153, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--pink-light);
  border: 2px solid var(--purple);
}

.btn-outline:hover {
  background: rgba(124, 58, 237, 0.2);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ===== Sections common ===== */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  background: var(--gradient-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ===== About ===== */
.about {
  background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.06) 50%, transparent 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.about-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.about-icon {
  color: var(--pink);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Shërbimet Tona ===== */
.services {
  background: linear-gradient(180deg, transparent 0%, rgba(236, 72, 153, 0.04) 50%, transparent 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.service-emoji {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.services-cta {
  text-align: center;
}

/* ===== Pse të na zgjidhni ===== */
.why-us {
  padding-bottom: 5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.why-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
}

.why-num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Projects ===== */
.projects {
  padding-bottom: 6rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  border-color: var(--purple);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.project-placeholder {
  height: 160px;
  background: var(--gradient-soft);
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-emoji {
  font-size: 4rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.project-1 { background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%); opacity: 0.9; }
.project-2 { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%); }
.project-3 { background: linear-gradient(135deg, #ecfdf5 0%, #a7f3d0 100%); opacity: 0.9; }
.project-4 { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); opacity: 0.9; }
.project-5 { background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%); opacity: 0.9; }
.project-6 { background: linear-gradient(135deg, #1c1917 0%, #44403c 100%); }
.project-7 { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }

.project-info {
  padding: 1.25rem;
}

.project-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.project-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.project-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink-light);
}

.project-card:hover .project-link {
  color: var(--pink);
}

/* ===== Contact ===== */
.contact {
  background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.08) 100%);
}

.contact-form {
  max-width: 520px;
  margin: 0 auto 2rem;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.contact-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  text-align: center;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ===== Nav overlay (mobile) ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(15, 10, 20, 0.85);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  .nav-overlay.is-open {
    display: block;
    opacity: 1;
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  body {
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .nav-list {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--bg-card);
    flex-direction: column;
    padding: 0.75rem 1.25rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
    z-index: 101;
  }

  .nav-list.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-list li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-list a {
  /* Hero */
  .hero {
    min-height: 95vh;
    padding-top: calc(64px + 3.5rem);
    padding-bottom: 3rem;
  }

  .hero-content {
    max-width: 95%;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.65;
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .hero-trust {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 2rem;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  /* Sections */
  section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .section-intro {
    font-size: 0.95rem;
    margin: 0 auto 2rem;
    padding: 0 0.5rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-card {
    padding: 1.5rem 1.25rem;
  }

  .about-card h3 {
    font-size: 1.1rem;
  }

  .about-card p {
    font-size: 0.9rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .service-card {
    padding: 1.5rem 1.25rem;
  }

  .service-emoji {
    font-size: 2.25rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .services-cta .btn {
    min-height: 48px;
    width: 100%;
    max-width: 280px;
  }

  /* Why us */
  .why-us {
    padding-bottom: 3rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-card {
    padding: 1.5rem 1.25rem;
  }

  .why-card h3 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }

  /* Projects */
  .projects {
    padding-bottom: 3rem;
  }

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

  .project-card {
    border-radius: 14px;
  }

  .project-placeholder {
    height: 140px;
  }

  .project-emoji {
    font-size: 3.25rem;
  }

  .project-info {
    padding: 1.25rem 1rem;
  }

  .project-info h3 {
    font-size: 1.05rem;
  }

  .project-info p {
    font-size: 0.875rem;
  }

  .project-link {
    font-size: 0.875rem;
  }

  /* Contact */
  .contact-form {
    margin-bottom: 1.5rem;
  }

  .form-row {
    margin-bottom: 1rem;
  }

  .form-row input,
  .form-row textarea {
    padding: 1rem 1rem;
    font-size: 16px; /* Prevents iOS zoom on focus */
    min-height: 48px;
    border-radius: 12px;
  }

  .form-row textarea {
    min-height: 120px;
  }

  .contact-form .btn {
    min-height: 52px;
    font-size: 1rem;
  }

  .contact-footer p {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 1rem;
  }

  .footer-logo {
    height: 56px;
  }

  .footer-tagline,
  .footer-copy {
    font-size: 0.9rem;
  }

  /* Buttons global */
  .btn {
    min-height: 48px;
    padding: 1rem 1.5rem;
    -webkit-tap-highlight-color: transparent;
  }
}

/* ===== Mobile small (phones) ===== */
@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-title {
    font-size: 1.55rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .section-intro {
    font-size: 0.9rem;
  }
}
