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

body {
    font-family: 'Montserrat', sans-serif;
    background: #f7f7f7;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* BUTTONS */
.btn {
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.primary {
    background: #e30613;
    color: white;
}

.secondary {
    border: 1px solid #333;
    color: #333;
}

/* HERO */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("https://i.ibb.co/LzbhbXvf/hero-banner-4k.png") no-repeat right center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.95) 35%,
        rgba(255,255,255,0.7) 50%,
        rgba(255,255,255,0) 70%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image img {
    width: 500px;
    border-radius: 10px;
}

/* 🔥 SERVICES (APPLE STYLE) */
.services {
    padding: 110px 0; /* daugiau oro */
    text-align: center;
}

/* 🔥 PERFECT CENTER + PREMIUM SPACING */
.cards {
    display: flex;
    justify-content: center;
    gap: 40px; /* daugiau tarpo */
    margin-top: 60px;
    flex-wrap: wrap;
}

/* 🔥 PREMIUM CARD */
.card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    max-width: 280px;
    width: 100%;
    text-align: center;

    border: 1px solid #eee;

    /* 🔥 soft shadow */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: all 0.3s ease;
}

/* ICON */
.icon {
    width: 188px;
    height: 99px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* 🔥 TEXT SPACING */
.card h3 {
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: 22px;
}

.card p {
    line-height: 1.6;
    color: #555;
}

/* 🔥 HOVER (TESLA STYLE) */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}

.card:hover .icon {
    transform: translateY(-6px) scale(1.05);
    filter: brightness(1.1) saturate(1.2);
}

/* STEPS */
.steps {
    padding: 60px 0;
    text-align: center;
}

.step-list {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.step {
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
}

/* WHY */
.why {
    padding: 80px 0;
    text-align: center;
}

/* REVIEWS */
.reviews {
    padding: 80px 0;
    text-align: center;
}

/* CONTACT */
.contact-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.contact-info {
    margin-top: 20px;
    font-size: 18px;
}

/* SCROLL OFFSET */
html {
    scroll-behavior: smooth;
}

#kontaktai,
#apie,
#paslaugos,
#atsiliepimai {
    scroll-margin-top: 100px;
}

/* FORM ANIMATIONS */
input, select {
    transition: 0.2s;
}

input:focus {
    transform: scale(1.02);
}

button:active {
    transform: scale(0.97);
}

.success-message {
    animation: fadeIn 0.4s ease;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
    }

    .step-list {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .cards {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
}

/* PROCESS SECTION */
.process-section {
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      to bottom,
      #ffffff 0%,
      #ffffff 60%,
      rgba(255,255,255,0.6) 80%,
      rgba(255,255,255,0) 100%
    ),
    url("https://i.ibb.co/7t8z2zX/road-motion-blur.jpg") center bottom / cover no-repeat;
}

/* TITLE */
.process-section h2 {
  font-size: 34px;
  margin-bottom: 50px;
}

/* WRAPPER */
.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* LINE */
.process-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}

/* STEP */
.process-step {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  font-weight: 500;
  color: #777;
  cursor: pointer;
  transition: 0.3s;
}

/* CIRCLE */
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #555;
  transition: 0.3s;
}

/* ACTIVE */
.process-step.active {
  color: #111;
}

.process-step.active .step-circle {
  background: #e30613;
  color: white;
}

/* HOVER */
.process-step:hover {
  color: #111;
}

.process-step:hover .step-circle {
  background: #e30613;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .process-steps {
    flex-direction: column;
    gap: 20px;
  }

  .process-steps::before {
    display: none;
  }
}


/* TITLE */
.process-section h2 {
  font-size: 34px;
  margin-bottom: 50px;
}

/* STEPS WRAPPER */
.steps-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LINE */
.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}

/* STEP */
.step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #888;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

/* CIRCLE */
.circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #555;
  transition: 0.3s;
}

/* ACTIVE */
.step.active {
  color: #111;
}

.step.active .circle {
  background: #e30613;
  color: white;
  box-shadow: 0 0 0 6px rgba(227,6,19,0.1);
  animation: pulse 1.5s infinite;
}

/* HOVER */
.step:hover {
  color: #111;
}

.step:hover .circle {
  background: #e30613;
  color: white;
}

/* ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(227,6,19,0.3);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(227,6,19,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(227,6,19,0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .steps-wrapper::before {
    display: none;
  }

  .step {
    justify-content: center;
  }
}