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

body {
    font-family: "Inter", sans-serif;
    color: #333;
}

/* Mencegah scroll saat loading */
body.loading {
    overflow: hidden;
}

/* Animasi tambahan jika tidak pakai Tailwind */
@keyframes pulse-soft {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.animate-pulse-custom {
    animation: pulse-soft 2s infinite;
}

.hero-bg {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    position: relative;
    overflow: hidden;
}

.active {
    font-weight: bold;
    color: #dc2626;
}

.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
}

/* style highlight spesialist */

.service-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #2b2b2b, #333);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #e4e4e4, #bcbcbc);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.floating-nav {
    position: fixed;
    padding-top: 10px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.hamburger-line {
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.process-step {
    position: relative;
}

.process-step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #000, transparent);
    transform: translateY(-50%);
}

.process-step:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
}

.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content.active {
    max-height: 200px;
}

/* Service-Details Page */
.service-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #2b2b2b, #333);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #e4e4e4, #bcbcbc);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.navbar-scroll {
    padding-top: 10px;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

.process-step {
    position: relative;
}

.process-step::after {
    content: "";
    position: absolute;
    top: 20%;
    width: 30%;
    left: 90%;
    height: 2px;
    background-color: #000;
    transform: translateY(50%);
}

.process-step:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
}

.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hero-bg-image {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        url("https://images.unsplash.com/photo-1460353581641-37baddab0fa2?w=1920&amp;q=80");
    background-size: cover;
    background-position: center;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content.active {
    max-height: 200px;
}

.service-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)),
        url("img/afix4.jpg");
    color: white;
    background-position: center;
    background-size: cover;
    padding: 120px 0 80px;
}

.service-detail-section {
    padding: 80px 0;
}

.service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-feature-icon {
    width: 50px;
    height: 50px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.price-card {
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: #000;
    transform: translateY(-5px);
}

.price-card.popular {
    border-color: #000;
    position: relative;
    transform: scale(1.05);
}

.price-card.popular::before {
    content: "Paling Populer";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.before-after-container {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.before-after-item {
    flex: 1;
    text-align: center;
}

.before-after-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .before-after-container {
        flex-direction: column;
    }

    .price-card.popular {
        transform: scale(1);
    }
}

/* fixJemput */
.benefit-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
