#our-services-section {
    background-color: #000000;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    padding: 50px 20px;
    width: 100%;
    /* Efek glow biru background khusus section ini */
    background: radial-gradient(circle at 90% 20%, #111e38 0%, #000000 40%);
    display: flex;
    justify-content: center;
}

.serve-container {
    width: 100%;
    max-width: 800px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.header-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

 .header-title {
    font-size: 45px;
    font-weight: 400;
    letter-spacing: -1px;
    margin: 0; /* Reset margin h1 bawaan */
    line-height: 1;
}

.header-title .our {
    font-size: 60px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    color: #565add;
    margin-right: 5px;
}

/* Card Style */
.serve-card {
    display: flex;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid #333;
    position: relative;
    transition: all 0.3s ease;
}


/* Icon Box */
.serve-icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e1b4b, #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 24px;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

/* Content */
.serve-content {
    flex-grow: 1;
}

.serve-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 12px 0;
    cursor: pointer;
}

/* Accordion Logic Wrapper */
 .serve-details-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease;
    opacity: 0;
}

.serve-card.active .serve-details-wrapper {
    opacity: 1;
}

.serve-desc {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 600px;
    padding-top: 5px;
}

/* Tags */
.tags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    max-width: 550px;
}

.tag {
    background-color: #2d364e;
    color: #e5e7eb;
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.tag:hover {
    background-color: #3b4867;
}

/* Link */
.detail-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-style: italic;
    padding-bottom: 2px;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.detail-link:hover {
    opacity: 0.8;
}

.detail-link span {
    margin-left: 8px;
    font-style: normal;
}

/* Button Expand */
.expand-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .45s ease, background .25s ease;
  color: #fff;
}

.expand-btn svg {
  width: 16px;
  height: 16px;
  transition: transform .45s ease;
}

.expand-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* rotate saat aktif */
.serve-card.active .expand-btn svg {
  transform: rotate(180deg);
}

/* Responsive Mobile */
@media (max-width: 768px) {

    .expand-btn {
        position: absolute;
        top: 30px;
        right: 0;
    }

    .header-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
 .header-title {
    font-size: 25px;
    letter-spacing: 1px;
}

.header-title .our {
    font-size: 30px;
    font-weight: 500;
}

.serve-icon-box {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    font-size: 20px;
}   

.expand-btn {
  width: 35px;
  height: 35px;
}

.expand-btn svg {
  width: 22px;
  height: 22px;
}

/* Content */
.serve-content {
    flex-grow: 1;
}

.serve-title {
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 12px 0;
}

.serve-desc {
    font-size: 0.7rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 250px;
    padding-top: 0px;
}

.tags-grid {
    gap: 10px;
    margin-bottom: 25px;
    max-width: 250px;
}

.tag {
    padding: 10px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 300;
}

.detail-link {
    font-size: 0.9rem;
}
}