/* ═══════════════════════════════════════════════
   CSS VARIABLES — easily change colors here!
   ─────────────────────────────────────────────
   --blue   : main accent (light blue)
   --orange : call-to-action (orange)
   --gray   : neutral / text (gray)
═══════════════════════════════════════════════ */
:root {
  /* ── PRIMARY PALETTE ── */
  --blue:       #4AB3E8;
  --blue2:      #6ECAFF;
  --blue-dk:    #2A8FC5;
  --blue-bg:    rgba(74,179,232,.10);
  --blue-border:rgba(74,179,232,.28);

  --orange:     #FF6B1A;
  --orange2:    #FF8C45;
  --orange-bg:  rgba(255,107,26,.10);

  --gray:       #6B7A8D;
  --gray2:      #8A9BB0;
  --gray-lt:    #C8D4E0;
  --gray-dark:  #1A2535;

  /* ── BACKGROUNDS ── */
  --bg:         #F4F7FB;
  --card:       #FFFFFF;
  --card2:      #EEF3F9;
  --nav-bg:     #1A2535;

  /* ── TEXT ── */
  --text:       #1A2535;
  --muted:      #6B7A8D;
  --border:     #D0DCE8;

  /* ── EXTRA ── */
  --green:      #1DB954;
  --viber:      #7360F2;
  --insta:      #E1306C;
  --insta-bg:   rgba(225,48,108,.10);
  --viber-bg:   rgba(115,96,242,.10);
  --fb:         #1877F2;
  --fb-bg:      rgba(24,119,242,.10);
  --shadow-sm:  0 2px 8px rgba(74,179,232,.08);
  --shadow-md:  0 6px 24px rgba(74,179,232,.14);
  --shadow-lg:  0 12px 40px rgba(74,179,232,.2);
  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  20px;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 680px;
  margin: 0 auto;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }
textarea, input, select { font-family: inherit; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════════
   FLOOR VISUAL GRID — top of page, always visible
═══════════════════════════════════════════════ */
.floor-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 200px 155px;
  gap: 3px;
  background: var(--border);
  width: 100%;
}
.fv { position: relative; overflow: hidden; background: var(--card2); }
.fv.tall { grid-row: 1 / 3; }
.fv svg { width: 100%; height: 100%; display: block; }
.fv-pill {
  position: absolute; top: 10px; left: 10px;
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 11px; border-radius: 30px;
  letter-spacing: .5px;
  box-shadow: 0 2px 10px rgba(255,107,26,.4);
}
.fv-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 13px;
  background: linear-gradient(0deg, rgba(26,37,53,.85), transparent);
}
.fv-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: #fff; }
.fv-sub  { font-size: 11px; color: rgba(255,255,255,.58); margin-top: 2px; }

/* ═══════════════════════════════════════════════
   NAVIGATION BAR
═══════════════════════════════════════════════ */
.nav {
  background: var(--nav-bg);
  padding: 1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(255,107,26,.45);
}
.logo-text h1 {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 800; color: #fff; line-height: 1.15;
}
.logo-text p { font-size: 10px; color: var(--gray2); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.lang-btns { display: flex; gap: 5px; }
.lb {
  padding: 5px 12px; border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: transparent; color: var(--gray2);
  font-size: 11px; font-family: 'DM Sans', sans-serif; font-weight: 600;
  letter-spacing: 1px; transition: all .2s;
}
.lb.on, .lb:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ═══════════════════════════════════════════════
   HERO TEXT SECTION
═══════════════════════════════════════════════ */
.hero {
  padding: 1.8rem 1.4rem 1.6rem;
  background: linear-gradient(140deg, var(--gray-dark) 0%, #223348 100%);
  border-bottom: 3px solid var(--orange);
}
.loc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-bg); border: 1.5px solid var(--blue-border);
  border-radius: 30px; padding: 5px 14px;
  font-size: 11.5px; color: var(--blue2); font-weight: 600;
  margin-bottom: 1rem; letter-spacing: .3px;
}
.loc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-title {
  font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800;
  line-height: 1.13; color: #fff; margin-bottom: .55rem;
}
.hero-title em { color: var(--orange2); font-style: normal; }
.hero-sub { font-size: 14px; color: var(--gray2); line-height: 1.7; margin-bottom: 1.4rem; }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; font-family: 'DM Sans', sans-serif;
  border: 2px solid transparent; transition: all .22s;
}
.btn-orange {
  background: var(--orange); color: #fff; border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(255,107,26,.38);
}
.btn-orange:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,26,.5); }
.btn-outline {
  background: rgba(74,179,232,.1); border-color: rgba(74,179,232,.4); color: var(--blue2);
}
.btn-outline:hover { background: rgba(74,179,232,.2); transform: translateY(-2px); }
.btn-viber { background: rgba(115,96,242,.12); border: 2px solid rgba(115,96,242,.4); color: #7360F2; }
.btn-viber:hover { background: rgba(115,96,242,.22); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   SERVICE TAGS STRIP
═══════════════════════════════════════════════ */
.tags-strip {
  display: flex; gap: 7px; padding: .9rem 1.4rem;
  background: var(--card); border-bottom: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.tags-strip::-webkit-scrollbar { display: none; }
.stag {
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
  background: var(--blue-bg); border: 1px solid var(--blue-border);
  color: var(--blue-dk); font-size: 11.5px; font-weight: 600;
  padding: 5px 13px; border-radius: 30px; white-space: nowrap;
  transition: all .2s;
}
.stag:hover { background: var(--blue); color: #fff; border-color: var(--blue); cursor: default; }
.stag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

/* ═══════════════════════════════════════════════
   SECTION HEADING
═══════════════════════════════════════════════ */
.sec-pad { padding: 1.6rem 1.4rem 0; }
.sec-head {
  font-size: 10.5px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--blue-dk); font-weight: 700; margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: 10px;
}
.sec-head::after {
  content: ''; flex: 1; height: 2px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ═══════════════════════════════════════════════
   SERVICE ILLUSTRATION CARDS
═══════════════════════════════════════════════ */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.svc-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .25s; box-shadow: var(--shadow-sm);
}
.svc-card:hover {
  border-color: var(--blue); transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.svc-vis { height: 95px; overflow: hidden; }
.svc-vis svg { width: 100%; height: 100%; display: block; }
.svc-body { padding: 11px 12px; border-top: 2.5px solid var(--orange); }
.svc-name { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.svc-desc { font-size: 10.5px; color: var(--muted); line-height: 1.45; }

/* ═══════════════════════════════════════════════
   STATS ROW
═══════════════════════════════════════════════ */
.stats-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 10px; margin-top: 0;
}
.stat-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1rem;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.stat-label { font-size: 11px; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* ═══════════════════════════════════════════════
   WHY US / FEATURES
═══════════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feat-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
  display: flex; gap: 12px; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: border-color .2s;
}
.feat-card:hover { border-color: var(--blue); }
.feat-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: var(--blue-bg); color: var(--blue-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.feat-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.feat-desc { font-size: 11.5px; color: var(--muted); line-height: 1.45; }

/* ═══════════════════════════════════════════════
   CALL-TO-ACTION BIG CARD
═══════════════════════════════════════════════ */
.call-card {
  display: flex; align-items: center; gap: 15px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: 1.35rem 1.6rem;
  text-decoration: none; margin-bottom: 10px;
  transition: all .22s;
  box-shadow: 0 6px 26px rgba(255,107,26,.32);
}
.call-card:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255,107,26,.48); }
.call-cicon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.call-num {
  font-family: 'Syne', sans-serif; font-size: 23px; font-weight: 800;
  color: #fff; letter-spacing: .3px;
}
.call-hint { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px; font-weight: 500; }
.call-arr { margin-left: auto; font-size: 24px; color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════
   CONTACT 2-COL GRID
═══════════════════════════════════════════════ */
.c2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
/* Instagram card full width on last if odd */
.cc {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; gap: 9px;
  transition: all .22s; box-shadow: var(--shadow-sm);
}
.cc:hover { border-color: var(--blue); background: var(--card2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cc.wa  { border-top: 3px solid var(--green); }
.cc.em  { border-top: 3px solid var(--blue); }
.cc-icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.cc-icon.g { background: rgba(29,185,84,.1); color: var(--green); }
.cc-icon.b { background: var(--blue-bg); color: var(--blue-dk); }
.cc-title { font-size: 14px; font-weight: 600; }
.cc-desc  { font-size: 12px; color: var(--muted); line-height: 1.45; }
.cc-link  { font-size: 12.5px; font-weight: 600; margin-top: auto; }
.cc-link.g { color: var(--green); }
.cc-link.b { color: var(--blue-dk); }

.cc.viber { border-top: 3px solid var(--viber); }
.cc-icon.vi { background: rgba(115,96,242,.1); color: var(--viber); }
.cc-link.vi { color: var(--viber); }
.cc.fb  { border-top: 3px solid var(--fb); }
.cc.insta { border-top: 3px solid var(--insta); }
.cc-icon.ig { background: rgba(225,48,108,.1); color: var(--insta); }
.cc-link.ig { color: var(--insta); }
.cc-icon.fb-ico { background: var(--fb-bg); color: var(--fb); }
.cc-link.fb-lnk { color: var(--fb); }


/* ═══════════════════════════════════════════════
   CONTACT EXTRAS (subtitle + website card accents)
═══════════════════════════════════════════════ */
.cta-sub {
  font-size: 14px; color: var(--muted); margin: -0.5rem 0 1.1rem;
}
.cc.web { border-top: 3px solid var(--blue-dk); }
.cc-icon.w { background: var(--blue-bg); color: var(--blue-dk); }
.cc-link.w { color: var(--blue-dk); }

/* ═══════════════════════════════════════════════
   MAP PLACEHOLDER
═══════════════════════════════════════════════ */
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid var(--border); background: var(--card2);
  aspect-ratio: 16/7; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--nav-bg);
  margin-top: 2rem; padding: 1.6rem 1.4rem 2.5rem;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 16px; margin-bottom: 1.4rem;
  padding-bottom: 1.4rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { font-family: 'Syne', sans-serif; font-size: 17px; color: #fff; font-weight: 800; }
.footer-sub { font-size: 11px; color: var(--gray2); margin-top: 3px; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-link { font-size: 12px; color: var(--gray2); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.footer-link:hover { color: var(--blue2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 11px; color: var(--gray); }
.footer-icons { display: flex; gap: 12px; }
.footer-icon { font-size: 22px; transition: transform .2s, color .2s; }
.footer-icon:hover { transform: scale(1.2); }


/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gal-filters {
  display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 1.1rem;
}
.gf-btn {
  padding: 6px 15px; border-radius: 30px; font-size: 12px; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--card); color: var(--muted);
  cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.gf-btn.on, .gf-btn:hover {
  background: var(--orange); color: #fff; border-color: var(--orange);
}
.gal-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.gal-item {
  border-radius: var(--radius); overflow: hidden;
  background: var(--card); border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all .25s;
  cursor: pointer;
}
.gal-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.gal-item.hidden { display: none; }
.gal-vis { height: 150px; overflow: hidden; }
.gal-vis svg { width: 100%; height: 100%; display: block; transition: transform .4s; }
.gal-item:hover .gal-vis svg { transform: scale(1.04); }
.gal-info {
  padding: 10px 12px; display: flex; align-items: center; gap: 8px;
  border-top: 2px solid var(--border);
}
.gal-badge {
  background: var(--orange); color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}
.gal-title {
  font-size: 12px; font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* real photo items in gallery */
.gal-item.real-photo .gal-vis {
  height: 150px;
}
.gal-item.real-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s;
}
.gal-item.real-photo:hover img { transform: scale(1.05); }
#gal-grid .gal-vis img { cursor: zoom-in; }

/* ═══════════════════════════════════════════════
   GALLERY LIGHTBOX (fullscreen image viewer)
═══════════════════════════════════════════════ */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(10,14,20,.94);
  align-items: center; justify-content: center;
  padding: 16px; box-sizing: border-box;
}
.lightbox-overlay.active { display: flex; }
.lightbox-content {
  display: flex; flex-direction: column; align-items: center;
  max-width: 100%; max-height: 100%;
}
.lightbox-img {
  max-width: 100%; max-height: 78vh; width: auto; height: auto;
  object-fit: contain; border-radius: 10px;
  box-shadow: 0 12px 50px rgba(0,0,0,.55);
  background: #0d1520;
  animation: lbZoomIn .22s ease;
}
@keyframes lbZoomIn { from{ opacity:0; transform: scale(.94);} to{ opacity:1; transform: scale(1);} }
.lightbox-caption {
  margin-top: 14px; color: #fff; font-size: 13.5px; font-weight: 600;
  text-align: center; max-width: 90vw;
}
.lightbox-counter {
  margin-top: 4px; color: var(--gray2); font-size: 11px; letter-spacing: .5px;
}
.lightbox-close {
  position: absolute; top: 14px; right: 16px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.lightbox-close:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.lightbox-nav:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
@media (max-width: 480px) {
  .lightbox-nav { width: 38px; height: 38px; font-size: 20px; }
  .lightbox-close { width: 36px; height: 36px; font-size: 19px; }
}

/* ═══════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 24px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: 0 4px 18px rgba(255,107,26,.45);
  opacity: 0; transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  cursor: pointer; z-index: 999; border: none;
}
.back-top.show { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════ */
.mt-sec { margin-top: 1.6rem; }
.pb { padding-bottom: 1.6rem; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-title { font-size: 25px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════ */
@media print {
  .nav, .back-top, .cta-row { display: none; }
  body { font-size: 12px; }
}

/* ═══ 3D FLOOR SECTION (donor fragment) ═══ */
.s3d {
    background: #0d1520;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.s3d-head {
    padding: 1.1rem 1.4rem .7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.s3d-lbl {
    font-size: 10.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.s3d-lbl::after {
    content: '';
    width: 36px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--orange), transparent);
}
.ft-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.ft-btn {
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    border: 1.5px solid rgba(255, 107, 26, .3);
    background: rgba(255, 107, 26, .06);
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    transition: all .2s;
    font-family: 'DM Sans', sans-serif;
}
.ft-btn.on,
.ft-btn:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 0 12px rgba(255, 107, 26, .35);
}
#canvas3d {
    width: 100%;
    height: 380px;
    display: block;
    cursor: grab;
}
#canvas3d:active {
    cursor: grabbing;
}
.s3d-hint {
    text-align: center;
    padding: .55rem;
    font-size: 10px;
    color: rgba(255, 255, 255, .28);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: #0d1520;
}

/* ═══════════════════════════════════════════════
   REFINEMENT LAYER — one consolidated design pass
   (replaces the stacked premium/lightning patches)
═══════════════════════════════════════════════ */
html { scroll-behavior: smooth; }
body { max-width: 1280px !important; background: linear-gradient(180deg, #f7f9fc, #eef4fa); }
.nav { position: sticky; backdrop-filter: blur(14px); }
.footer { margin-top: 4rem; }
img[loading] { content-visibility: auto; }
*:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* One card language everywhere */
.svc-card, .feat-card, .stat-card, .cc, .gal-item {
  border: 1px solid #e7ecf2;
  box-shadow: 0 6px 24px rgba(15, 35, 60, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover, .feat-card:hover, .stat-card:hover, .cc:hover, .gal-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15, 35, 60, .12);
}

/* Contact cards — roomier, channel accents restored */
.cc { padding: 1.5rem 1.4rem; gap: 10px; }
.cc:hover { border-color: #dbe4ee; background: var(--card); }
.cc.wa    { border-top: 3px solid var(--green); }
.cc.viber { border-top: 3px solid var(--viber); }
.cc.em    { border-top: 3px solid var(--blue); }
.cc.web   { border-top: 3px solid var(--blue-dk); }
.cc.wa:hover    { border-top-color: var(--green); }
.cc.viber:hover { border-top-color: var(--viber); }
.cc.em:hover    { border-top-color: var(--blue); }
.cc.web:hover   { border-top-color: var(--blue-dk); }
.cc-icon  { width: 46px; height: 46px; border-radius: 13px; font-size: 24px; }
.cc-title { font-size: 15.5px; }
.cc-desc  { font-size: 13px; }
.cc-link  { font-size: 13.5px; margin-top: auto; padding-top: 6px; }
.c2 { gap: 14px; }
@media (max-width: 640px) { .c2 { grid-template-columns: 1fr; } }
.cta-sub { font-size: 15px; margin: -0.4rem 0 1.4rem; }
.call-card { background: linear-gradient(135deg, #ff6b1a, #ff9a3d); }

/* Gallery — true aspect-ratio tiles instead of letterbox strips */
.gal-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gal-vis, .gal-item.real-photo .gal-vis { height: auto; aspect-ratio: 4 / 3; }
.gal-item { border-radius: 14px; }
.gal-item:hover { border-color: var(--orange); }
.gal-info { padding: 12px 14px; }
.gal-title { font-size: 13px; }
.gal-badge { font-size: 10.5px; }

/* Section grids */
.svc-grid, .features-grid, .stats-row { gap: 14px; }
@media (min-width: 900px) {
  .sec-pad { padding-left: 2rem; padding-right: 2rem; }
  .svc-grid, .stats-row { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 3D viewer input: wheel/pinch zoom the floor, vertical swipe scrolls the page */
#canvas3d { touch-action: pan-y; }
@media (max-width: 560px) { #canvas3d { height: 300px; } }

/* Viber brand icon (inline SVG — the Tabler webfont has no viber glyph) */
.viber-svg { width: 1em; height: 1em; fill: currentColor; display: inline-block; vertical-align: -0.125em; }
.cc-icon .viber-svg { width: 24px; height: 24px; }

/* Contact channels: one row of slim cards on desktop, single column on phones */
@media (min-width: 900px) { .c2 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
