:root {
  --primary: #3b82f6;          /* blue modern, më i freskët */
  --primary-dark: #1d4ed8;
  --dark: #0f172a;             /* slate i thellë */
  --light: #f8fafc;
  --gray: #64748b;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --accent: #10b981;           /* emerald për WhatsApp ose accent */
}

html, body {
  overflow-x: hidden; /* parandalon horizontal scroll */
}

body {
  font-family: 'Inter', sans-serif;
  color: #2c3e50;
  background: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', serif;
  font-weight: 800;
  color: var(--dark);
}

/* Navbar */
.navbar {
  background: rgba(50, 48, 96, 0.25);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: all 0.4s ease;
  padding: 0.9rem 0;
  opacity: 1;
  border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.18);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
  height: 52px;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 1.1rem !important;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #c3d9ff !important;
}

.btn-nav-contact {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--primary);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.18);
}

.btn-nav-contact:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.4);
}

.navbar-toggler {
  border: none;
  outline: none;
  font-size: 1.5rem;
  color: white;
}

.navbar-toggler:hover {
  color: #c3d9ff;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Hero */
.hero {
  background-image:
    linear-gradient(145deg, rgba(59, 130, 246, 0.45) 0%, rgba(15, 23, 42, 0.65) 100%),
    url("https://albcrm.com/img/panel1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  color: white;
  position: relative;
  display: flex;
  align-items: center;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 85%, rgba(255,255,255,.14), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" /><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0"/></filter><rect width="100" height="100" filter="url(%23n)" opacity="0.08"/></svg>');
  pointer-events: none;
  opacity: 0.6;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .lead {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  max-width: 750px;
  margin: 0 auto 2rem;
  font-weight: 300;
  opacity: .95;
}

/* Buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--primary);
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 40px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.18);
  transition: .35s;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 45px rgba(59, 130, 246, 0.35);
  border-color: rgba(59, 130, 246, 0.4);
}

.btn-hero-outline {
  border: 2px solid white;
  color: white;
  padding: 13px 32px;
  border-radius: 40px;
  font-weight: 600;
  transition: .35s;
}

.btn-hero-outline:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

/* Sections */
.section-padding {
  padding: 6rem 0;
}

.bg-soft {
  background: var(--light);
}

/* Feature Image */
.feature-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,.12);
  transition: .4s;
  width: 100%;
}

.feature-img:hover {
  transform: scale(1.03);
  box-shadow: 0 28px 60px rgba(59, 130, 246, .25);
}

/* Feature Cards */
.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
  transition: .35s;
  border: 1px solid rgba(255, 255, 255, 0.18);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 60px rgba(59, 130, 246, .18);
  border-color: rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(16px);
}

.icon-circle {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.9), rgba(219, 234, 254, 0.9));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  box-shadow: inset 0 2px 8px rgba(255,255,255,0.6), 0 8px 25px rgba(59,130,246,0.12);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 35px;
  left: 35px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  z-index: 9999;
  transition: .35s;
  text-decoration: none;
  animation: pulse 2.2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 16px 40px rgba(37,213,102,.45);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

/* Responsive */
@media (max-width: 992px) {
  .section-padding { padding: 5rem 0; }
  .hero { min-height: 100vh; }
  .navbar-brand img { height: 46px; }
}

@media (max-width: 767.98px) {
  .navbar-nav .nav-link {
    padding: 0.45rem 1rem !important;
    font-size: 0.98rem;
  }
  .btn-nav-contact {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }
  .navbar-brand img {
    height: 42px;
    max-width: 160px;
  }
  .navbar-collapse {
    padding: 1rem 0;
  }
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media (max-width: 576px) {
  .navbar-nav .nav-link {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.95rem;
  }
  .btn-nav-contact {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-left: 0;
  }
  .navbar-brand img {
    height: 40px;
    max-width: 150px;
  }
}

/* Efekt dritë e bardhë për tekst */
.shine {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 1px #ffffff, 0 0 10px #ffffff, 0 0 1px #ffffff;
  animation: whiteGlow 2s linear infinite alternate;
}

@keyframes whiteGlow {
  0% {
    text-shadow: 0 0 1px #ffffff, 0 0 10px #ffffff, 0 0 1px #ffffff;
  }
  50% {
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 10px #ffffff;
  }
  100% {
    text-shadow: 0 0 1px #ffffff, 0 0 10px #ffffff, 0 0 1px #ffffff;
  }
}

.kontakt-box {
  background-color: rgba(0,0,0,0.6);
  padding: 20px 40px;
  border-radius: 15px;
  display: inline-flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.kontakt-item {
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.kontakt-item:hover {
  transform: translateY(-5px);
  color: #00ff99;
}

.kontakt-item i {
  font-size: 1.5rem;
}