/* ============ BAZAT ============ */
:root {
  --black: #0a0a0a;
  --black-soft: #121212;
  --gold: #c9a24b;
  --gold-light: #e3c77e;
  --white: #ffffff;
  --grey: #b5b5b5;
  --font-body: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* ============ BUTONAT ============ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}
.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(201, 162, 75, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
}
.logo-dot { color: var(--gold); }

.logo-image-link {
  display: block;
  width: 76px;
  height: 58px;
  overflow: hidden;
  border-radius: 4px;
}
.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--black);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.35) 45%,
    rgba(10, 10, 10, 0.92) 100%);
}

.hero-content {
  padding-top: 16rem;
  text-align: center;
}

.hero-kicker {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.6rem;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 2.4rem;
  color: var(--grey);
  font-size: 1.05rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.35; transform: scaleY(0.7); }
}

/* ============ SEKSIONET ============ */
.section {
  padding: 7rem 0;
}
.section-dark {
  background: var(--black-soft);
}

.section-kicker {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 3rem;
}

/* ============ SHËRBIMET ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.service-card {
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.6rem 2.2rem;
  border-radius: 4px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 75, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.service-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.6rem;
  color: var(--gold);
  background: rgba(201, 162, 75, 0.1);
  border: 1px solid rgba(201, 162, 75, 0.3);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}
.service-card p {
  color: var(--grey);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ============ STRIP ============ */
.strip {
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 75, 0.25);
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
  padding: 1.1rem 0;
  background: var(--black);
}
.strip-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  color: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ DY KOLONA ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-bottom: 2.4rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1.1rem;
  color: var(--grey);
  font-weight: 300;
}
.feature-list li strong {
  color: var(--white);
  font-weight: 600;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.media-img {
  width: 88%;
  margin: 0 auto;
  border-radius: 6px;
  border: 1px solid rgba(201, 162, 75, 0.3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

/* ============ KONTAKTI ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.contact-card {
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem 1.8rem;
  border-radius: 4px;
}
.contact-card h4 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.contact-card p {
  color: var(--grey);
  font-size: 0.95rem;
  font-weight: 300;
}
.contact-card a {
  color: var(--white);
  text-decoration: none;
}
.contact-card a:hover { color: var(--gold); }

.contact-card .map-button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(201, 162, 75, 0.55);
  border-radius: 3px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.contact-card .map-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.contact-card .map-button:hover {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.2rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer p {
  color: var(--grey);
  font-size: 0.85rem;
  font-weight: 300;
}

/* ============ REVEAL ANIMACIONET ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(75vw, 320px);
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; }
  .hamburger { display: flex; z-index: 110; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
}
