.section { padding: 80px 8%; }

.title {
  font-size: 80px;
  font-weight: 800;
  margin-bottom: 50px;
  line-height: 1;
}

.service-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0 35px 70px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  gap: 20px;
}

.service-index {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #999;
}

.service-name {
  /* font-size: 34px; */
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  flex-wrap: wrap;
}

.service-name .char { display: inline-block; }

/* SVG ARROW */
.arrow svg {
  width: 22px;
  height: 22px;
  stroke: #111;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow svg path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: all 0.4s ease;
}

.service-item:hover .arrow svg path {
  stroke-dashoffset: 0;
  transform: translate(-3px, -6px);
}

.service-item:hover .arrow svg { stroke: #215c5c; }
.service-item:hover .service-name { color: #215c5c; }

.service-desc {
  max-width: 400px;
  font-size: 14px;
  color: #666;
}

/* FLOATING IMAGE (desktop/tablet) */
.floating-image {
  position: fixed;
  top: 0; left: 0;
  width: 300px; height: 200px;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: scale(0.8);
  overflow: hidden;
  border-radius: 12px;
}

.floating-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* MOBILE PREVIEW CARD */
.mobile-preview {
  display: none;
  width: 100%;
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
}

.mobile-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-link { position: absolute; inset: 0; z-index: 2; }

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .title { font-size: 80px; }
  .service-name { font-size: 28px; }
}

@media (max-width: 992px) {
  .title { font-size: 60px; }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0 30px 50px;
  }
  .service-desc { max-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 60px 6%; }
  .title { font-size: 48px; }
  .service-name { font-size: 24px; }

  .floating-image { display: none; }

  /* enable tap preview */
  .mobile-preview { display: block; }
}

@media (max-width: 480px) {
  .title { font-size: 36px; }
  .service-item { padding: 25px 0 25px 40px; }
  .service-index { font-size: 10px; }
  .service-name { font-size: 20px; }
}


/* INTRO STYLES */
.intro {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
margin-bottom: 100px;
}

.intro-title {
font-size: 64px;
font-weight: 800;
line-height: 1.1;
margin: 0 0 20px;
}

.intro-tagline {
font-size: 20px;
font-weight: 400;
color: #215c5c;
}

.intro-right p {
font-size: 15px;
line-height: 1.8;
color: #555;
margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
.intro {
grid-template-columns: 1fr;
gap: 30px;
}

.intro-title {
font-size: 42px;
}

.intro-tagline {
font-size: 18px;
}
}

@media (max-width: 480px) {
.intro-title {
font-size: 32px;
}
}