/* Clean dark textured background with subtle moving diagonal stripes */
body {
  background-color: #0a0a0a;
  background-image: 
    repeating-linear-gradient(
      45deg,
      rgba(0, 255, 204, 0.05) 0,
      rgba(0, 255, 204, 0.05) 1px,
      transparent 1px,
      transparent 20px
    ),
    repeating-linear-gradient(
      135deg,
      rgba(0, 255, 204, 0.05) 0,
      rgba(0, 255, 204, 0.05) 1px,
      transparent 1px,
      transparent 20px
    ),
    radial-gradient(ellipse at center, rgba(0,0,0,0.7), #0a0a0a 70%);
  background-size: 40px 40px, 40px 40px, cover;
  animation: stripesMove 60s linear infinite;
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

@keyframes stripesMove {
  0% {
    background-position: 0 0, 0 0, center;
  }
  100% {
    background-position: 40px 40px, 40px 40px, center;
  }
}

/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: #00ffcc;
  text-decoration: none;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}
a:hover,
a:focus {
  color: #33ffde;
  outline: none;
  box-shadow: 0 0 8px #00ffccaa;
}

/* Containers */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background-color: #181818cc;
  padding: 1.75rem 0;
  box-shadow: 0 2px 10px rgba(0, 255, 204, 0.15);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header__title {
  font-weight: 700;
  font-size: 2rem;
  color: #00ffcc;
  letter-spacing: 1px;
}
.nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav__link {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav__link:hover,
.nav__link:focus {
  background-color: #00ffcc;
  color: #121212;
  box-shadow: 0 0 8px #00ffccaa;
}
.nav__link--highlight {
  background-color: #00ffcc;
  color: #121212;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
}
.nav__link--highlight:hover,
.nav__link--highlight:focus {
  background-color: #33ffde;
}

/* Sections */
.section {
  padding: 3rem 0;
  border-bottom: 1px solid #222;
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
}
.section:nth-child(2) { animation-delay: 0.3s; }
.section:nth-child(3) { animation-delay: 0.4s; }
.section:nth-child(4) { animation-delay: 0.5s; }
.section:nth-child(5) { animation-delay: 0.6s; }
.section:nth-child(6) { animation-delay: 0.7s; }

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

.section__title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
  color: #00ffcc;
}
.section__text {
  max-width: 720px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 1.125rem;
  text-align: center;
  color: #ccc;
}

/* About section layout */
.about__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.about__photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 15px #00ffccaa;
  border: 3px solid #00ffcc;
}
.about__text {
  max-width: 600px;
}

/* For larger screens: side by side */
@media (min-width: 768px) {
  .about__container {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 3rem;
  }
  .about__text {
    flex: 1;
  }
  .about__photo {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
  }
}

/* Services */
.services__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}
.service {
  background-color: #1f1f1f;
  padding: 1.5rem 1.25rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 255, 204, 0.15);
  transition: transform 0.3s ease;
}
.service:hover,
.service:focus-within {
  transform: translateY(-5px);
}
.service__title {
  color: #00ffcc;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
}
.service__description {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.4;
}

/* Portfolio */
.portfolio__videos {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 720px;
  margin: 2rem auto 0;
}
.portfolio__video {
  width: 100%;
  border-radius: 8px; 
  box-shadow: 0 6px 15px rgba(0, 255, 204, 0.2);
  outline: none;
}
.portfolio__video:focus {
  box-shadow: 0 0 0 3px #00ffcc;
}

/* Reviews */
.reviews__list {
  max-width: 720px;
  margin: 1rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.review {
  background-color: #1f1f1f;
  padding: 1rem 1.25rem;
  border-left: 5px solid #00ffcc;
  border-radius: 5px;
  font-style: italic;
  color: #ddd;
  box-shadow: 0 2px 8px rgba(0, 255, 204, 0.1);
}

/* Contact */
.contact__form {
  max-width: 480px;
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__form input,
.contact__form textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  background-color: #292929;
  color: #eee;
  resize: vertical;
  transition: box-shadow 0.3s ease;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  box-shadow: 0 0 6px #00ffcc;
}
.btn {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: none;
  transition: background-color 0.3s ease;
}
.btn--primary {
  background-color: #00ffcc;
  color: #121212;
}
.btn--primary:hover,
.btn--primary:focus {
  background-color: #33ffde;
  box-shadow: 0 0 8px #00ffccaa;
}
.contact__alt {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #999;
}
.link-highlight {
  color: #00ffcc;
  font-weight: 600;
}
.link-highlight:hover,
.link-highlight:focus {
  color: #33ffde;
  box-shadow: 0 0 8px #00ffccaa;
}

/* Payment */
.payment .section__text {
  margin-bottom: 1rem;
  text-align: center;
}

/* Footer */
.footer {
  padding: 1.5rem 0;
  background-color: #181818;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .header__container {
    flex-direction: column;
    gap: 0.75rem;
  }
  .nav__list {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .section__title {
    font-size: 1.75rem;
  }
  .service__title {
    font-size: 1.1rem;
  }
}

.see-more-container {
  text-align: center;
  margin-top: 20px;
}
.more-videos {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 
    max-height 0.6s ease, 
    opacity 0.6s ease,
    transform 0.6s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: center;
  transform: translateY(-20px);
}

.more-videos.show {
  max-height: 1112000px; /* enough to show all videos */
  opacity: 1;
  transform: translateY(0);
}


.see-more-button {
  background-color: #ffcc00;
  color: #000;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.see-more-button:hover {
  background-color: #ffaa00;
}

.see-less-button {
  background-color: #ffcc00;
  color: #000;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin: 10px;
  transition: background-color 0.3s ease;
  border: none;
}

.see-less-button:hover {
  background-color: #ffaa00;
}

.see-more-button,
.see-less-button {
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.see-more-button:hover,
.see-less-button:hover {
  transform: scale(1.05);
}