html, body {
  overflow-x: hidden;
  background: #000;
}


.hero {
  height: 90vh;
  background: url("/static/images/TXnaON_Y.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px; /* 👈 controls how SMALL the fade is */
  background: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6); /* transparent black box */
  border: 0.5px solid #000;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-family: Electrolize, serif;
}

.hero-text p {
  font-family: Montserrat, sans-serif;
  font-size: 1.3rem;
}

.hero-text.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Tekst stagger */
.hero-text h1,
.hero-text p,
.hero-text .cta-button {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-text.visible h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-text.visible p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.hero-text.visible .cta-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.scroll-hint{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);

  display:flex;
  flex-direction:column;
  align-items:center;

  font-family:Montserrat,sans-serif;
  font-size:0.9rem;
  color:#ddd;
  letter-spacing:1px;
}

.scroll-arrow{
  width:18px;
  height:18px;
  border-right:2px solid #ddd;
  border-bottom:2px solid #ddd;
  transform:rotate(45deg);
  margin-top:8px;

  animation:scrollBounce 1.6s infinite;
}

@keyframes scrollBounce{
  0%,100%{transform:translateY(0) rotate(45deg);}
  50%{transform:translateY(6px) rotate(45deg);}
}

.about-button {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: white;
  color: black;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  transition: background 0.3s ease, transform 0.2s ease;
}

.about-button:hover { background: lightgray; }

.cta-button {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: white;
  color: black;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.cta-button:hover { background: lightgray; }


.section-divider {
  width: 100%;
  height: 25px; /* adjust height */
  background: #000;
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
}

.section-divider-complex {
  position: relative;
  height: 100px; /* space between sections */
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.section-divider-complex::before,
.section-divider-complex::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #0ea5e9, transparent);
  box-shadow: 0 0 10px #0ea5e9, 0 0 20px #0ea5e9;
}

/* top line */
.section-divider-complex::before {
  top: 0;
}

/* bottom line */
.section-divider-complex::after {
  bottom: 0;
}

/* extra inner decorative lines */
.section-divider-complex span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #0ea5e9, transparent);
  opacity: 0.6;
}

.section-divider-complex span:first-child {
  top: 25px;
}

.section-divider-complex span:last-child {
  bottom: 25px;
}

.section-divider-single {
  position: relative;
  height: 2px;
}

.section-divider-single::after {
  content: "";
  position: absolute;
  top: 50%;               /* center vertically in divider space */
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #F894E9, transparent);
  transform: translateY(-50%);
  box-shadow: 0 0 6px #F894E9;
}

@keyframes softFlicker {
  0%, 100% {
    opacity: 0.8;
    box-shadow: 0 0 6px rgba(248,148,233,0.5);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(248,148,233,0.9);
  }
}

.section-divider-single::after {
  animation: softFlicker 3.5s ease-in-out infinite;
}


.section-divider-single-blue {
  position: relative;
  height: 2px;
}

.section-divider-single-blue::after {
  content: "";
  position: absolute;
  top: 50%;               /* center vertically in divider space */
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #0ea5e9, transparent);
  transform: translateY(-50%);
  box-shadow: 0 0 6px #0ea5e9;
}

@keyframes softFlickerBlue {
  0%, 100% {
    opacity: 0.8;
    box-shadow: 0 0 6px rgba(14,165,233,0.5);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(14,165,233,0.9);
  }
}

.section-divider-single-blue::after {
  animation: softFlickerBlue 3.5s ease-in-out infinite;
}

/* Divider with centered title */
.divider-with-title {
  position: relative;
  display: flex;
  align-items: center;
  height: 120px;
  margin-left: 70px;
  justify-content: center;
}

.divider-with-title h3 {
  position: relative;
  font-family: Electrolize, sans-serif;
  z-index: 2;
  background: black; /* same as section background */
  padding: 0 2rem;
  font-size: 2.4rem;
  color: white;
  margin: 0;
}


.section-divider-single-black {
  position: relative;
  height: 2px;
}

.section-divider-single-black::after {
  content: "";
  position: absolute;
  top: 50%;               /* center vertically in divider space */
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, black, transparent);
  transform: translateY(-50%);
  box-shadow: 0 0 6px black;
}

section {
  position: relative;
  width: 100%;
  z-index: 1;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to top, rgba(0,0,0,0) 0%, #000 100%);
  z-index: 5;
  pointer-events: none;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  background: black;
}

/* Left text block */
.about-text {
  background: black;
  padding: 6rem 3rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-text p {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1s ease, transform 1s ease;
}

.about-text.visible p {
  opacity: 1;
  transform: translateX(0);
}

.about-button {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-text.visible .about-button {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.about-text h2 {
  font-family: "Electrolize", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-family: Montserrat, sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
}

.about-image {
  background-image:
    linear-gradient(
      to right,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.8) 8%,
      rgba(0,0,0,0.4) 16%,
      rgba(0,0,0,0) 25%
    ),
    url("/static/images/IMG_5796.JPG");
  background-size: cover, cover;
  background-position: left center, center;
  animation: fadeDrift 18s ease-in-out infinite;
}

@keyframes fadeDrift {
  0%   { background-position: left center, center; }
  50%  { background-position: 10% center, center; }
  100% { background-position: left center, center; }
}

.about::before {
  display: none;
}

.packages-link {
  text-decoration: none;
  font-family: Electrolize, sans-serif;
  color: white;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.2s ease;
}

.packages-link:hover {
  color: #F894E9;
  text-shadow: 0 0 10px rgba(248,148,233,0.6);
  transform: translateY(-2px);
}

.services {
  padding: 6rem 2rem 4rem;
  color: #fff;
background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
    url("/static/images/P2n9odiw.jpeg") center/cover no-repeat;
  position: relative;
  min-height: 80vh;
  z-index: 1;
  margin-bottom: 0;
}

.services h2 {
  color: white;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 3rem;
}

/* --- TEENUSED REAS --- */
.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  max-width: 1800px;
  gap: 2rem;
  margin: 0 auto;
  position: relative;
  justify-content: center;
  transform: translateX(-30px);
}

/* INITIAL STATE */
.service-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ACTIVE STATE */
.service-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- TEENUSED --- */
.service-item {
  flex: 1 1 20%;
  padding-bottom: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
  min-height: 60px;
}



@media (max-width: 1200px) {
  .service-row {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 2rem;
  }

  .service-item {
    width: 100%;
    max-width: 500px;
    flex: none;
    padding: 1.5rem 0;
  }
}

/* Medium screens: tone down first row sizing */
@media (min-width: 769px) and (max-width: 1400px) {
  .service-row {
    gap: 1.2rem;
  }
  .service-item {
    flex: 1 1 18%;
    min-width: 160px;
  }
  .service-header h3 {
    font-size: 1.15rem;
  }
  .service-row .service-item:nth-last-child(-n+3) h3 {
    font-size: 1.4rem;
  }
  .service-list li,
  .service-fit li {
    font-size: 1rem;
  }
}

.service-header h3 {
  font-family: "Electrolize", sans-serif;
  color: white;
  letter-spacing: 1px;
  font-size: 1.5rem;
  margin: 0;
}

.toggle-btn {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}
.toggle-btn:hover {
  color: white;
}
.service-item.active .toggle-btn {
  transform: rotate(45deg);
}

/* ===================== */
/* AVATUD PAKETI KAST */
/* ===================== */

.service-item {
  padding: 1rem;
  border-radius: 20px;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease;
}

.service-item.active {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
box-shadow:
  0 8px 30px rgba(0,0,0,0.6),
  0 0 0 1px rgba(255,255,255,0.15),
  inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-4px);
}


.service-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    opacity 0.25s ease;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ddd;
}


.service-item.active .service-details {
  max-height: 1000px;
  opacity: 1;
}


.service-list,
.service-fit {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.service-list li,
.service-fit li {
  font-family: Montserrat, sans-serif;
  font-size: 1.3rem;
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.6rem;
  color: #ddd;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
}

.service-fit-title {
  margin-top: 1.5rem;
  font-weight: 600;
  color: white;
}

/* ============================= */
/* AINULT VIIMASED 3 KESKELE */
/* ============================= */

/* 5., 6. ja 7. kaart */
.service-row .service-item:nth-last-child(-n+3) .service-header {
  justify-content: center;
  text-align: center;
  position: relative;
}

.service-row .service-item:nth-last-child(-n+3) h3 {
  font-size: 2rem;
}

.service-row .service-item:nth-last-child(-n+3) .toggle-btn {
  position: absolute;
  right: 0;
}

.service-row .service-item:nth-last-child(-n+3) .service-list li::before {
  display: none;
}

.service-row .service-item:nth-last-child(-n+3) .service-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.service-row .service-item:nth-last-child(-n+3) .service-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-left: 0;
}

/* Checkmark joondus */
.service-row .service-item:nth-last-child(-n+3) .service-list li::before {
  position: static;
  width: 20px;
  text-align: center;
}

.service-row .service-item:nth-last-child(-n+3) .service-list li::after {
  content: "✓";
  position: absolute;
  font-weight: bold;
  left: 50%;
  transform: translateX(-170px); /* reguleeri */
}

/* ========================= */
/* PAKETTIDE CTA SEKTSIOON */
/* ========================= */

.packages-cta {
  text-align: center;
  padding: 1rem 2rem 6rem;
  background: #000;
  color: white;
}

.packages-cta h2 {
  font-family: Electrolize, sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.packages-cta p {
  font-family: Montserrat, sans-serif;
  font-size: 1.4rem;
  color: #aaa;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.packages-cta-btn {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  padding: 18px 40px;
  background: #e5e5e5;
  color: black;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.packages-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.15);
}

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- SEKTSIOONIDE ÜHENDUS --- */
.services + .how-it-works {
  margin-top: 0;
  padding-top: 0;
  background: linear-gradient(to bottom, #050505, #000);
}

/* HOW IT WORKS */
.how-it-works {
  background: black;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
}

.how-it-works h2 {
  color: white;
  font-family: Electrolize, sans-serif;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(248, 148, 233,0.2);
  border-radius: 12px;
  padding: 1.5rem;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(248, 148, 233,0.2);
}
.step .number {
  display: inline-block;
  background: white;
  color: black;
  font-weight: bold;
  font-size: 1.4rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 1rem;
}
.step p {
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  color: lightgray;
}

/* Klikitav samm */
.step.clickable {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.step.clickable:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(248, 148, 233,0.2);
}

/* ========================= */
/* TESTIMONIALS SECTION */
/* ========================= */

.testimonials {
  position: relative;
  width: 100%;
  padding: 0.05rem 2rem 0.05rem;
  text-align: center;
  color: #fff;
  background:
  linear-gradient(
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.2)
  ),
  url("/static/images/fF33eMBQ.jpeg") center/cover no-repeat;
}
.testimonial p {
  font-size: 1.3rem;
  line-height: 1.9;
  letter-spacing: 0.3px;
  color: #e8e8e8;
}


/* Header */
.testimonials-header-box {
  display: inline-block;
  padding: 14px 28px;
  margin-bottom: 4rem;
  border: 1px solid rgba(14,165,233,0.9);
  box-shadow:
    0 0 0 1px rgba(14,165,233,0.35),
    0 0 12px rgba(14,165,233,0.6);
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
}

.testimonials-header-box h2 {
  margin: 0;
  font-size: 2.4rem;
}

/* GRID 2 VEERGU */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 120px;
  max-width: 1400px;
  margin: 80px auto;
  transform: translateX(-60px);
}

/* CARD */
.testimonial {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  border-radius: 18px;

  font-family: Montserrat,sans-serif;

  padding: 20px 40px;

  box-shadow:
    0 0 18px rgba(0, 255, 153, 0.18);
  width: 100%;

  /* Fade */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Fade suunad */
.testimonial.from-left {
  transform: translateY(40px) translateX(-40px);
}

.testimonial.from-right {
  transform: translateY(40px) translateX(40px);
}

.testimonial.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Hover efekt tagasi */
.testimonial:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.7),
    0 0 18px rgba(14,165,233,0.35);
}

/* nimi */
.testimonial span {
  display: block;
  margin-top: 18px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #00c9ff;
}

.testimonial:hover span {
  color: #F894E9;
}

/* Responsive */
@media (max-width:1500px) {
  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
    max-width: 95%;
    transform: translateX(0);
    margin: 50px auto;
  }
  .testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .testimonial {
    padding: 16px 24px;
  }
}

@media (max-width:900px) {
  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    max-width: 98%;
  }
  .testimonial p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .testimonial {
    padding: 12px 16px;
  }
}

/* Fade-in CTA */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-contact {
  background: black;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: Electrolize, sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: 15px;
}

.cta-content p {
  font-family: Montserrat, sans-serif;
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 25px;
}

/* CTA SOCIAL ICONS */
.cta-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 28px;
}

.cta-socials a {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;


  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-socials a img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-socials a img:hover {
  transform: translateY(-4px) scale(1.05);
}

.footer {
  padding: 2rem;
  font-family: Montserrat, sans-serif;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  color: #aaa;
  font-size: 1rem;
}
.footer a { color: #00aaff; }

.section-parallax {
  position: relative;
  will-change: transform;
}

.testimonials,
.how-it-works {
  background-attachment: fixed;
}

/* ===================== */
/* TATTOO HITBOX */
/* ===================== */

.about-image {
  position: relative;
}

/* Väike klikitav ala tätoveeringu kohal */
.tattoo-hitbox {
  position: absolute;

  /* Kohanda vastavalt pildile */
  left: 28%;
  top: 45%;
  width: 50px;
  height: 50px;

  cursor: pointer;
  z-index: 5;
}

/* ========================= */
/* KAUBOI MÜTS */
/* ========================= */

.cowboy-hat {
  position: absolute;

  /* Kohanda vastavalt pildile */
  top: 2%;
  left: 38%;

  width: 220px;

  pointer-events: none;
  z-index: 10;

  opacity: 0;
  transform: translateY(-120px) rotate(-8deg) scale(0.9);
}

/* Fade + bounce */
.cowboy-hat.visible {
  animation: hatDrop 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes hatDrop {
  0% {
    opacity: 0;
    transform: translateY(-150px) rotate(-8deg) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(10px) rotate(-4deg) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-6deg) scale(1);
  }
}

  .about-mobile-image {
  display: none; /* desktopis peidus */
}

/* ================================= */
/* ========== MOBILE FIX =========== */
/* ================================= */

@media (max-width: 768px) {

  html, body {
  overflow-x: hidden;
}

  /* Hero sektsioon veidi madalamaks */
  .hero {
    min-height: 100svh;
background:
  linear-gradient(
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.25)
  ),
  url("/static/images/IMG_7463.JPG") center/cover no-repeat;
  }

  /* Hero tekstikast väiksemaks */
  .hero-text {
    background: rgba(0, 0, 0, 0.7);
    margin-top: 90px;
    max-width: 85%;
    padding: 1.1rem 1.2rem;
    border-radius: 10px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 0.9rem;
  }
  .scroll-hint{
    margin-top:20px;
    font-size:0.85rem;
  }

  .scroll-arrow{
    width:20px;
    height:20px;
  }

  .cta-button {
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
  }

  /* ABOUT SECTION */

  .about-image {
    display: none;
  }

  /* Uus pilt Minust all */
  .about-mobile-image {
    display: block;
    width: 100%;
    min-height: 400px;

    background-image:
      linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2)
      ),
      url("/static/images/IMG_5796.JPG");

    background-size: cover;
    background-position: center;

    border-radius: 14px;
    margin: 20px 0 25px;

    box-shadow:
      0 12px 30px rgba(0,0,0,0.6),
      0 0 0 1px rgba(255,255,255,0.1);
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-text {
    padding: 3rem 1.5rem;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-text p {
    font-size: 1.05rem;
  }

  .about-button {
    font-size: 0.95rem;
  }

  /* SERVICES */
.service-row .service-item:nth-last-child(-n+3) h3 {
    font-size: 1.1rem;
  }

  .service-row .service-item:nth-last-child(-n+3) .service-list {
    display: block;
    align-items: normal;
    gap: 0;
  }

  .service-row .service-item:nth-last-child(-n+3) .service-list li {
    display: block;
    justify-content: normal;
    padding-left: 26px;
    position: relative;
  }

  .service-row .service-item:nth-last-child(-n+3) .service-list li::after {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 0.95rem;
    color: white;
    transform: none;
  }
  .services {
  background:
  radial-gradient(
    circle at 85% 50%,
    rgba(248,148,233,0.35),
    rgba(248,148,233,0.15) 25%,
    transparent 50%
  ),
  radial-gradient(
    circle at 15% 25%,
    rgba(217,130,59,0.25),
    transparent 45%
  ),
  linear-gradient(
    to bottom,
    #0a0503 0%,
    #000000 70%
  );
  }

  .services::before {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      transparent 30%,
      rgba(217,130,59,0.25) 45%,
      transparent 60%
    ),
    linear-gradient(
      135deg,
      transparent 55%,
      rgba(217,130,59,0.18) 68%,
      transparent 80%
    );

  filter: blur(18px);
  opacity: 0.55;
}

.services {
    padding: 4rem 1rem;
  min-height: 1700px;
  }

.service-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    transform: translateX(-10px);
  }

  .service-item {
    width: 80%;
    max-width: 80%;
    translateY(4px);
  }

  .service-item {
    padding: 0.7rem;
    border-radius: 14px;
  }

  .service-header h3 {
    transform: translateX(-10px);
    font-size: 1.05rem;
  }

  .service-list li {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .service-details {
    margin-top: 0.4rem;
  }

  .service-item.active{
  position: relative;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
}

  .service-item.active::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:14px;
  padding:2px;

  background: linear-gradient(
    to right,
    transparent,
    #F894E9,
    transparent
  );

  box-shadow: 0 0 6px #D9823B;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;
  mask-composite:exclude;

  animation:softFlicker 3.5s ease-in-out infinite;

  pointer-events:none;
}

  .service-item.active .service-details {
  max-height: 1000px;
}

  /* CTA */

  .packages-cta-content{
  width:80%;
  padding:0 16px;
    transform: translateX(-10px);
    margin-bottom: 1px;
}

.packages-cta-btn{
  display:inline-block;
  max-width:100%;
  box-sizing:border-box;
}
  .packages-cta h2 {
    font-size: 2rem;
  }

  .packages-cta p {
    font-size: 1.05rem;

  }

  .packages-cta h2,
  .packages-cta p,
  .packages-cta-btn{
    transform:none;
    margin-left:0;
  }

  /* HOW IT WORKS */
  .how-it-works h2 {
    transform: translateX(-30px);
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    transform: translateX(-30px);
    width: 80%;
    max-width: 400px;
    padding: 1rem;
    border-radius: 8px;
  }

  .step .number {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 1.1rem;
  }

  .step p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .testimonials {
  background:
  linear-gradient(
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.25)
  ),
  url("/static/images/IMG_5800.JPG") center/cover no-repeat;
    min-height: 350px;
}

  .testimonials{
    overflow:hidden;
    padding:15px 0;
  }

  .testimonials-track{
    display:flex;
    gap:20px;

    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;

    padding: 0 calc(50% - 43vw);
  }

  .testimonials-track::-webkit-scrollbar{
    display:none;
  }

  .testimonial{
    flex:0 0 75%;   /* enne oli 85% */
    padding:16px 18px;
    scroll-snap-align:center;

  }

  .testimonial{
    height:auto;
    min-height:unset;
    align-self:flex-start;
  }

  .testimonial:last-child{
    margin-right:20px;
  }

  .testimonials-track::after{
    content:"";
    flex:0 0 1px;
  }

    .section-divider-single {
    background: #D9823B;
  box-shadow: 0 0 6px #D9823B;
  }

  .section-divider-single-blue {
    background: #D9823B;
  box-shadow: 0 0 6px #D9823B;
  }

  .testimonial {
    font-size: 0.6rem;
  }

  /* CTA CONTACT */
  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-socials a img {
    width: 36px;
    height: 36px;
  }

  /* Parallax fix mobile jaoks */
  .testimonials,
  .how-it-works {
    background-attachment: scroll;
  }

  .footer {
    padding: 1.2rem;
    font-size: 0.60rem;
  }

}