* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; background: radial-gradient(circle at top, rgba(120,0,0,0.08) 0%, rgba(7,16,31,1) 18%, rgba(2,4,10,1) 58%, rgba(0,0,0,1) 100%); color: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
.container { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }

.site-header { background: rgba(0, 0, 0, 0.94); border-bottom: 1px solid rgba(215, 38, 31, 0.22); box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 96px; gap: 28px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; max-width: 520px; }
.brand img, .custom-logo { display: block; width: auto; height: 72px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35)); }
.brand-title { display: none; }
.main-nav { flex: 1 1 auto; display: flex; justify-content: flex-end; }
.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { font-size: 16px; font-weight: 700; letter-spacing: 0.2px; color: #fff; transition: color .25s ease, opacity .25s ease; }
.nav-menu a:hover { color: #ef2f2f; }
.menu-toggle { display: none; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(215,38,31,.28); color:#fff; border-radius:8px; padding:8px 12px; font-size:24px; cursor:pointer; }

.hero { padding: 20px 0 0; }
.hero-box { min-height: 760px; display:flex; align-items:center; position:relative; overflow:hidden; border:1px solid rgba(215,38,31,.18); box-shadow:0 30px 80px rgba(0,0,0,.65); animation: heroZoom 10s ease-out both; transform-origin:center center; }
.hero-box::before { content:""; position:absolute; inset:0; background: linear-gradient(to bottom, rgba(255,255,255,.03), transparent 16%), linear-gradient(to top, rgba(0,0,0,.24), transparent 34%); }
.hero-box::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at right center, rgba(215,38,31,.16), transparent 32%); }
.hero-content { position:relative; z-index:2; max-width:700px; padding:90px 60px; }
.hero-badge { display:inline-flex; align-items:center; padding:10px 16px; margin-bottom:22px; border:1px solid rgba(215,38,31,.24); background:rgba(255,255,255,.04); font-size:14px; font-weight:800; text-transform:uppercase; letter-spacing:1px; }
.hero h1 { margin:0 0 22px; font-size:clamp(44px,5vw,82px); line-height:.96; font-weight:900; letter-spacing:-1.8px; text-transform:uppercase; text-shadow:0 4px 18px rgba(0,0,0,.45); max-width:760px; }
.hero-text { max-width:620px; margin:0 0 32px; color:rgba(255,255,255,.84); font-size:22px; line-height:1.6; }
.hero-buttons { display:flex; gap:18px; flex-wrap:wrap; }

.btn { display:inline-flex; align-items:center; justify-content:center; min-width:210px; padding:17px 30px; border-radius:10px; font-size:18px; font-weight:800; letter-spacing:.3px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; border:1px solid transparent; }
.btn-primary { background: linear-gradient(180deg, #f03434 0%, #a80d0d 100%); box-shadow:0 12px 30px rgba(183,18,18,.34); }
.btn-primary:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 16px 34px rgba(183,18,18,.42); }
.btn-dark { background: rgba(10,12,18,.78); border-color: rgba(255,255,255,.14); backdrop-filter: blur(6px); }
.btn-dark:hover { border-color: rgba(215,38,31,.45); transform: translateY(-2px); }

.section-head { max-width:860px; margin-bottom:34px; }
.section-title { font-size:42px; line-height:1.1; font-weight:900; text-transform:uppercase; margin:0 0 18px; }
.section-subtitle { margin:0; font-size:18px; line-height:1.7; color:rgba(255,255,255,.78); max-width:760px; }

.trust-strip { padding:24px 0; }
.trust-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.trust-card { display:flex; flex-direction:column; gap:8px; padding:24px; border:1px solid rgba(215,38,31,.18); background:linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.015) 100%); box-shadow:0 10px 26px rgba(0,0,0,.22); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.trust-card:hover, .service-card:hover, .why-card:hover, .stat-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0,0,0,.28); }
.trust-number { font-size:28px; font-weight:900; line-height:1; color:#fff; text-transform:uppercase; }
.trust-label { font-size:15px; line-height:1.5; color:rgba(255,255,255,.76); text-transform:uppercase; letter-spacing:.4px; }

.services { padding:70px 0; }
.grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.service-card { border:1px solid rgba(215,38,31,.14); background:linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.015) 100%); box-shadow:0 14px 34px rgba(0,0,0,.22); overflow:hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.card-image { height:320px; overflow:hidden; background:#111; }
.card-image img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.service-card:hover .card-image img, .gallery-item:hover img { transform:scale(1.04); }
.card-body { padding:24px 24px 28px; }
.card h3 { margin:0 0 12px; font-size:26px; line-height:1.08; font-weight:900; text-transform:uppercase; }
.card p { margin:0 0 18px; color:rgba(255,255,255,.78); line-height:1.7; font-size:17px; }
.service-link { display:inline-flex; align-items:center; gap:8px; color:#f03434; font-weight:800; text-transform:uppercase; letter-spacing:.3px; }
.service-link::after { content:"→"; font-size:18px; line-height:1; }

.why-us { padding:10px 0 70px; }
.why-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.why-card { padding:24px; border:1px solid rgba(215,38,31,.2); background:rgba(255,255,255,.02); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.why-card:hover { border-color: rgba(215,38,31,.4); }
.why-card h3 { font-size:20px; font-weight:900; margin:0 0 10px; text-transform:uppercase; }
.why-card p { margin:0; color:#ccc; line-height:1.7; }

.company-trust { padding:0 0 70px; }
.company-trust-inner { display:grid; grid-template-columns:1.2fr 1fr; gap:28px; align-items:stretch; }
.company-trust-content, .company-trust-stats { padding:30px; border:1px solid rgba(215,38,31,.18); background:linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.015) 100%); box-shadow:0 14px 34px rgba(0,0,0,.22); }
.company-trust-text { font-size:20px; line-height:1.7; color:rgba(255,255,255,.82); margin:0; max-width:90%; }
.company-trust-stats { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.stat-card { padding:22px; border:1px solid rgba(215,38,31,.16); background:rgba(255,255,255,.02); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.stat-card strong { display:block; font-size:26px; font-weight:900; margin-bottom:8px; }
.stat-card span { display:block; font-size:14px; line-height:1.5; color:rgba(255,255,255,.75); text-transform:uppercase; }

.gallery-section { padding:10px 0 70px; }
.gallery-grid { display:grid; grid-template-columns:1fr 1.2fr 1fr; grid-template-rows:240px 240px; gap:18px; }
.gallery-item { position:relative; display:block; overflow:hidden; border:1px solid rgba(215,38,31,.14); background:#0b0d12; box-shadow:0 14px 34px rgba(0,0,0,.22); transition: transform .3s ease, box-shadow .3s ease; }
.gallery-item:hover { transform:translateY(-4px); box-shadow:0 18px 38px rgba(0,0,0,.26); }
.gallery-item-large { grid-row:span 2; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.gallery-item::after { content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,.02)); pointer-events:none; }

.about-contact { padding:36px 0 56px; }
.map-wrap { margin-bottom:40px; }
.two-col { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:44px; }
.info-block h2 { font-size:56px; line-height:1.05; margin:0 0 20px; font-weight:900; text-transform:uppercase; }
.info-block p { margin:0; color:rgba(255,255,255,.84); font-size:22px; line-height:1.7; max-width:95%; }
.info-block .btn { margin-top:28px; }
.form-wrap { margin-top:32px; padding:28px; border:1px solid rgba(215,38,31,.22); background:linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.015) 100%); box-shadow:0 18px 50px rgba(0,0,0,.28); }
.form-title { font-size:26px; font-weight:900; text-transform:uppercase; margin-bottom:16px; }
.quote-form { display:grid; gap:12px; }
.quote-form input, .quote-form textarea { width:100%; padding:16px; background:rgba(5,7,12,.96); border:1px solid rgba(255,255,255,.1); color:#fff; font-size:16px; transition:border-color .2s ease, box-shadow .2s ease; }
.quote-form input:focus, .quote-form textarea:focus { outline:none; border-color:rgba(215,38,31,.48); box-shadow:0 0 0 3px rgba(215,38,31,.12); }
.form-notice { margin-top:18px; padding:14px 16px; border-radius:8px; font-size:15px; line-height:1.5; }
.form-notice.success { background:rgba(28,140,74,.18); border:1px solid rgba(28,140,74,.45); }
.form-notice.error { background:rgba(183,18,18,.18); border:1px solid rgba(183,18,18,.45); }

.site-footer { border-top:1px solid rgba(215,38,31,.18); background:linear-gradient(180deg, rgba(2,6,14,.8) 0%, rgba(0,0,0,.92) 100%); padding:26px 0 10px; }
.footer-top { display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; padding-bottom:18px; }
.footer-brand { display:flex; align-items:center; gap:14px; }
.footer-brand img, .footer-brand .custom-logo { height:54px; width:auto; }
.footer-brand strong { font-size:26px; font-weight:800; }
.footer-nav ul, .footer-menu { margin:0; padding:0; list-style:none; display:flex; gap:28px; flex-wrap:wrap; font-weight:600; }
.footer-bottom { padding-top:14px; border-top:1px solid rgba(255,255,255,.06); display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; color:rgba(255,255,255,.72); font-size:15px; }

.floating-actions { position:fixed; right:20px; bottom:20px; z-index:999; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
.floating-call a, .floating-viber a { display:inline-flex; align-items:center; justify-content:center; min-width:220px; padding:16px 22px; border-radius:999px; font-weight:800; box-shadow:0 14px 32px rgba(0,0,0,.25); transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease; }
.floating-call a:hover, .floating-viber a:hover { transform:translateY(-2px) scale(1.02); box-shadow:0 18px 36px rgba(0,0,0,.32); }
.floating-call a { background:linear-gradient(180deg, #f03434 0%, #a80d0d 100%); }
.floating-viber a { background:linear-gradient(180deg, #7360f2 0%, #5037d6 100%); }

.page-default { padding:60px 0; min-height:60vh; }

@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1); } }
.reveal { opacity:0; transform:translateY(26px); transition:opacity .8s ease, transform .8s ease; will-change:opacity, transform; }
.reveal.is-visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; } .reveal-delay-2 { transition-delay:.25s; } .reveal-delay-3 { transition-delay:.4s; } .reveal-delay-4 { transition-delay:.55s; }

@media (max-width: 1100px) {
  .header-inner { min-height:88px; gap:20px; }
  .brand { max-width:420px; }
  .brand img, .custom-logo { height:62px; }
  .nav-menu { gap:22px; }
  .nav-menu a { font-size:15px; }
}
@media (max-width: 980px) {
  .hero-box { min-height:620px; }
  .hero-content { padding:60px 34px; }
  .hero-text { font-size:19px; }
  .trust-grid, .why-grid, .grid { grid-template-columns:1fr; }
  .company-trust-inner { grid-template-columns:1fr; }
  .company-trust-text { max-width:100%; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); grid-template-rows:220px 220px 220px; }
  .gallery-item-large { grid-row:span 1; grid-column:span 2; }
  .two-col { grid-template-columns:1fr; }
  .info-block h2 { font-size:42px; }
}
@media (max-width: 768px) {
  .container { width:min(100% - 28px, 1280px); }
  .header-inner { min-height:82px; padding:10px 0; flex-wrap:wrap; }
  .brand { max-width:280px; }
  .brand img, .custom-logo { height:48px; }
  .menu-toggle { display:inline-flex; }
  .main-nav { display:none; width:100%; flex-basis:100%; }
  .main-nav.is-open { display:block; }
  .nav-menu { flex-direction:column; align-items:flex-start; gap:12px; padding:14px 0 6px; }
  .hero-box { min-height:540px; background-position:center top !important; }
  .hero-content { padding:42px 22px; }
  .hero h1 { font-size:38px; line-height:1.02; }
  .hero-text { font-size:17px; }
  .hero-buttons { flex-direction:column; }
  .btn { width:100%; min-width:100%; }
  .section-title { font-size:28px; }
  .section-subtitle { font-size:16px; }
  .card-image { height:260px; }
  .gallery-grid { grid-template-columns:1fr; grid-template-rows:auto; }
  .gallery-item, .gallery-item-large { grid-column:auto; grid-row:auto; height:240px; }
  .company-trust-stats { grid-template-columns:1fr; }
  .floating-actions { left:10px; right:10px; bottom:10px; align-items:stretch; }
  .floating-call a, .floating-viber a { width:100%; min-width:100%; }
  .footer-brand { flex-direction:column; align-items:flex-start; }
}
@media (max-width: 480px) {
  .brand { max-width:220px; }
  .brand img, .custom-logo { height:42px; }
}

.premium-gallery {
  gap: 20px;
}

.premium-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 38, 31, 0.16);
  background: #0b0d12;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.premium-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.premium-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.28) 38%, rgba(0,0,0,0.05) 100%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.premium-item:hover .gallery-overlay {
  opacity: 0.92;
}

.gallery-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  transform: translateY(6px);
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.premium-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption strong {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.gallery-caption em {
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

@media (max-width: 768px) {
  .gallery-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .gallery-caption strong {
    font-size: 16px;
  }

  .gallery-caption em {
    font-size: 12px;
  }
}

