/* Navbar Theme */
.navbar {
    backdrop-filter: blur(6px);
}

/* Links */
.navbar .nav-link {
    border-radius: 0.7rem;
    transition: all 0.2s ease;
}

.navbar .nav-link:hover {
    background-color: rgba(255,255,255,0.6);
}

/* Active Link */
.navbar .nav-link.active {
    background-color: white;
    font-weight: 600;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 1rem;
}

/* Kundenbox */
#meniu_clienti {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}
.hero-domain-section {
  position: relative;
  min-height: 540px;
  background-image: url("/images/index01.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-domain-overlay {
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 20, 45, 0.20) 0%,
      rgba(5, 20, 45, 0.35) 100%
    );
}

.hero-domain-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.hero-domain-form {
  width: 100%;
  max-width: 980px;
}

.hero-search-group {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.hero-search-group .input-group-text,
.hero-search-group .form-control,
.hero-search-group .hero-search-btn {
  min-height: 72px;
  border: 0;
  border-radius: 0;
}

.hero-search-group .input-group-text {
  background: rgba(255, 255, 255, 0.96);
  color: #0d3b66;
  font-size: 1.55rem;
  font-weight: 700;
  padding: 0 1.4rem;
  border-right: 1px solid rgba(13, 59, 102, 0.12);
}

.hero-search-group .form-control {
  background: rgba(255, 255, 255, 0.97);
  color: #1c2b39;
  font-size: 1.45rem;
  padding: 0 1.25rem;
}

.hero-search-group .form-control::placeholder {
  color: #6c7a89;
}

.hero-search-group .form-control:focus {
  background: #ffffff;
  box-shadow: none;
}

.hero-search-group .hero-search-btn {
  min-width: 220px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: linear-gradient(180deg, #1f8fff 0%, #0d6efd 100%);
}

.hero-search-group .hero-search-btn:hover,
.hero-search-group .hero-search-btn:focus {
  background: linear-gradient(180deg, #3a9cff 0%, #0b5ed7 100%);
}

.hero-search-note {
  margin-top: 0.95rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  color: #fff;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  border-radius: 4px;
}

@media (max-width: 991.98px) {
  .hero-domain-section,
  .hero-domain-overlay,
  .hero-domain-content {
    min-height: 430px;
  }

  .hero-domain-form {
    max-width: 100%;
  }

  .hero-search-group .input-group-text,
  .hero-search-group .form-control,
  .hero-search-group .hero-search-btn {
    min-height: 62px;
  }

  .hero-search-group .input-group-text {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

  .hero-search-group .form-control {
    font-size: 1.15rem;
  }

  .hero-search-group .hero-search-btn {
    min-width: 180px;
    font-size: 1rem;
  }

  .hero-search-note {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .hero-domain-section,
  .hero-domain-overlay,
  .hero-domain-content {
    min-height: 320px;
  }

  .hero-domain-overlay {
    padding: 1rem 0;
  }

  .hero-search-group .input-group-text,
  .hero-search-group .form-control,
  .hero-search-group .hero-search-btn {
    min-height: 54px;
  }

  .hero-search-group .input-group-text {
    font-size: 1.05rem;
    padding: 0 0.8rem;
  }

  .hero-search-group .form-control {
    font-size: 1rem;
    padding: 0 0.85rem;
  }

  .hero-search-group .hero-search-btn {
    min-width: auto;
    font-size: 0.95rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-search-note {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.35;
    padding: 0 0.25rem;
  }
}

.hosting-container {
    max-width: 1320px;
    margin: 0 auto;
}

.hosting-card {
    position: relative;
    border: 1px solid #e9ecef;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.28s ease;
}

.hosting-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(13, 110, 253, 0.04) 0%,
        rgba(13, 110, 253, 0) 24%
    );
    opacity: 0;
    transition: opacity 0.28s ease;
}

.hosting-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.15rem 2.5rem rgba(0, 0, 0, 0.09);
    border-color: #d7dee5;
}

.hosting-card:hover::after {
    opacity: 1;
}

.hosting-card-featured {
    border-color: rgba(13, 110, 253, 0.35);
    border-width: 2px;
    box-shadow: 0 0.9rem 2.1rem rgba(13, 110, 253, 0.12);
    transform: scale(1.02);
    z-index: 2;
}

.hosting-card-featured:hover {
    transform: translateY(-6px) scale(1.03);
}

.hosting-card-featured .card-body {
    padding-top: 4.5rem !important;
}

.plan-badge {
    position: absolute;
    top: 0.9rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.10);
    color: #0d6efd;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    z-index: 3;
    white-space: nowrap;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.hosting-card-featured:hover .plan-badge {
    transform: translateX(-50%) translateY(-2px);
    background: rgba(13, 110, 253, 0.14);
    box-shadow: 0 0.35rem 0.8rem rgba(13, 110, 253, 0.16);
}

.hosting-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #212529;
    text-align: center;
    transition: color 0.22s ease;
}

.hosting-card:hover .hosting-title {
    color: #0f172a;
}

.hosting-promo {
    display: inline-block;
    padding: 0.65rem 1rem;
    border-radius: 1rem;
    background: #fff8e1;
    color: #7a5a00;
    font-size: 0.92rem;
    line-height: 1.4;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hosting-card:hover .hosting-promo {
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(122, 90, 0, 0.08);
}

.hosting-price {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0d6efd;
    transition: transform 0.25s ease, text-shadow 0.25s ease;
}

.hosting-card:hover .hosting-price {
    transform: translateY(-1px);
    text-shadow: 0 0.35rem 1rem rgba(13, 110, 253, 0.12);
}

.hosting-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
}

.hosting-price-note {
    font-size: 0.95rem;
    color: #6c757d;
}

.hosting-secondary-price {
    font-size: 0.9rem;
    color: #495057;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 999px;
    display: inline-block;
    padding: 0.45rem 0.85rem;
    transition:
        transform 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease;
}

.hosting-card:hover .hosting-secondary-price {
    transform: translateY(-1px);
    background: #f1f3f5;
    border-color: #dde2e6;
}

.hosting-features {
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f5;
    display: grid;
    gap: 0.85rem;
}

.hosting-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.96rem;
    line-height: 1.45;
    color: #495057;
    transition: transform 0.2s ease, color 0.2s ease;
}

.hosting-features li:hover {
    transform: translateX(3px);
    color: #212529;
}

.hosting-features li i {
    color: #198754;
    margin-top: 0.15rem;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.hosting-features li:hover i {
    transform: scale(1.08);
    color: #157347;
}

.hosting-features a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.hosting-features a:hover {
    text-decoration: underline;
}

.hosting-btn {
    padding: 0.85rem 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.15);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;
}

.hosting-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.9rem 1.5rem rgba(13, 110, 253, 0.24);
    filter: brightness(1.02);
}

.hosting-btn:active {
    transform: translateY(0);
    box-shadow: 0 0.45rem 0.9rem rgba(13, 110, 253, 0.18);
}

.hosting-top-note {
    border: 1px solid #dbeafe;
    background: #f8fbff;
    color: #1f3b57;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    line-height: 1.5;
    transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.hosting-top-note:hover {
    box-shadow: 0 0.6rem 1.2rem rgba(31, 59, 87, 0.06);
    border-color: #c9def8;
}

.hosting-top-note a {
    font-weight: 600;
    text-decoration: none;
}

.hosting-top-note a:hover {
    text-decoration: underline;
}

@media (min-width: 1200px) {
    .hosting-plan-col {
        display: flex;
    }

    .hosting-plan-col > .hosting-card {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hosting-card-featured,
    .hosting-card-featured:hover {
        transform: none;
    }

    .hosting-card-featured .card-body {
        padding-top: 4.1rem !important;
    }

    .plan-badge {
        top: 0.85rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.68rem;
    }

    .hosting-card-featured:hover .plan-badge {
        transform: translateX(-50%);
    }

    .hosting-features li:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hosting-card,
    .hosting-card::after,
    .plan-badge,
    .hosting-title,
    .hosting-promo,
    .hosting-price,
    .hosting-secondary-price,
    .hosting-features li,
    .hosting-features li i,
    .hosting-btn,
    .hosting-top-note {
        transition: none !important;
    }

    .hosting-card:hover,
    .hosting-card-featured:hover,
    .hosting-btn:hover,
    .hosting-btn:active,
    .hosting-features li:hover,
    .hosting-card:hover .hosting-price,
    .hosting-card:hover .hosting-promo,
    .hosting-card:hover .hosting-secondary-price,
    .hosting-card-featured:hover .plan-badge {
        transform: none !important;
    }

    .hosting-card:hover::after {
        opacity: 0 !important;
    }
}

.offer-section {
    margin-top: 3rem;
}

.offer-kicker-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .9rem;
    border-radius: 999px;
    background: #fff3cd;
    color: #8a5a00;
    font-size: .85rem;
    font-weight: 700;
}

.offer-card {
    display: flex;
    gap: 1rem;
    padding: 1.4rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #ffffff, #fffaf0);
    border: 1px solid rgba(255, 193, 7, .35);
    box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, .10);
}

.offer-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ffc107;
    color: #212529;
    font-size: 1.35rem;
}

.offer-body {
    flex: 1;
}

.offer-title {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: .45rem;
    color: #212529;
}

.offer-content-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    color: #495057;
    font-size: .95rem;
    line-height: 1.6;
}

.offer-content-list p {
    position: relative;
    margin: 0;
    padding: .6rem .8rem .6rem 2rem;
    border-radius: .5rem;
    background: #f8f9fa;
    border-left: 3px solid #ffc107;
}

.offer-content-list p::before {
    content: "✓";
    position: absolute;
    left: .65rem;
    top: .7rem;
    color: #ffc107;
    font-size: .85rem;
    line-height: 1;
}

.offer-content-list a {
    font-weight: 600;
    text-decoration: none;
}

.offer-content-list a:hover {
    text-decoration: underline;
}