
:root {
  --bg-base: #0B0B0B;
  --bg-surface: #121212;
  --bg-card: #181818;
  --red: #B11226;
  --red-bright: #D4182E;
  --green: #00A86B;
  --text-primary: #FFFFFF;
  --text-secondary: #BFBFBF;
  --text-muted: #6B6B6B;
  --border: rgba(255,255,255,0.07);
  --border-red: rgba(177,18,38,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
}

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* SCAN LINE */
body::after {
  content: '';
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(177,18,38,0.15), rgba(0,168,107,0.08), transparent);
  animation: scanline 8s linear infinite;
  pointer-events: none;
  z-index: 999;
}

@keyframes scanline {
  0% { top: -2px; }
  100% { top: 100%; }
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  position: relative;
}

.logo-icon svg { width: 100%; height: 100%; }

.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover { background: var(--red-bright) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(11,11,11,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 899;
  padding: 20px 40px;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: #fff; }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(177,18,38,0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(11,11,11,0.4) 0%, rgba(11,11,11,0.7) 60%, var(--bg-base) 100%);
  z-index: 1;
}

/* GRID LINES */
.grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.grid-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(177,18,38,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(177,18,38,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(177,18,38,0.1);
  border: 1px solid rgba(177,18,38,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #E05060;
  animation: fadeInDown 0.8s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
  50% { opacity: 0.6; box-shadow: 0 0 14px var(--green); }
}

.hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(40px, 7vw, 82px);
  font-weight: 700;
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
  position: relative;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--red);
  position: relative;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeInUp 0.8s 0.35s ease both;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(177,18,38,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.8s 0.65s ease both;
}

.stat-item {}

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* CROSSHAIR DECORATION */
.crosshair {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  z-index: 2;
  opacity: 0.15;
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SECTION BASE */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 60px;
}

/* HOW IT WORKS */
.how-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 100%;
  padding: 100px 0;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(33.333% + 20px);
  right: calc(33.333% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(177,18,38,0.2));
  z-index: 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 44px 36px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
  border-color: rgba(177,18,38,0.3);
  transform: translateY(-4px);
}

.step-card:first-child { border-radius: 8px 0 0 8px; }
.step-card:last-child { border-radius: 0 8px 8px 0; }

.step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(177,18,38,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.service-card:hover {
  border-color: rgba(177,18,38,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.service-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  filter: brightness(0.7);
}

.service-card:hover .service-thumb img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.service-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,11,0.8) 100%);
}

.service-play {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: rgba(177,18,38,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .service-play { opacity: 1; }

.service-body {
  padding: 24px;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-learn {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ABOUT ME */
.about-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 100%;
  padding: 100px 0;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.85) contrast(1.1);
}

.about-photo-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(177,18,38,0.2);
  border-radius: 12px;
  pointer-events: none;
}

.about-photo-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.about-content {}

.about-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-title {
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
}

.about-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.cert-icon {
  width: 32px;
  height: 32px;
  background: rgba(177,18,38,0.1);
  border: 1px solid rgba(177,18,38,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.4s, filter 0.4s;
  filter: brightness(0.75);
}

.gallery-item:first-child img { min-height: 400px; }

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(177,18,38,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay { background: rgba(177,18,38,0.15); }

.gallery-zoom {
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-zoom { opacity: 1; }

/* EQUIPMENT */
.equipment-section {
  background: var(--bg-surface);
  max-width: 100%;
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.equipment-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.equip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s;
}

.equip-card:hover {
  border-color: rgba(177,18,38,0.3);
  transform: translateY(-3px);
}

.equip-icon { font-size: 36px; margin-bottom: 16px; }

.equip-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.equip-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.equip-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.equip-spec {
  background: rgba(177,18,38,0.08);
  border: 1px solid rgba(177,18,38,0.15);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: #E05060;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* VIDEO SECTION */
.video-section {
  max-width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.video-full {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  opacity: 0.4;
  display: block;
}

.video-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-base) 0%, transparent 20%, transparent 80%, var(--bg-base) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  padding: 40px;
}

.video-full-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  max-width: 700px;
  line-height: 1.1;
}

/* COVERAGE MAP */
.coverage-section { }

.coverage-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}



.coverage-map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url("https://suraskgyvuna.lt/medziaga/zemelapis.jpg"); 
  background-size: cover;       
  background-position: center;   
  background-repeat: no-repeat;  /* neleidžia kartotis */
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.coverage-map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* reguliuok 0.3–0.7 */
  z-index: 1;
}

.map-pulse {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(177,18,38,0.1);
  border: 2px solid rgba(177,18,38,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
}

.map-pulse::before, .map-pulse::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(177,18,38,0.2);
  animation: ripple 3s infinite;
}

.map-pulse::before { width: 120px; height: 120px; }
.map-pulse::after { width: 160px; height: 160px; animation-delay: 0.5s; }

@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.map-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.coverage-features { display: flex; flex-direction: column; gap: 20px; }

.coverage-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.3s;
}

.coverage-item:hover { border-color: rgba(177,18,38,0.3); }

.cov-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cov-text h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cov-text p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--bg-surface);
  max-width: 100%;
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(177,18,38,0.25);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: '"';
  font-family: 'Rajdhani', sans-serif;
  font-size: 80px;
  color: rgba(177,18,38,0.12);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.stars {
  color: #F59E0B;
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block; 
}

/* Bendras rėmelis gyvūnui */
.testimonial-animal {
  width: 100%;             /* užpildo kortelės plotį */
  max-width: 200px;        /* maksimalus plotis – gali koreguoti */
  height: 350px;           /* fiksuotas aukštis, kad visi būtų vienodi */
  margin: 0 auto 12px;     /* centras horizontaliai ir tarpas žemyn */
  border-radius: 12px;   
  overflow: hidden;        
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Paveikslėlis viduje */
.testimonial-animal img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* prisitaiko prie rėmelio, pilnai užpildo */
  display: block;
  border-radius: inherit;  /* paveldi rėmelio kampus */
}

.testimonial-article a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff0e8;
  color: #c0392b; /* var(--red) */
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #f5c4b3;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
  margin-bottom: 12px;
}
.testimonial-article a:hover {
  background: #ffe0cc;
  border-color: #e8a090;
}
.article-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #c0392b; /* var(--red) */
  border-radius: 6px;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  margin-bottom: 4px;
}

.testimonial-loc {
  font-size: 12px;
  color: var(--text-muted);
}

/* PRICING */
.pricing-section {}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(177,18,38,0.5);
  background: linear-gradient(180deg, rgba(177,18,38,0.05) 0%, var(--bg-card) 50%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 22px;
  color: var(--text-secondary);
}

.pricing-note {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card:hover:not(.featured) {
  border-color: rgba(177,18,38,0.25);
  transform: translateY(-3px);
}

/* FAQ */
.faq-section {}

.faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(177,18,38,0.3); }

.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
  user-select: none;
}

.faq-question:hover { color: var(--text-primary); }

.faq-item.open .faq-question { color: #fff; }

.faq-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.faq-answer-inner .highlight {
  color: var(--green);
  font-weight: 700;
}

.faq-answer-inner ul {
  margin-top: 12px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* CONTACT */
.contact-section {
  background: var(--bg-surface);
  max-width: 100%;
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { }

.contact-info h2 { margin-bottom: 16px; }

.contact-info .section-desc { margin-bottom: 40px; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

.contact-method:hover { border-color: rgba(177,18,38,0.4); transform: translateX(4px); }

.method-icon {
  width: 48px;
  height: 48px;
  background: rgba(177,18,38,0.1);
  border: 1px solid rgba(177,18,38,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.method-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.method-value {
  font-weight: 700;
  font-size: 16px;
}

.contact-form { }

.contact-form h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(177,18,38,0.5);
}

.form-group textarea { resize: none; }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* CTA BANNER */
.cta-banner {
  background: var(--red);
  max-width: 100%;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-banner h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 36px;
  position: relative;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  border: none;
  cursor: pointer;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* FOOTER */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.footer-logo-text span { color: var(--red); }

.footer-tagline {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.2s;
}

.social-link:hover {
  border-color: rgba(177,18,38,0.4);
  color: var(--red);
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-secondary); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--text-secondary); }

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease both;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: auto;
  height: 48px;
  padding: 0 20px;
  background: #1a0508 !important;
  border: 2px solid #b11226 !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #ff3350 !important;
  z-index: 999;
  transition: all 0.2s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px #b11226, 0 4px 16px rgba(177, 18, 38, 0.3) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.modal-close:hover {
  background: #2a0810 !important;
  border-color: #ff3350 !important;
  color: #ff6070 !important;
  box-shadow: 0 0 0 1px #ff3350, 0 4px 24px rgba(255, 51, 80, 0.4) !important;
}

.modal-media {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.modal-media video,
.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body { padding: 36px; }

.modal-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.modal-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.modal-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.modal-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.modal-photo {
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.modal-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.3s;
}

.modal-photo:hover img { filter: brightness(1.1); }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(177,18,38,0.6); }

/* TRUST BAR */
.trust-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}

.trust-icon {
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 70px 20px; }

  .hero-content { padding: 100px 20px 60px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .crosshair { display: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .step-card { border-radius: 8px !important; }

  .services-grid { grid-template-columns: 1fr; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: 1 / 3;
  }

  .equipment-inner { padding: 0 20px; }
  .equipment-grid { grid-template-columns: 1fr; }

  .testimonials-inner { padding: 0 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .pricing-cards { grid-template-columns: 1fr; }

  .coverage-wrap { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  footer { padding: 50px 20px 24px; }

  .how-inner { padding: 0 20px; }

  .trust-bar { padding: 20px; }

  .modal-body { padding: 24px; }
  .modal-photos { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-cta-row { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .hero-stats { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; }
}
/* pagal nutylėjimą rodom desktop */
.video-mobile {
  display: none;
}

/* mobile */
@media (max-width: 768px) {
  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
  }
}
