/* =============================================================
   Alfa & Delta — style.css
   Paletë:  Blu i thellë (navy) + gri/bardhë + theks ari (gold)
   Tipografi: Poppins (tituj) + Inter (tekst)
   ============================================================= */

/* ---------- Variabla ---------- */
:root {
  --navy-900: #0a2540;   /* blu shumë i thellë */
  --navy-800: #10324f;
  --navy-700: #17456b;
  --gold:     #e0a63c;   /* ngjyra e theksit */
  --gold-dark:#c98d24;
  --ink:      #1d2733;   /* tekst kryesor */
  --muted:    #5c6a7a;   /* tekst dytësor */
  --line:     #e6eaef;   /* vija/kufij */
  --bg:       #ffffff;
  --bg-soft:  #f4f7fa;   /* sfond seksionesh */
  --radius:   14px;
  --shadow:   0 10px 30px rgba(10, 37, 64, .10);
  --shadow-sm:0 4px 14px rgba(10, 37, 64, .08);
  --maxw:     1160px;
  --ease:     .28s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset i lehtë ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Poppins", sans-serif; line-height: 1.2; margin: 0 0 .5em; color: var(--navy-900); font-weight: 600; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* Offset për sticky header në ancora */
:target { scroll-margin-top: 90px; }

/* ---------- Butona ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .98rem;
  padding: .72rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform var(--ease), background var(--ease), box-shadow var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: .9rem 1.8rem; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--gold); color: var(--navy-900); box-shadow: 0 6px 18px rgba(224,166,60,.35); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(224,166,60,.42); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }

/* ---------- Eyebrow / etiketa e vogël ---------- */
.eyebrow {
  font-family: "Poppins", sans-serif; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; font-size: .78rem; color: var(--gold);
  margin: 0 0 .6rem;
}
.eyebrow-dark { color: var(--gold-dark); }

/* =============================================================
   HEADER / NAVBAR
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: .6rem; }
.logo-mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy-900); color: var(--gold);
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .02em;
}
.logo-text { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.22rem; color: var(--navy-900); }
.logo-text em { color: var(--gold); font-style: normal; }
.logo-text--light { color: #fff; }
.logo-text--light em { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav ul { display: flex; align-items: center; gap: 1.8rem; }
.nav ul a {
  font-weight: 500; color: var(--ink); position: relative; padding: .3rem 0;
  transition: color var(--ease);
}
.nav ul a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); transition: width var(--ease);
}
.nav ul a:hover { color: var(--navy-900); }
.nav ul a:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy-900); border-radius: 2px; transition: var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative; color: #fff;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=70") center/cover no-repeat;
  background-color: var(--navy-900);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,37,64,.94) 0%, rgba(10,37,64,.80) 45%, rgba(23,69,107,.62) 100%);
}
.hero-content { position: relative; z-index: 1; padding: clamp(4.5rem, 12vw, 8.5rem) 22px; max-width: 820px; }
.hero-content .eyebrow { color: var(--gold); }
.hero h1 {
  color: #fff; font-size: clamp(2rem, 5.2vw, 3.5rem); font-weight: 700; letter-spacing: -.01em;
  margin-bottom: 1rem;
}
.hero-sub { font-size: clamp(1.02rem, 2.2vw, 1.22rem); color: #dde5ee; max-width: 640px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Shirit besimi */
.trust-bar { background: var(--navy-900); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.trust-item {
  padding: 1.5rem 1.4rem; display: flex; flex-direction: column; gap: .25rem;
  border-left: 3px solid var(--gold);
}
.trust-item strong { font-family: "Poppins", sans-serif; font-size: 1.05rem; }
.trust-item span { color: #b9c6d4; font-size: .95rem; }

/* =============================================================
   SEKSIONE — të përgjithshme
   ============================================================= */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head { max-width: 680px; margin: 0 auto clamp(2rem, 5vw, 3.2rem); text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.section-lead { color: var(--muted); font-size: 1.08rem; }

/* =============================================================
   SHËRBIMET — grid me karta
   ============================================================= */
.services { background: var(--bg-soft); }
.cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d3dbe4; }
.card-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.5rem 1.5rem 1.7rem; }
.card-body h3 { font-size: 1.24rem; }
.card-body p { color: var(--muted); margin: 0; font-size: .99rem; }

/* Karta e gjerë (shërbimi i 5-të) zë tërë rreshtin */
.card-wide { grid-column: 1 / -1; flex-direction: row; }
.card-wide .card-media { flex: 0 0 44%; aspect-ratio: auto; }
.card-wide .card-body { align-self: center; padding: 2rem 2.4rem; }
.badge {
  display: inline-block; background: rgba(224,166,60,.14); color: var(--gold-dark);
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; margin-bottom: .8rem;
}

/* =============================================================
   RRETH NESH
   ============================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.about-text h2 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); }
.about-text p { color: var(--muted); }
.about-list { margin: 1.2rem 0 1.8rem; display: grid; gap: .6rem; }
.about-list li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.about-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--gold-dark); font-weight: 700;
  background: rgba(224,166,60,.14); width: 1.35rem; height: 1.35rem; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem;
}

/* =============================================================
   KONTAKTI
   ============================================================= */
.contact { background: var(--bg-soft); }
.contact .eyebrow { color: var(--gold-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.4rem; }

.info-list { display: grid; gap: 1.1rem; margin-bottom: 1.8rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-ico {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy-900); color: var(--gold);
  display: grid; place-items: center; font-size: 1.25rem;
}
.info-label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.info-list a, .info-list div > span + a { font-weight: 600; color: var(--navy-800); }
.info-list a:hover { color: var(--gold-dark); }
.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map iframe { display: block; }

/* Formulari */
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; color: var(--navy-800); }
.field input, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: #fbfcfd; transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(224,166,60,.18); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .84rem; color: var(--muted); margin: .9rem 0 0; text-align: center; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: var(--navy-900); color: #c6d2de; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  padding: clamp(2.6rem, 6vw, 4rem) 22px 2.5rem;
}
.footer-brand p { color: #97a8ba; margin-top: .8rem; max-width: 340px; font-size: .96rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { color: #c6d2de; transition: color var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); }
.footer-bottom p { margin: 0; padding: 1.2rem 0; font-size: .88rem; color: #8698ab; text-align: center; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
  .card-wide { flex-direction: column; }
  .card-wide .card-media { flex: none; aspect-ratio: 16 / 9; width: 100%; }
  .card-wide .card-body { padding: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* Menu mobile */
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: .5rem 22px 1.4rem; gap: .2rem;
    transform: translateY(-130%); transition: transform var(--ease); visibility: hidden;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav ul li { border-bottom: 1px solid var(--line); }
  .nav ul a { display: block; padding: .9rem 0; }
  .nav ul a::after { display: none; }
  .nav-cta { margin-top: .9rem; text-align: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* Respekto preferencat për lëvizje të reduktuar */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
