.detail-produk {
    min-height: 80vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f0f9ff 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.detail-produk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    position: relative;
}

.section-title span {
    color: #0ea5e9;
    position: relative;
}

.section-title span::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 2px;
}

/* Main Section Styling */
.main-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 4rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.text-content p:first-child {
    font-size: 1.2rem;
    font-weight: 500;
    color: #334155;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px -8px rgba(14, 165, 233, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 10px;
    color: white;
}

.feature-item span {
    font-weight: 600;
    color: #334155;
}

.image-wrapper {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.img-detail {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 233, 0.1) 0%,
        rgba(6, 182, 212, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Services Section */
.services-section {
    margin-top: 2rem;
}

.services-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3rem;
    position: relative;
}

.services-title span {
    color: #0ea5e9;
    position: relative;
}

.services-title span::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* ANIMASI MASUK DARI KIRI */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}
.fade-in-left.show {
    opacity: 1;
    transform: translateX(0);
}

/* ANIMASI MASUK DARI KANAN */
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}
.fade-in-right.show {
    opacity: 1;
    transform: translateX(0);
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0; /* DARI KATA INI KEBAWAH UNTUK ANIMASI MASUK KETIKA SCROLL KEBAWAH */
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Delay agar muncul satu per satu */
.service-card:nth-child(1) {
    transition-delay: 0.2s;
}
.service-card:nth-child(2) {
    transition-delay: 0.4s;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.15);
}

.vsat-card::before {
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
}

.cellular-card::before {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.4);
    transition: all 0.3s ease;
}

.vsat-card .service-icon-large {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.cellular-card .service-icon-large {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.service-card:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    color: white;
}
.service-icon-large .detail-produk-telekomunikasi {
    width: 40px;
    height: 40px;
    color: white;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.service-badge {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.service-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    flex-shrink: 0;
}

.vsat-card .feature-dot {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.cellular-card .feature-dot {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .detail-produk {
        padding: 2rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .main-section {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        margin-bottom: 2rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .service-icon-large {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .service-icon-large svg {
        width: 35px;
        height: 35px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .service-content p {
        font-size: 0.95rem;
    }

    .image-container {
        transform: none;
        border-radius: 15px;
    }

    .image-container:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .services-title {
        font-size: 1.5rem;
    }

    .main-section {
        padding: 1.5rem 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
    }

    .service-icon-large svg {
        width: 30px;
        height: 30px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .text-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .service-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .service-feature {
        font-size: 0.9rem;
    }
}

/* Animation untuk loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-section {
    animation: fadeInUp 0.8s ease-out;
}

.service-card {
    animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item {
    animation: fadeInUp 0.8s ease-out;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}
.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}
.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* LANJUT KE DETAIL NOC */
/* Additional styles for NOC-specific elements */

/* NOC Service Card Variations */
.noc-monitoring-card::before {
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
}

.noc-incident-card::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.noc-security-card::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.noc-reporting-card::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.noc-monitoring-card .service-icon-large {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.noc-incident-card .service-icon-large {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.noc-security-card .service-icon-large {
    background: linear-gradient(135deg, #10b981, #059669);
}

.noc-reporting-card .service-icon-large {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.noc-monitoring-card .feature-dot {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.noc-incident-card .feature-dot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.noc-security-card .feature-dot {
    background: linear-gradient(135deg, #10b981, #059669);
}

.noc-reporting-card .feature-dot {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Additional Services Grid */
.additional-services {
    margin-top: 2rem;
}

/* NOC Benefits Section */
.noc-benefits-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3rem;
    position: relative;
}

.benefits-title span {
    color: #0ea5e9;
    position: relative;
}

.benefits-title span::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.95);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive adjustments for NOC benefits */
@media (max-width: 768px) {
    .noc-benefits-section {
        margin-top: 2rem;
        padding: 2rem 0;
        border-radius: 20px;
    }

    .benefits-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .benefit-card h4 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .additional-services {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefits-title {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
    }

    .benefit-icon svg {
        width: 22px;
        height: 22px;
    }

    .benefit-card h4 {
        font-size: 1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }
}

/* Animation for benefits cards */
.benefit-card {
    animation: fadeInUp 0.6s ease-out;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}
.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}
.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}
.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* UPDATE STYLE DETAIL TELEKOMUNIKASI DAN KELISTRIKAN */
/* Telecom & Electrical Service Card Variations */
.telecom-installation-card::before {
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
}

.electrical-systems-card::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.maintenance-support-card::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.system-integration-card::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.telecom-installation-card .service-icon-large {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.electrical-systems-card .service-icon-large {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.maintenance-support-card .service-icon-large {
    background: linear-gradient(135deg, #10b981, #059669);
}

.system-integration-card .service-icon-large {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.telecom-installation-card .feature-dot {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.electrical-systems-card .feature-dot {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.maintenance-support-card .feature-dot {
    background: linear-gradient(135deg, #10b981, #059669);
}

.system-integration-card .feature-dot {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Technical Expertise Section */
.technical-expertise-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.expertise-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3rem;
    position: relative;
}

.expertise-title span {
    color: #0ea5e9;
    position: relative;
}

.expertise-title span::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 1px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.95);
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1) rotate(5deg);
}

.expertise-icon svg {
    width: 24px;
    height: 24px;
}

.expertise-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.expertise-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* Responsive adjustments for technical expertise */
@media (max-width: 768px) {
    .technical-expertise-section {
        margin-top: 2rem;
        padding: 2rem 0;
        border-radius: 20px;
    }

    .expertise-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }

    .expertise-card {
        padding: 1.25rem;
    }

    .expertise-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }

    .expertise-icon svg {
        width: 22px;
        height: 22px;
    }

    .expertise-card h4 {
        font-size: 1rem;
    }

    .expertise-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .expertise-title {
        font-size: 1.5rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .expertise-card {
        padding: 1rem;
    }

    .expertise-icon {
        width: 40px;
        height: 40px;
    }

    .expertise-icon svg {
        width: 20px;
        height: 20px;
    }

    .expertise-card h4 {
        font-size: 0.95rem;
    }

    .expertise-card p {
        font-size: 0.75rem;
    }
}

/* Animation for expertise cards */
.expertise-card {
    animation: fadeInUp 0.6s ease-out;
}

.expertise-card:nth-child(1) {
    animation-delay: 0.1s;
}
.expertise-card:nth-child(2) {
    animation-delay: 0.2s;
}
.expertise-card:nth-child(3) {
    animation-delay: 0.3s;
}
.expertise-card:nth-child(4) {
    animation-delay: 0.4s;
}
.expertise-card:nth-child(5) {
    animation-delay: 0.5s;
}
.expertise-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* UPDATE STYLE MANAGE SERVICE */
/* Manage Services Card Variations */
.ticket-management-card::before {
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
}

.helpdesk-services-card::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.proactive-monitoring-card::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.reporting-analytics-card::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.ticket-management-card .service-icon-large {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.helpdesk-services-card .service-icon-large {
    background: linear-gradient(135deg, #10b981, #059669);
}

.proactive-monitoring-card .service-icon-large {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.reporting-analytics-card .service-icon-large {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.ticket-management-card .feature-dot {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.helpdesk-services-card .feature-dot {
    background: linear-gradient(135deg, #10b981, #059669);
}

.proactive-monitoring-card .feature-dot {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.reporting-analytics-card .feature-dot {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
