/* Bendri stiliai */
body {
  margin: 0;
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  background: #181b2c;
  color: #fff;
}

.section-bg {
  background: linear-gradient(120deg, #181b2c 0%, #3a2352 100%);
}

/* Navigacija */
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.3em 2em;
  background: #000000;
  color: white;
}

.logo {
  height: 72px;
  margin-right: 2em;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2em;
  justify-content: center;
  flex: 1;
  padding: 0;
  margin: 0;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-style: normal;
  font-size: 1.5em;
  transition: color 0.2s;
}

.navbar a:hover {
  color: #ffd600;
}

.header-actions {
  display: flex;
  gap: 1em;
  align-items: center;
  margin-left: 1.5em;
}

.header-btn {
  background: #000;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.15);
  text-decoration: none;
  border: none;
  outline: none;
}

.header-btn svg {
  fill: #fff;
  transition: fill 0.2s;
}

.header-btn:hover {
  background: #fff;
}

.header-btn:hover svg {
  fill: #000;
}

/* Hero sekcija */
.hero {
  position: relative;
  color: white;
  padding: 6em 2em;
  text-align: right;
  font-size: 2em;
  font-weight: bold;
  overflow: hidden;
  min-height: 350px;
  background: #181b2c;
  display: block;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Paslaugos */
.services {
  padding: 4em 1em 3em 1em;
  text-align: center;
}

.services h2 {
  color: #ffd600;
  text-align: center;
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 2em;
  letter-spacing: 1px;
}

.service-list-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2em;
  max-width: 1400px;
  margin: 0 auto 2em auto;
  flex-wrap: wrap;
}

.service-card {
  background: #23243a;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
  padding: 2em 1.5em 1.5em 1.5em;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 260px;
  min-height: 320px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.22);
}

.service-icon {
  font-size: 2.5em;
  margin-bottom: 1em;
  color: #ffd600;
  filter: drop-shadow(0 2px 8px #0003);
}

.service-card h3 {
  font-size: 1.15em;
  font-weight: 800;
  margin-bottom: 0.7em;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 1.05em;
  color: #e0e0e0;
  font-weight: 400;
  margin: 0;
}

.service-extra {
  margin: 2em auto 2em auto;
  max-width: 600px;
  color: #fff;
  background: none;
  text-align: center;
}

.service-extra h3 {
  font-size: 1.3em;
  font-weight: 800;
  margin-bottom: 0.5em;
  color: #ffd600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-extra p {
  font-size: 1.08em;
  color: #fff;
  margin: 0;
}

/* Prenumeratos pasiūlymas */
.subscription-offer {
  background: linear-gradient(120deg, #23243a 0%, #3a2352 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  max-width: 520px;
  margin: 3em auto 2em auto;
  padding: 2.5em 2em 2em 2em;
  text-align: center;
  color: #fff;
  border: 2px solid #ffd600;
  position: relative;
  overflow: hidden;
}

.subscription-icon {
  font-size: 3em;
  margin-bottom: 0.5em;
  display: flex;
  justify-content: center;
}

.subscription-offer h2 {
  font-size: 2em;
  font-weight: 900;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
  color: #ffd600;
}

.subscription-offer .highlight {
  color: #ffffff;
  background: #ffd600;
  border-radius: 8px;
  padding: 0 0.3em;
  font-weight: 900;
}

.subscription-lead {
  font-size: 1.15em;
  color: #fff;
  margin-bottom: 1.2em;
  font-weight: 500;
}

.subscription-offer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2em 0;
}

.subscription-offer ul li {
  background: rgba(255,255,255,0.06);
  margin: 0.5em 0;
  padding: 0.7em 1em;
  border-radius: 8px;
  font-size: 1.08em;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscription-offer ul li .white-text {
  color: #fff;
}

.subscription-cta {
  margin-top: 1.5em;
  font-size: 1.13em;
  color: #fff;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.329);
  padding: 1em 1.2em;
  border-radius: 12px;
  display: inline-block;
}

/* Video galerija */
.video-gallery {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
  margin: 2em auto;
  max-width: 900px;
  background: linear-gradient(120deg, #181b2c 0%, #3a2352 100%);
  padding: 2em 1em;
  border-radius: 24px;
}

.video-gallery iframe {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
  background: #23243a;
}

/* Kontaktai */
.contact {
  padding: 3em 1em;
  border-radius: 16px;
  max-width: 500px;
  margin: 3em auto 2em auto;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
  text-align: center;
  background: linear-gradient(120deg, #181b2c 0%, #3a2352 100%);
  border: 2px solid #23243a;
}

.contact h2 {
  font-size: 2em;
  margin-bottom: 1em;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 2em;
}

.contact label {
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.2em;
  color: #fff;
}

.contact input,
.contact textarea {
  padding: 0.7em 1em;
  border: 1px solid #ffd600;
  border-radius: 8px;
  font-size: 1em;
  font-family: 'Inter', sans-serif;
  background: #23243a;
  color: #fff;
  transition: border 0.2s;
}

.contact input:focus,
.contact textarea:focus {
  border: 1.5px solid #fff;
  outline: none;
}

.contact button {
  background: #fff;
  color: #23243a;
  border: none;
  border-radius: 8px;
  padding: 0.8em 0;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.contact button:hover {
  background: #ffd600;
  color: #23243a;
}

.contact-info {
  margin-top: 1.5em;
  font-size: 1.1em;
  color: #fff;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #ffd600;
}

/* Footer */
footer {
  text-align: center;
  padding: 1em;
  background: linear-gradient(120deg, #181b2c 0%, #3a2352 100%);
  color: #ffd600;
  border-top: 2px solid #23243a;
}

/* ----------- DUK (FAQ) ----------- */
.faq-section {
  max-width: 700px;
  margin: 3em auto 2em auto;
  padding: 2em 1em;
  border-radius: 16px;
  background: var(--section-bg, #23243a);
}

.faq-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  color: #23243a;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 44px 16px 18px;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  margin: 0;
  position: relative;
  color: #23243a;
  font-size: 1.08em;
  transition: background 0.2s, color 0.2s;
  outline: none;
  border: none;
  text-align: left;
  border-radius: 8px 8px 0 0;
  min-height: 48px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3em;
  color: #ffd600;
  transition: transform 0.2s;
}

.faq-item.open .faq-question {
  color: #ffd600;
  background: #23243a;
}

.faq-item.open .faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  display: none;
  margin: 0;
  padding: 0 18px 16px 18px;
  color: #444;
  animation: fadeIn 0.3s;
  font-size: 1em;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ----------- Responsive ----------- */
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 0.3em 2em 0.1em 2em;
    min-height: 36px;
  }
  .logo {
    display: block;
    margin: 0 auto 0.5em auto;
    float: none;
  }
  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    margin-bottom: 0.5em;
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .header-actions {
    margin-bottom: 0.5em;
  }
  .services {
    padding: 1em 0.5em 1em 0.5em;
  }
  .service-list-cards {
    flex-direction: column;
    gap: 1em;
    align-items: center;
  }
  .service-card {
    max-width: 85vw;
    min-width: 0;
    width: 85vw;
    margin: 0 auto;
    padding: 1em 0.7em 0.7em 0.7em;
    min-height: 110px;
    border-radius: 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .service-icon {
    font-size: 2em;
    margin-bottom: 0.5em;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .service-card h3 {
    font-size: 1em;
    margin-bottom: 0.4em;
    text-align: center;
    width: 100%;
  }
  .service-card p {
    font-size: 0.98em;
    text-align: center;
    width: 100%;
  }
  .contact {
    padding: 1.5em 0.5em;
    border-radius: 8px;
    margin: 1.5em 0 1em 0;
  }
  .subscription-offer {
    padding: 1.5em 0.5em 1em 0.5em;
    border-radius: 12px;
  }
  .video-gallery {
    padding: 1em 0.2em;
    border-radius: 16px;
  }
  .faq-section {
    padding: 1em 0.2em;
    margin: 1em 0;
    border-radius: 0;
  }
  .faq-question {
    font-size: 1em;
    padding: 14px 38px 14px 12px;
    min-height: 44px;
  }
  .faq-answer {
    padding: 0 12px 14px 12px;
    font-size: 0.98em;
  }
}

/* ----------- Tik telefonui: HERO ----------- */
@media (max-width: 600px) {
  .hero {
    padding: 0;
    min-height: 100vw;
    height: 100vw;
    max-height: 120vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    font-size: 1em;
    background: #181b2c;
    overflow: hidden;
  }
  .hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100vw;
    height: 100vw;
    min-height: 320px;
    max-height: 120vw;
    object-fit: cover;
    z-index: 0;
    border-radius: 0;
  }
  .hero h1 {
    position: relative;
    z-index: 1;
    font-size: 2em;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0 10px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    background: none;
    border-radius: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
/* Reels galerija */
.reels-gallery {
  display: flex;
  flex-direction: row;
  gap: 1.5em;
  justify-content: center;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.reel {
  aspect-ratio: 9/16;
  width: 280px;
  max-width: 100vw;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
  background: #23243a;
  min-width: 180px;
  min-height: 320px;
}

/* Responsive: telefonui rodyti stulpeliu */
@media (max-width: 700px) {
  .reels-gallery {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
  .reel {
    width: 90vw;
    min-width: 0;
    min-height: 320px;
    max-width: 360px;
  }
}
