/* RrjetFix – dizajn profesional dhe modern për të gjitha pajisjet */
:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --jade: #10b981;
  --jade-dark: #059669;
  --jade-light: #34d399;
  --jade-soft: rgba(16, 185, 129, 0.12);
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-btn: 9999px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
  --shadow-btn: 0 4px 14px rgba(16, 185, 129, 0.35);
  --shadow-btn-hover: 0 8px 24px rgba(16, 185, 129, 0.4);
  --transition: 0.25s ease;
  --font: 'Outfit', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: clamp(0.9375rem, 2.2vw, 1rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  overflow-x: hidden;
  min-height: 50vh;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 1.25rem);
  padding-left: max(clamp(1rem, 4vw, 1.25rem), env(safe-area-inset-left));
  padding-right: max(clamp(1rem, 4vw, 1.25rem), env(safe-area-inset-right));
  width: 100%;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.container-narrow {
  max-width: 680px;
}

/* Header – profesional, navy, logo sipas standarteve */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.logo:focus-visible {
  outline: 2px solid var(--jade-light);
  outline-offset: 3px;
  border-radius: 6px;
}

.logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav a:hover {
  color: var(--jade-light);
}

/* Ndërrues gjuhësh – një buton me flamur + dropdown */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.lang-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--jade-light);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}
.lang-dropdown-btn .lang-flag {
  font-size: 1.25em;
  line-height: 1;
}
.lang-dropdown-btn .lang-chevron {
  font-size: 0.6em;
  opacity: 0.9;
  transition: transform var(--transition);
}
.lang-switcher.open .lang-dropdown-btn .lang-chevron {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  min-width: 100%;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  padding: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 44px;
  padding: 0.6rem 0.9rem;
  background: none;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.lang-option:hover {
  background: rgba(16, 185, 129, 0.25);
  color: #fff;
}
.lang-option .lang-flag {
  font-size: 1.2em;
}

/* Butonat – dizajn modern dhe i bukur */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn:focus-visible {
  outline: 2px solid var(--jade-light);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(180deg, var(--jade) 0%, var(--jade-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--jade-light) 0%, var(--jade) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--jade-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-btn);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-primary.btn-lg {
  box-shadow: var(--shadow-btn);
}

.btn-primary.btn-lg:hover {
  box-shadow: var(--shadow-btn-hover);
}

.btn-paypal {
  background: linear-gradient(180deg, #0070ba 0%, #005ea6 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 112, 186, 0.4);
}

.btn-paypal:hover {
  background: linear-gradient(180deg, #0088dd 0%, #0070ba 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 112, 186, 0.45);
}

.bmc-icon {
  display: inline-block;
  margin-right: 0.45rem;
  line-height: 1;
}

.btn-bmc {
  background: linear-gradient(180deg, #ffdd00 0%, #ffc300 100%);
  color: #1b1b1b;
  box-shadow: 0 6px 16px rgba(255, 195, 0, 0.35);
  font-weight: 700;
}

.btn-bmc:hover {
  background: linear-gradient(180deg, #ffe44d 0%, #ffcf33 100%);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 195, 0, 0.45);
}

/* Ndriqim / glow për butona profesionale */
.btn-glow.btn-primary,
.btn-glow.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.45), 0 0 24px rgba(16, 185, 129, 0.2);
}
.btn-glow.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.5), 0 0 32px rgba(16, 185, 129, 0.25);
}
.btn-glow.btn-paypal {
  box-shadow: 0 4px 18px rgba(0, 112, 186, 0.45), 0 0 20px rgba(0, 112, 186, 0.15);
}
.btn-glow.btn-paypal:hover {
  box-shadow: 0 8px 26px rgba(0, 112, 186, 0.5), 0 0 28px rgba(0, 112, 186, 0.2);
}
.btn-glow.btn-bmc {
  box-shadow: 0 4px 18px rgba(255, 195, 0, 0.4), 0 0 20px rgba(255, 195, 0, 0.12);
}
.btn-glow.btn-bmc:hover {
  box-shadow: 0 8px 26px rgba(255, 195, 0, 0.5), 0 0 28px rgba(255, 195, 0, 0.18);
}
.btn-glow.btn-secondary:hover {
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25), 0 0 20px rgba(16, 185, 129, 0.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #fff;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Sticky mobile – butona të bukur */
.sticky-buttons {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  flex-direction: row;
  gap: 0;
  padding: 0 env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
  box-shadow: 0 -6px 28px rgba(15, 23, 42, 0.25);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  background: var(--navy);
}

.sticky-rezervo,
.sticky-paypal {
  flex: 1;
  min-height: 56px;
  padding: 1rem 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  border: none;
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
}

.sticky-rezervo {
  background: linear-gradient(180deg, #ffdd00 0%, #f5c000 100%);
  color: #1a1a1a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

.sticky-rezervo:hover,
.sticky-rezervo:active {
  background: linear-gradient(180deg, #ffe033 0%, #ffd000 100%);
  color: #111;
}

.bmc-sticky {
  background: linear-gradient(180deg, #ffdd00 0%, #f5c000 100%) !important;
  color: #1a1a1a !important;
}

.sticky-paypal {
  background: linear-gradient(180deg, #0070ba 0%, #005a9e 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.sticky-paypal:hover,
.sticky-paypal:active {
  background: linear-gradient(180deg, #0088dd 0%, #0070ba 100%);
  color: #fff;
}

@media (max-width: 768px) {
  .sticky-buttons {
    display: flex;
  }
  .sticky-rezervo,
  .sticky-paypal {
    min-height: 56px;
    font-size: 0.9rem;
  }
}

/* Hero – profesional, modern */
.hero {
  padding: 5rem 0 4.5rem;
  text-align: center;
  background: var(--navy);
  background-image: radial-gradient(ellipse 90% 60% at 50% -10%, var(--jade-soft), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='none' stroke='rgba(16,185,129,0.05)' stroke-width='1' d='M30 0L60 30L30 60L0 30Z'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
  opacity: 0.8;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  margin: 0 0 2.25rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.25rem;
}
.hero-buttons .btn {
  min-height: 48px;
}

.trust-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: center;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

.trust-bullets li::before {
  content: "✓ ";
  color: var(--jade-light);
  font-weight: 700;
  margin-right: 0.15em;
}

.trust-reply {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Sections – hapësirë e qartë, hierarki modern */
.section {
  padding: 4rem 0;
}

.section h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

/* Scroll reveal – fade-in kur seksioni hyn në viewport */
.section.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  background: var(--navy);
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-btn);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.back-to-top:hover {
  background: var(--jade);
  color: #fff;
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.4);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: calc(60px + env(safe-area-inset-bottom, 0));
    right: 1rem;
  }
}

/* Kartela shërbimesh – profesionale */
.section-services {
  background: var(--surface);
  box-shadow: 0 1px 0 var(--border);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

.card {
  padding: 1.75rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--jade);
  transform: translateY(-3px);
}

/* Steps */
.section-steps {
  background: var(--bg);
}

.steps-list {
  max-width: 520px;
  margin: 0 auto;
  padding-left: 1.5rem;
  counter-reset: step;
}

.steps-list li {
  position: relative;
  margin-bottom: 1.25rem;
  padding-left: 0.5rem;
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -2.25rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--jade) 0%, var(--jade-dark) 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

/* Pricing */
.section-pricing {
  background: var(--surface);
}

.pricing-intro {
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.payment-ways {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 560px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--jade-dark);
  line-height: 1.5;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  position: relative;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.pricing-card-featured {
  border-color: var(--jade);
  background: linear-gradient(180deg, var(--jade-soft) 0%, var(--surface) 100%);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--jade) 0%, var(--jade-dark) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
}

.pricing-for, .pricing-includes {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  flex-grow: 1;
}

.pricing-card li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.pricing-card-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
}

.pricing-card .btn {
  margin-top: 0;
  flex: 1;
  min-width: 120px;
}

.legal-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Kutia Pagesa & Donacion */
.donation-box {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--jade-soft) 0%, rgba(16, 185, 129, 0.06) 100%);
  border: 2px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.donation-box h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.donation-text {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.paypal-trust {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--jade-dark);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.paypal-direct {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.paypal-me-link {
  display: inline-block;
  margin-left: 0.35em;
  color: #0070ba;
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}
.paypal-me-link:hover {
  text-decoration: underline;
  color: #005ea6;
}
.donation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* About */
.section-about {
  background: var(--surface);
}

.about-text p {
  margin: 0 0 1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* FAQ */
.section-faq {
  background: var(--surface);
}

.faq-list {
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  transition: background var(--transition);
}

.faq-item:hover {
  background: rgba(16, 185, 129, 0.04);
  border-radius: var(--radius);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item dt {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.faq-item dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.section-contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  margin-top: 1rem;
}

.contact-form label:first-of-type {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-sizing: border-box;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--jade);
  box-shadow: 0 0 0 4px var(--jade-soft);
}

@media (max-width: 768px) {
  .contact-form input,
  .contact-form textarea {
    font-size: 16px; /* shmang zmadhimin e shfletuesit në iOS kur fokusohet */
  }
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  margin-top: 1.25rem;
}

.contact-info p {
  margin: 0 0 0.75rem;
}

.contact-info a {
  color: var(--jade);
  text-decoration: none;
  font-weight: 500;
}

.section-contact .btn-secondary {
  background: var(--surface);
  color: var(--jade);
  border: 2px solid var(--jade);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.section-contact .btn-secondary:hover {
  background: var(--jade-soft);
  border-color: var(--jade);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Footer – profesional */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 2rem 0;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  display: block;
  text-decoration: none;
}

.footer-logo img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer .copyright {
  margin: 0;
  font-weight: 500;
}

.footer .copyright a {
  color: var(--jade-light);
  text-decoration: none;
  opacity: 0.95;
}

.footer .copyright a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

.footer-links a:hover {
  color: var(--jade-light);
  opacity: 1;
  text-decoration: none;
}

/* Imazhe profesionale – për fotot që do shtosh më vonë */
img.professional,
.hero img,
.section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card-featured {
    order: -1;
  }
}

/* ========== MOBIL – faqe e qëndrueshme, logo dhe butona sipas standarteve ========== */
@media (max-width: 768px) {
  .header-inner {
    min-height: 56px;
    padding: 0;
  }

  .logo {
    margin-right: auto;
  }
  .logo img {
    height: 40px;
    max-height: 40px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin: 0 -4px 0 0;
  }

  .nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.25rem max(1.25rem, env(safe-area-inset-left)) 1.5rem max(1.25rem, env(safe-area-inset-right));
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }
  .nav a:last-of-type {
    border-bottom: none;
  }

  .btn {
    min-height: 48px;
    min-width: 48px;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    border-radius: 14px;
  }

  .hero {
    padding: 2.5rem 0 2.5rem;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(1.4rem, 5.5vw, 1.9rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    min-height: 50px;
    border-radius: 9999px;
    font-weight: 600;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(1.4rem, 4vw, 1.75rem);
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0));
  }

  .lang-switcher {
    width: 100%;
    margin: 0.5rem 0;
  }
  .lang-dropdown-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .lang-dropdown {
    left: 0;
    right: 0;
    min-width: auto;
  }

  .card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .pricing-card {
    padding: 1.5rem;
    border-radius: 18px;
  }
  .pricing-card-buttons {
    flex-direction: column;
  }
  .pricing-card-buttons .btn {
    width: 100%;
    min-height: 48px;
  }

  .donation-box {
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
  }
  .donation-buttons {
    flex-direction: column;
  }
  .donation-buttons .btn {
    width: 100%;
    min-height: 48px;
  }

  .back-to-top {
    bottom: calc(68px + env(safe-area-inset-bottom, 0));
    right: max(1rem, env(safe-area-inset-right));
    padding: 0.65rem 1rem;
    min-height: 44px;
    border-radius: 9999px;
  }
}

@media (max-width: 480px) {
  .trust-bullets {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .sticky-rezervo,
  .sticky-paypal {
    min-height: 54px;
    padding: 0.85rem 0.5rem;
    font-size: 0.85rem;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

/* Pajisje shumë të vogla (ekran 360px ose më të vogël) */
@media (max-width: 360px) {
  .header-inner {
    min-height: 52px;
  }
  .logo img {
    height: 36px;
    max-height: 36px;
  }
  .nav {
    top: 52px;
  }
  .container {
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
  }
  .pricing-card {
    padding: 1.25rem;
  }
  .donation-box {
    padding: 1.25rem 1rem;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
}
