/* 1. Rregullat Bazë */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f7f6;
}

/* 2. Header & Navigimi */
header {
  background: #fff;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #4b2a8e;
  text-decoration: none;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.hero {
  padding: 90px 5%;
  text-align: center;
  background: #4b2a8e;
  color: white;
}

.hero {
  padding: 90px 5%;
  text-align: center;
  background: #4b2a8e;
  color: white;
  background:
    linear-gradient(rgba(75, 42, 142, 0.65)), url("images/hero.png.png");
  background-size: cover;
  background-position: center;
}

.hero p {
  max-width: 800px;
  margin: 15px auto 0;
}

/* 1. Ky rregull i jep formën dhe shkrimin butonit */
.cta-btn {
  background-color: #4b2a8e;
  color: white !important;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

/* 2. Ky rregull e bën VETËM butonin te Hero të bardhë me tekst vjollcë */
.hero .cta-btn {
  background-color: white !important;
  color: #4b2a8e !important;
  margin-top: 50px !important;
}

/* 3. Ky rregull e bën përsëri vjollcë në mobil që të shihet */
@media (max-width: 768px) {
  .hero .cta-btn {
    background-color: #4b2a8e !important;
    color: white !important;
    margin-top: 30px !important;
  }
}
.hero::after {
  display: none;
}

/* 4. Seksionet dhe Grid */
section {
  padding: 80px 5%;
  width: 100%;
  clear: both;
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: rgba(75, 42, 142, 0.3);
}

#kontakt::after {
  display: none;
}

.bg-light {
  background-color: #ffffff;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #2c3e50;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  width: 100%;
  align-items: stretch;
}

/* 5. Kartelat (Shërbimet) */
.card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #4b2a8e;
  border-top: 8px solid #4b2a8e;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-link:hover .card {
  transform: translateY(-12px);
  border: 4px solid #4b2a8e;
  box-shadow: 0 15px 30px rgba(75, 42, 142, 0.3);
  background-color: #fcfaff;
}

.card img {
  max-width: 80px;
  height: auto;
  margin: 0 auto 15px;
}

/* 6. Procesi (Hapat) */
.step {
  text-align: center;
}

.step-number {
  background: #4b2a8e;
  color: white;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 20px;
}

/* 7. Forma e Kontaktit */
#kontakt {
  background-color: #2c3e50;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#kontakt h2 {
  color: white;
}

form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

input,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  background-color: #f9f9f9;
  transition: 0.3s;
}

.submit-btn {
  background-color: #4b2a8e;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background-color: #361d66;
}

/* 8. Footer */
footer {
  background: #1a1a1a;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
}

/* 9. Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }
  header {
    flex-direction: column;
    gap: 15px;
  }
  nav a {
    margin: 0 10px;
    font-size: 14px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}
