@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
  color: #2d3436;
  background: #fff;
  overflow-x: hidden;
}

/* ---- BACK HOME ---- */
.back-home {
  position: fixed;
  top: 52px;
  left: 20px;
  z-index: 1000;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-home:hover {
  background: rgba(255, 87, 34, 0.9);
  border-color: #ff5722;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}
.top-bar span { color: #ff5722; font-weight: 700; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.7)),
              url('../img/kryesore2.png') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 60px 20px;
}

.hero-content { max-width: 700px; }

.hero-badge {
  display: inline-block;
  background: rgba(255, 87, 34, 0.2);
  border: 1px solid rgba(255, 87, 34, 0.4);
  color: #ff7043;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  animation: fadeIn 0.6s ease 0.2s both;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: fadeIn 0.6s ease 0.4s both;
}
.hero h1 span { color: #ff5722; }

.hero p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 35px;
  line-height: 1.7;
  animation: fadeIn 0.6s ease 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 0.6s ease 0.8s both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .hero { min-height: 80vh; }
  .back-home { top: 52px; left: 10px; font-size: 12px; padding: 6px 14px; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: inherit;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #ff5722, #ff7043);
  color: white;
  box-shadow: 0 5px 25px rgba(255, 87, 34, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 87, 34, 0.5);
}
.btn-call {
  background: #25D366;
  color: white;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}
.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ---- TRUST BAR ---- */
.trust-bar { background: #f8f9fa; padding: 30px 20px; text-align: center; }
.trust-items { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; max-width: 800px; margin: 0 auto; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #636e72; font-weight: 500; }
.trust-item i { color: #ff5722; font-size: 18px; }

/* ---- SECTION ---- */
.section { padding: 80px 20px; max-width: 1000px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 34px; font-weight: 700; margin-bottom: 12px; }
.section-header h2 span { color: #ff5722; }
.section-header p { color: #636e72; font-size: 16px; max-width: 550px; margin: 0 auto; }
.section-header .line { width: 50px; height: 4px; background: linear-gradient(90deg, #ff5722, #ff7043); margin: 15px auto 0; border-radius: 2px; }

/* ---- SERVICES ---- */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.service-card { background: #f8f9fa; border-radius: 16px; padding: 30px; text-align: center; transition: all 0.3s ease; border: 1px solid #eee; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.service-card .icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, #ff5722, #ff7043); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 24px; color: white; }
.service-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.service-card p { color: #636e72; font-size: 14px; line-height: 1.7; }

/* ---- WHY US ---- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { display: flex; gap: 15px; padding: 22px; background: #f8f9fa; border-radius: 12px; border: 1px solid #eee; transition: all 0.3s; }
.why-item:hover { border-color: #ff5722; }
.why-item .num { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #ff5722, #ff7043); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.why-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.why-item p { font-size: 13px; color: #636e72; line-height: 1.6; }

/* ---- TESTIMONIAL ---- */
.testimonial-banner { background: linear-gradient(135deg, #0f172a, #1e293b); color: white; padding: 60px 20px; text-align: center; }
.testimonial-inner { max-width: 600px; margin: 0 auto; }
.testimonial-inner .stars { color: #ffc107; font-size: 20px; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-inner blockquote { font-size: 18px; font-style: italic; line-height: 1.8; opacity: 0.9; margin-bottom: 20px; }
.testimonial-inner .author { font-size: 14px; opacity: 0.6; }

/* ---- CTA / FORM ---- */
.cta-section { background: linear-gradient(135deg, #ff5722, #e64a19); padding: 80px 20px; text-align: center; color: white; }
.cta-section h2 { font-size: 34px; font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 16px; opacity: 0.9; margin-bottom: 35px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-form { max-width: 450px; margin: 0 auto; background: white; padding: 35px; border-radius: 20px; box-shadow: 0 15px 50px rgba(0,0,0,0.2); }
.cta-form h3 { color: #2d3436; font-size: 20px; margin-bottom: 20px; }
.cta-form input, .cta-form textarea { width: 100%; padding: 14px 18px; border: 2px solid #eef0f2; border-radius: 10px; font-size: 15px; font-family: inherit; margin-bottom: 14px; transition: border 0.3s; background: #fafbfc; }
.cta-form input:focus, .cta-form textarea:focus { border-color: #ff5722; outline: none; background: #fff; }
.cta-form .btn { width: 100%; justify-content: center; }

.urgency { background: #fff3e0; border: 2px solid #ff5722; border-radius: 12px; padding: 18px; margin-top: 20px; text-align: center; }
.urgency p { color: #e64a19; font-weight: 600; font-size: 14px; margin: 0; }
.urgency p i { margin-right: 6px; }

/* ---- FOOTER ---- */
.landing-footer { background: #0f172a; color: #64748b; text-align: center; padding: 25px 20px; font-size: 13px; }

/* ---- FLOATING CTA ---- */
.float-cta { position: fixed; bottom: 0; left: 0; right: 0; background: white; padding: 12px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); display: flex; justify-content: center; gap: 12px; z-index: 999; transform: translateY(100%); transition: transform 0.3s ease; }
.float-cta.visible { transform: translateY(0); }
.float-cta .btn { padding: 12px 25px; font-size: 14px; }
@media (max-width: 768px) { .float-cta .btn { padding: 10px 16px; font-size: 13px; } }

/* ---- SCROLL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
