/* ═══════════════════════════════════════════
   ZAMONT – Hlavní stylesheet
   Barvy: bílá + středně světle modrá #5ca4d4
   Font: Syne (nadpisy) + Nunito Sans (text)
═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --blue:        #5ca4d4;
  --blue-dark:   #3d85b5;
  --blue-darker: #2a6a96;
  --blue-light:  #eaf4fb;
  --blue-pale:   #f4f9fd;
  --white:       #ffffff;
  --gray-100:    #f7f9fc;
  --gray-200:    #e8eef4;
  --gray-400:    #a0b4c4;
  --text:        #1a2e40;
  --text-muted:  #5a7388;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(92,164,212,0.12);
  --shadow-md:   0 8px 40px rgba(26,46,64,0.14);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-darker); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
}

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(92,164,212,0.38);
}
.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
  color: var(--blue-darker);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--gray-200);
}
.btn-ghost:hover { background: var(--gray-100); color: var(--text); }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Sections ── */
.section { padding: 100px 0; }
.section-blue-light { background: var(--blue-pale); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-light);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ─────────────────────────────────────────
   COOKIE BANNER
───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 18px 24px;
  max-width: 680px;
  width: calc(100% - 48px);
  display: none;
  animation: slideUp 0.4s ease;
}
.cookie-banner.visible { display: block; }
.cookie-content { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-content p { flex: 1; min-width: 200px; font-size: 0.9rem; color: var(--text-muted); }
.cookie-link { color: var(--blue-dark); font-weight: 600; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-color: var(--gray-200);
  box-shadow: 0 2px 16px rgba(26,46,64,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--blue);
}
/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--blue);
}
.logo-mark {
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav-logo:hover .logo-mark { transform: scale(1.06); }
.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--blue);
}
.logo-tagline {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   PARTNEŘI
───────────────────────────────────────── */
.section-partners { background: var(--white); }

.partners-loading {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: all var(--transition);
  min-width: 140px;
  text-align: center;
}
.partner-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.partner-logo-img {
  max-width: 110px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter var(--transition);
  mix-blend-mode: multiply;
}
.partner-card:hover .partner-logo-img { filter: grayscale(0%); }
.partner-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text);
}
.partner-auth-badge {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ─────────────────────────────────────────
   AKTUALITY
───────────────────────────────────────── */
.aktuality-loading {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  grid-column: 1 / -1;
}

.aktuality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aktualita-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.aktualita-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.aktualita-icon-wrap {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.aktualita-icon-wrap.type-zaruka  { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.aktualita-icon-wrap.type-akce    { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.aktualita-icon-wrap.type-novinka { background: linear-gradient(135deg, var(--blue-pale), #b3d9f0); }

.aktualita-type-badge {
  display: inline-block;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 4px;
  margin: 14px 16px 0;
  width: fit-content;
}
.badge-zaruka  { background: #e8f5e9; color: #2e7d32; }
.badge-akce    { background: #fff3e0; color: #e65100; }
.badge-novinka { background: var(--blue-light); color: var(--blue-dark); }

.aktualita-body { padding: 10px 16px 20px; flex: 1; display: flex; flex-direction: column; }
.aktualita-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; color: var(--text); }
.aktualita-text  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.aktualita-meta  { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.aktualita-meta-sep { opacity: 0.4; }

.aktuality-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .aktuality-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .aktuality-grid { grid-template-columns: 1fr; }
  .logo-tagline { display: none; }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover { color: var(--blue-dark); background: var(--blue-light); }
.nav-link.active { color: var(--blue-dark); }
.nav-link-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 22px;
}
.nav-link-cta:hover { background: var(--blue-dark); color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #eaf4fb 0%, #f8fcff 40%, #daeef8 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #5ca4d4 0%, transparent 70%);
  top: -200px; right: -200px;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3d85b5 0%, transparent 70%);
  bottom: 50px; left: -100px;
  opacity: 0.2;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--blue-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(92,164,212,0.12);
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-title em {
  font-style: normal;
  color: var(--blue-dark);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--blue-dark); }
.hero-stat span { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--gray-200); }
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ─────────────────────────────────────────
   KDO JSME
───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.55;
}
.about-text p { color: var(--text-muted); margin-bottom: 14px; }
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 2px solid var(--blue-light);
}
.about-stat { display: flex; flex-direction: column; gap: 2px; }
.about-stat-num { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--blue-dark); }
.about-stat-lbl { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }

.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--white);
  border: 2px solid var(--blue-light);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue-dark);
  box-shadow: var(--shadow);
}
.about-badge svg { color: var(--blue-dark); flex-shrink: 0; }

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--blue-dark); }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
}
.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-card-highlight {
  background: var(--blue-light);
  border-color: var(--blue);
}
.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-light);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}
.service-card-highlight .service-num { color: rgba(92,164,212,0.25); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; position: relative; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.service-list { display: flex; flex-direction: column; gap: 6px; }
.service-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

/* ─────────────────────────────────────────
   REALIZACE
───────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}
.projects-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--blue-light);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 160px 80px;
  gap: 3px;
  background: var(--gray-200);
}
.project-photo {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.project-photo:first-child {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-photo:hover img { transform: scale(1.06); }
.project-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,46,64,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-photo:hover .project-photo-overlay { opacity: 1; }
.project-photo-more {
  background: rgba(26,46,64,0.7);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}
.project-info { padding: 22px 24px; }
.project-title { font-size: 1.1rem; margin-bottom: 8px; }
.project-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.project-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.project-btn:hover { color: var(--blue-darker); }

/* ─────────────────────────────────────────
   REFERENCE
───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); background: var(--white); }
.review-stars { font-size: 1.1rem; color: #f5a623; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.review-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ─────────────────────────────────────────
   KONTAKT
───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.contact-card h3 { font-size: 1.3rem; margin-bottom: 24px; color: var(--text); }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
}
.contact-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-item svg { color: var(--blue-dark); flex-shrink: 0; margin-top: 2px; }
.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.contact-item span, .contact-item a { font-size: 0.95rem; color: var(--text); font-weight: 600; }
.contact-item a:hover { color: var(--blue-dark); }

.qr-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
  margin-top: 20px;
}
.qr-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; font-weight: 600; }
#qrcode { display: flex; justify-content: center; }
#qrcode canvas { border-radius: var(--radius-sm); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.contact-form-wrap h3 { font-size: 1.2rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(92,164,212,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7388' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}
.form-success.visible { display: block; }
.form-note { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--text);
  color: var(--gray-400);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-400);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue); }
.footer-info { font-size: 0.82rem; color: #6e8999; }
.footer-copy { font-size: 0.78rem; color: #4a6070; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); width: 100%; text-align: center; }

/* ─────────────────────────────────────────
   FLOATING CALL BUTTON
───────────────────────────────────────── */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(92,164,212,0.45);
  transition: all var(--transition);
  text-decoration: none;
}
.float-call:hover {
  background: var(--blue-dark);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(92,164,212,0.55);
}
.float-call span { display: inline; }

/* ─────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,30,0.94);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--transition);
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 2.4rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 2;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-body {
  position: relative;
  z-index: 2;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lightboxImg {
  max-width: 100%;
  max-height: calc(100vh - 220px);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 12px; }
.lightbox-counter { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 4px; }
.lightbox-thumbs {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.lightbox-thumb {
  width: 56px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.lightbox-thumb.active { border-color: var(--blue); }
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero entrance animations */
.animate-in {
  opacity: 0;
  animation: fadeIn 0.7s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* Scroll-triggered reveal */
.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-animations-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
}
.js-animations-ready .scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.features-grid .feature-card:nth-child(2) { transition-delay: 0.08s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.16s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.08s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.16s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.24s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.24s; }
.reviews-grid .review-card:nth-child(2) { transition-delay: 0.08s; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 0.16s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-img-wrap img { aspect-ratio: 16/7; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 4px;
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-link-cta { text-align: center; justify-content: center; }
  .hero { min-height: 90vh; padding: 100px 0 70px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .float-call span { display: none; }
  .float-call { padding: 14px; border-radius: 50%; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-body { max-width: calc(100vw - 100px); }
  .about-badge { display: none; }
  .cookie-content { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .hero-stat-divider { display: none; }
  .about-stats { flex-direction: column; gap: 16px; }
}
