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

:root {
  --red:    #D0202A;
  --red-dk: #A8181F;
  --red-lt: #FCE8E9;
  --white:  #FFFFFF;
  --off:    #F7F7F7;
  --border: #EBEBEB;
  --text:   #1A1A1A;
  --muted:  #6B7280;
  --ff-h:   'Syne', sans-serif;
  --ff-b:   'Nunito', sans-serif;
  --ease:   cubic-bezier(.25,.8,.25,1);
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); background: var(--white); color: var(--text); overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw; height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px; background: var(--red); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; box-shadow: 0 4px 12px rgba(208,32,42,.35);
  flex-shrink: 0;
}
.logo-name { font-family: var(--ff-h); font-size: 19px; font-weight: 800; color: var(--text); letter-spacing: .5px; line-height: 1; }
.logo-name span { color: var(--red); }
.logo-sub { font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: .5px;
  color: var(--muted); text-decoration: none; transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--red); border-radius: 1px;
  transform: scaleX(0); transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-tel {
  display: flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff; text-decoration: none;
  padding: 9px 18px; border-radius: 6px;
  font-size: 13px; font-weight: 700;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-tel:hover { background: var(--red-dk); transform: translateY(-1px); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: #fff; flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: var(--ff-h); font-size: 30px; font-weight: 800;
  color: var(--text); text-decoration: none; transition: color .2s;
}
.mob-menu a:hover { color: var(--red); }
.mob-close {
  position: absolute; top: 20px; right: 6vw;
  font-size: 32px; cursor: pointer; color: var(--muted);
  background: none; border: none; line-height: 1;
}

/* ─── HERO ─── */
#ballina {
  padding: 130px 6vw 90px;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero-pattern {
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: var(--red-lt);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.hero-pattern::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(208,32,42,.1) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red-lt); border: 1.5px solid rgba(208,32,42,.25);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 22px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red);
  animation: fUp .6s var(--ease) both;
}
.dot-pulse { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: dpulse 2s infinite; }
@keyframes dpulse { 0%,100%{ box-shadow:0 0 0 0 rgba(208,32,42,.5) }50%{ box-shadow:0 0 0 5px rgba(208,32,42,0) } }

h1 {
  font-family: var(--ff-h); font-size: clamp(38px, 5vw, 66px);
  font-weight: 800; line-height: .97; color: var(--text);
  animation: fUp .7s .1s var(--ease) both;
}
h1 .red { color: var(--red); display: block; }

.hero-desc {
  margin-top: 22px; font-size: 15.5px; line-height: 1.85; color: var(--muted);
  font-weight: 400; max-width: 460px;
  animation: fUp .7s .2s var(--ease) both;
}
.hero-actions {
  margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap;
  animation: fUp .7s .3s var(--ease) both;
}
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 13px 26px; border-radius: 7px; font-family: var(--ff-b); font-size: 14px; font-weight: 700; text-decoration: none; cursor: pointer; border: none; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 20px rgba(208,32,42,.3); }
.btn-red:hover { background: var(--red-dk); box-shadow: 0 10px 28px rgba(208,32,42,.4); }
.btn-border { background: #fff; color: var(--red); border: 2px solid var(--red); }
.btn-border:hover { background: var(--red-lt); }

.hero-stats {
  margin-top: 52px; display: flex; gap: 36px; flex-wrap: wrap;
  animation: fUp .7s .4s var(--ease) both;
}
.stat-item { border-left: 3px solid var(--red); padding-left: 14px; }
.stat-num { font-family: var(--ff-h); font-size: 32px; font-weight: 800; color: var(--text); line-height: 1; }
.stat-num sup { font-size: .55em; }
.stat-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: .5px; }

/* hero right visual */
.hero-visual { animation: fUp .8s .25s var(--ease) both; }
.hero-card-main {
  background: #fff; border-radius: 16px; padding: 36px 32px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  position: relative;
}
.hero-card-badge {
  position: absolute; top: -14px; right: 24px;
  background: var(--red); color: #fff; border-radius: 100px;
  padding: 5px 14px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.hc-title { font-family: var(--ff-h); font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 20px; }
.appliance-list { display: flex; flex-direction: column; gap: 10px; }
.appl-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--off); border-radius: 9px; padding: 12px 14px;
  border: 1px solid var(--border); transition: border-color .2s, background .2s;
}
.appl-row:hover { border-color: rgba(208,32,42,.3); background: var(--red-lt); }
.appl-ic { font-size: 22px; width: 32px; text-align: center; }
.appl-name { font-size: 14px; font-weight: 600; color: var(--text); }
.appl-brands { font-size: 11px; color: var(--muted); margin-top: 1px; }
.appl-tick { margin-left: auto; color: var(--red); font-size: 16px; }

@keyframes fUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:none} }

/* ─── STRIP ─── */
.strip { background: var(--red); padding: 12px 0; overflow: hidden; display: flex; }
.strip-track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 24s linear infinite; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.strip-item {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.9); display: flex; align-items: center; gap: 10px;
}
.strip-item::before { content: '◆'; font-size: 7px; opacity: .7; }

/* ─── SECTIONS ─── */
section { padding: 96px 6vw; }
.sec-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.sec-label::before { content: ''; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; border-radius: 1px; }
h2.sec-title {
  font-family: var(--ff-h); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800; line-height: 1.05; color: var(--text); margin-bottom: 16px;
}
h2.sec-title span { color: var(--red); }
.sec-desc { font-size: 15px; line-height: 1.85; color: var(--muted); max-width: 580px; }

/* ─── RRETH NESH ─── */
#rreth { background: var(--off); }
.rreth-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.about-card {
  background: var(--white); border-radius: 16px; padding: 44px 40px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--red);
}
.about-year {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-lt); border-radius: 8px; padding: 8px 16px;
  font-weight: 700; font-size: 13px; color: var(--red); margin-bottom: 20px;
}
.about-text { font-size: 15px; line-height: 1.85; color: var(--muted); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.a-stat {
  background: var(--off); border-radius: 10px; padding: 18px;
  border: 1px solid var(--border); text-align: center;
}
.a-stat-num { font-family: var(--ff-h); font-size: 28px; font-weight: 800; color: var(--red); }
.a-stat-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: .5px; text-transform: uppercase; }

.values { display: flex; flex-direction: column; gap: 0; }
.val {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  transition: padding-left .25s;
}
.val:last-child { border-bottom: none; }
.val:hover { padding-left: 4px; }
.val-ic {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 10px;
  background: var(--red-lt); display: flex; align-items: center; justify-content: center;
  font-size: 22px; border: 1px solid rgba(208,32,42,.15);
}
.val-title { font-family: var(--ff-h); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.val-txt { font-size: 13.5px; line-height: 1.7; color: var(--muted); }

/* ─── SHËRBIMET ─── */
#sherbimet { background: var(--white); }
.sh-top { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 52px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.s-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 34px 28px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  cursor: default;
}
.s-card:hover {
  border-color: var(--red); transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(208,32,42,.1);
}
.s-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.s-icon { font-size: 36px; line-height: 1; }
.s-num {
  font-family: var(--ff-h); font-size: 13px; font-weight: 800;
  color: var(--red); background: var(--red-lt); border-radius: 6px;
  padding: 3px 9px;
}
.s-title { font-family: var(--ff-h); font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 10px; letter-spacing: .8px; -webkit-font-smoothing: antialiased; -webkit-text-stroke: 0.4px currentColor; }
.s-desc { font-size: 13.5px; line-height: 1.75; color: var(--muted); font-weight: 500; }
.s-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--red); font-weight: 700; }

.cta-band {
  margin-top: 52px; background: var(--red); border-radius: 16px;
  padding: 44px 48px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.cta-band h3 { font-family: var(--ff-h); font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cta-band p { font-size: 14px; color: rgba(255,255,255,.8); }
.btn-white { background: #fff; color: var(--red); font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.btn-white:hover { background: var(--red-lt); }

/* ─── KONTAKTI ─── */
#kontakti { background: var(--off); }
.kontakti-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.c-details { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.c-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.c-item:last-child { border-bottom: none; }
.c-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 10px;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: 0 4px 12px rgba(208,32,42,.25);
}
.c-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.c-val { font-size: 15.5px; font-weight: 700; color: var(--text); }
.c-val a { color: inherit; text-decoration: none; transition: color .2s; }
.c-val a:hover { color: var(--red); }
.c-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; font-weight: 400; }

.c-socials { margin-top: 32px; display: flex; gap: 10px; }
.soc-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  border: 1.5px solid var(--border); color: var(--text);
  transition: border-color .2s, background .2s, color .2s;
}
.soc-btn:hover { border-color: var(--red); background: var(--red-lt); color: var(--red); }

/* FORM */
.c-form-wrap {
  background: var(--white); border-radius: 16px; padding: 44px 40px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.c-form-title { font-family: var(--ff-h); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.c-form-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.f-group label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text); }
.f-group input,
.f-group textarea,
.f-group select {
  background: var(--off); border: 1.5px solid var(--border);
  border-radius: 8px; color: var(--text);
  padding: 12px 14px; font-family: var(--ff-b); font-size: 14px; outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus { border-color: var(--red); background: #fff; }
.f-group input::placeholder, .f-group textarea::placeholder { color: #bbb; }
.f-group textarea { resize: vertical; min-height: 100px; }
.f-group select option { background: #fff; }
.f-note { font-size: 12px; color: var(--muted); margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }

.f-submit {
  width: 100%; background: var(--red); color: #fff; border: none; border-radius: 8px;
  padding: 15px; font-family: var(--ff-b); font-size: 14px; font-weight: 700;
  letter-spacing: .8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(208,32,42,.3);
}
.f-submit:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(208,32,42,.4); }
.f-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.success-msg { display: none; text-align: center; padding: 48px 20px; }
.success-msg .s-ic { font-size: 60px; display: block; margin-bottom: 16px; }
.success-msg h3 { font-family: var(--ff-h); font-size: 24px; color: var(--red); margin-bottom: 10px; }
.success-msg p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── MAP STRIP ─── */
.map-strip {
  background: var(--red-lt); padding: 56px 6vw;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.map-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(208,32,42,.08) 39px, rgba(208,32,42,.08) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(208,32,42,.08) 39px, rgba(208,32,42,.08) 40px);
}
.map-inner { position: relative; z-index: 1; text-align: center; }
.map-icon { font-size: 52px; display: block; margin-bottom: 14px; filter: drop-shadow(0 6px 16px rgba(208,32,42,.3)); }
.map-title { font-family: var(--ff-h); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.map-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.map-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; text-decoration: none;
  padding: 12px 24px; border-radius: 8px; font-size: 13px; font-weight: 700;
  transition: background .2s, transform .2s;
}
.map-cta:hover { background: var(--red-dk); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  background: var(--text); color: #fff;
  padding: 52px 6vw 32px;
}
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.f-logo-name { font-family: var(--ff-h); font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.f-logo-name span { color: var(--red); }
.f-logo-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }
.f-col-title { font-family: var(--ff-h); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.f-col a, .f-col p { display: block; font-size: 13.5px; color: rgba(255,255,255,.7); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.f-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.35); }

/* ─── FLOAT CALL ─── */
.float-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 58px; height: 58px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; text-decoration: none; color: #fff;
  box-shadow: 0 6px 24px rgba(208,32,42,.5);
  animation: fpulse 2.5s ease-in-out infinite;
}
@keyframes fpulse { 0%,100%{box-shadow:0 6px 24px rgba(208,32,42,.5)} 50%{box-shadow:0 6px 40px rgba(208,32,42,.8)} }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .rreth-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakti-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-tel { display: none; }
  .burger { display: flex; }
  .f-row { grid-template-columns: 1fr; }
  .c-form-wrap { padding: 28px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { flex-direction: column; text-align: center; padding: 36px 28px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
