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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: #111827;
  background: #ffffff;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

.topbar {
  height: 38px;
  background: #0b0f17;
  color: rgba(255,255,255,.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  font-size: 13px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 7px;
  margin-left: 8px;
}

.social-icons a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  font-size: 11px;
  font-weight: 900;
  transition: .25s;
}

.social-icons a:hover {
  background: #d4a017;
  color: #111;
  transform: translateY(-2px);
}

.navbar {
  position: fixed;
  top: 38px;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: .25s;
}

.navbar.scrolled {
  top: 0;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.logo {
  font-size: 23px;
  font-weight: 900;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.logo span { color: #d4a017; }

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-weight: 800;
  font-size: 15px;
}

nav a:hover { color: #d4a017; }

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #f3f4f6;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  width: 21px;
  height: 3px;
  background: #111827;
  border-radius: 999px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 6% 90px;
  position: relative;
  overflow: hidden;
  background: #111827;
}

.slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.15s ease, transform 6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.50), rgba(0,0,0,.12));
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 820px;
  color: white;
  z-index: 2;
}

.badge, .mini-title {
  display: inline-block;
  color: #d4a017;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.01;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.hero p {
  font-size: 20px;
  max-width: 680px;
  color: rgba(255,255,255,.9);
  line-height: 1.55;
}

.hero-actions, .contact-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 23px;
  border-radius: 999px;
  font-weight: 900;
  transition: .25s;
  border: 0;
}

.btn:hover { transform: translateY(-3px); }

.primary { background: #d4a017; color: #111; }

.whatsapp { background: #25d366; color: white; }

.glass {
  border: 1px solid rgba(255,255,255,.78);
  color: white;
  background: rgba(255,255,255,.08);
}

.light {
  background: white;
  color: #111;
  border: 1px solid #e5e7eb;
}

.full {
  width: 100%;
  margin-top: 12px;
}

.slider-controls {
  position: absolute;
  left: 6%;
  bottom: 52px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid white;
  background: transparent;
  cursor: pointer;
}

.dot.active {
  background: #d4a017;
  border-color: #d4a017;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -48px auto 0;
  width: 88%;
  position: relative;
  z-index: 5;
  background: white;
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(0,0,0,.18);
  overflow: hidden;
}

.stats div {
  padding: 30px;
  text-align: center;
  border-right: 1px solid #eee;
}

.stats strong {
  display: block;
  font-size: 28px;
  color: #d4a017;
}

.stats span {
  color: #6b7280;
  font-weight: 700;
}

.section {
  padding: 115px 6%;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-head h2, .about-text h2, .contact-card h2 {
  font-size: clamp(32px, 4vw, 54px);
  margin-bottom: 18px;
  letter-spacing: -1.2px;
}

.section-head p, .about-text p {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  padding: 36px;
  border-radius: 26px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(0,0,0,.12);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p {
  color: #6b7280;
  line-height: 1.65;
}

.premium-cta {
  margin: 0 6%;
  padding: 50px;
  border-radius: 30px;
  background: linear-gradient(135deg, #111827, #1f2937);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.premium-cta h2 {
  font-size: clamp(26px, 3vw, 42px);
  max-width: 720px;
}

.dark-section {
  background: #0b0f17;
  color: white;
}

.dark-section .section-head p {
  color: rgba(255,255,255,.68);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  position: relative;
  height: 340px;
  border-radius: 26px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 22px 55px rgba(0,0,0,.25);
  border: 0;
  width: 100%;
  padding: 0;
  cursor: pointer;
  display: block;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s;
  display: block;
}

.project-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.42));
  opacity: 0;
  transition: .3s;
}

.project-card:hover:after { opacity: 1; }

.project-card:hover img {
  transform: scale(1.08);
  opacity: .9;
}

.gallery-zoom {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 300;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: .3s;
}

.project-card:hover .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

.about-section {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 55px;
  align-items: center;
}

.check-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
  font-weight: 800;
}

.check-list li::before {
  content: "✔";
  color: #d4a017;
  margin-right: 10px;
}

.quote-card {
  padding: 42px;
  border-radius: 30px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  box-shadow: 0 22px 75px rgba(0,0,0,.11);
}

.quote-card h3 {
  font-size: 31px;
  margin-bottom: 12px;
}

.quote-card p {
  color: #6b7280;
  margin-bottom: 20px;
}

.contact-section {
  padding: 105px 6%;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.contact-card {
  background: white;
  border-radius: 34px;
  padding: 58px;
  max-width: 1120px;
  margin: auto;
  text-align: center;
}

.contact-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-grid div {
  background: #f8fafc;
  border-radius: 22px;
  padding: 28px;
}

.contact-grid strong { color: #d4a017; }

.contact-grid p {
  margin-top: 8px;
  line-height: 1.65;
}

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

.map-box {
  margin-top: 38px;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(0,0,0,.18);
  border: 1px solid #e5e7eb;
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 10, .94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0,0,0,.5);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.12);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .25s;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: #d4a017;
  color: #111;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 70px;
  border-radius: 999px;
  font-size: 52px;
}

.lightbox-prev { left: 24px; }

.lightbox-next { right: 24px; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 27px;
  z-index: 999;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

footer {
  background: #05070a;
  color: rgba(255,255,255,.72);
  padding: 32px 6%;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner strong { color: white; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE ULTRA */
@media (max-width: 980px) {
  .topbar { display: none; }

  .navbar {
    top: 0;
    height: 66px;
    padding: 0 18px;
  }

  .navbar.scrolled { top: 0; }

  .logo { font-size: 21px; }
  .logo-img { height: 42px; max-width: 140px; }

  .menu-btn {
    display: flex;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
  }

  nav {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    background: white;
    padding: 16px 22px 22px;
    box-shadow: 0 20px 35px rgba(0,0,0,.14);
    gap: 0;
  }

  nav.open { display: flex; }

  nav a {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 17px;
  }

  .hero {
    min-height: 86vh;
    padding: 90px 22px 58px;
    align-items: flex-end;
  }

  .slide { background-position: center center; }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.20) 35%, rgba(0,0,0,.80) 100%);
  }

  .hero-content {
    max-width: 100%;
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-shadow: 0 3px 18px rgba(0,0,0,.55);
  }

  .badge {
    font-size: 10.5px;
    margin-bottom: 9px;
    letter-spacing: 1px;
    background: rgba(212,160,23,.16);
    padding: 7px 10px;
    border-radius: 999px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: -.8px;
    margin-bottom: 12px;
    max-width: 95%;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.45;
    max-width: 95%;
  }

  .hero-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
  }

  .btn {
    width: auto;
    min-width: 0;
    padding: 12px 16px;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
  }

  .hero-actions .primary,
  .hero-actions .whatsapp {
    flex: 1 1 calc(50% - 6px);
  }

  .hero-actions .glass {
    flex: 1 1 100%;
    padding: 11px 16px;
  }

  .slider-controls {
    left: 22px;
    bottom: 20px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    margin: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .stats div {
    padding: 18px 10px;
    border-bottom: 1px solid #eee;
  }

  .stats strong { font-size: 22px; }

  .stats span {
    display: block;
    font-size: 13px;
  }

  .section { padding: 68px 22px; }

  .section-head { margin-bottom: 34px; }

  .section-head h2,
  .about-text h2,
  .contact-card h2 {
    font-size: 31px;
    letter-spacing: -.8px;
  }

  .section-head p,
  .about-text p {
    font-size: 16px;
  }

  .services-grid,
  .projects-grid,
  .about-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 26px;
    border-radius: 22px;
  }

  .premium-cta {
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    padding: 38px 22px;
    border-radius: 0;
  }

  .premium-cta h2 { font-size: 27px; }

  .project-card {
    height: 275px;
    border-radius: 22px;
  }

  .gallery-zoom {
    opacity: 1;
    transform: none;
    width: 42px;
    height: 42px;
    font-size: 25px;
  }

  .quote-card {
    padding: 28px;
    border-radius: 24px;
  }

  .contact-section { padding: 70px 18px; }

  .contact-card {
    padding: 30px 18px;
    border-radius: 26px;
  }

  .contact-grid { gap: 14px; }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-box { border-radius: 22px; }

  .map-box iframe { height: 320px; }

  .lightbox {
    padding: 14px;
  }

  .lightbox img {
    max-width: 94vw;
    max-height: 78vh;
    border-radius: 14px;
  }

  .lightbox-close {
    width: 44px;
    height: 44px;
    right: 14px;
    top: 14px;
  }

  .lightbox-arrow {
    width: 44px;
    height: 58px;
    font-size: 42px;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
    font-size: 23px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* FIXES */
@media (max-width: 980px) {
  .contact-actions {
    margin-top: 20px;
  }

  .lightbox-close {
    z-index: 10001;
  }

  .lightbox-arrow {
    z-index: 10000;
  }
}

/* ===== FIXES ===== */

/* FIX 3: Contact form */
.contact-form-wrap {
  margin: 38px 0 0;
  text-align: left;
}
.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #111827;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  color: #111827;
  background: #f8fafc;
  outline: none;
  transition: .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4a017;
  background: white;
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.full-btn {
  width: 100%;
  border-radius: 14px;
  font-size: 16px;
  padding: 16px;
  cursor: pointer;
}

/* FIX 6: Footer i plotë */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-brand strong {
  display: block;
  font-size: 17px;
  color: white;
  margin-bottom: 3px;
}
.footer-brand span {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.68);
  transition: .2s;
}
.footer-links a:hover { color: #d4a017; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  color: white;
  transition: .25s;
}
.footer-social a:hover {
  background: #d4a017;
  color: #111;
  transform: translateY(-2px);
}
.footer-copy {
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  text-align: center;
}

/* FIX 1: Hero background-position për portrait images */
.slide {
  background-position: center center;
}

@media (max-width: 980px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .footer-links { align-items: center; }
  .footer-social { justify-content: center; }
  .contact-form-wrap { margin-top: 28px; }
  .contact-actions { margin-top: 20px; }
  .lightbox-close { z-index: 10001; }
  .lightbox-arrow { z-index: 10000; }
}

/* Nav social icons - mobile menu */
.nav-social {
  display: none;
}
