/* ========== VARIABEL WARNA (SESUAI ACUAN, UNTUK KONSISTENSI) ========== */
:root {
    --primary-color: #f59e0b;
    --secondary-color: #facc15;
    --accent-color: #eab308;
    --dark-bg: #1e293b;
    --light-bg: #f8fafc;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== SECTION ========== */
.section {
    padding: 5rem 0;
}

.section-light {
    background: var(--light-bg);
}

/* ========== FILE 1: STRAUSS PILE ========== */
.hero-strauss-pile {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.97), rgba(30, 41, 59, 0.92)), url('/assets/images/blog/proyek-strauss-pile-kanopi-pelabuhan-muara-angke-blog.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 50vh;
    min-height: 40vh;
    max-width: 100%;
}

.hero-strauss-pile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.hero-strauss-pile h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.hero-strauss-pile .hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-strauss-pile .btn-primary {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.4s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.description-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid #eef2f6;
    max-width: 1000px;
    margin: 0 auto;
}

.description-content p {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.description-content strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.description-content .highlight-specs {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.description-content .highlight-specs div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--light-bg);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.description-content .highlight-specs i {
    color: var(--primary-color);
}

.benefits-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    padding: 5rem 0;
}

.benefits-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.benefits-left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.benefit-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon-box {
    background: #f59e0b20;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #f59e0b;
    font-size: 1.8rem;
    transition: transform 0.3s;
}

.benefit-card:hover .icon-box i {
    transform: scale(1.1);
}

.benefit-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #1e293b;
}

.benefit-card p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.benefits-image-column {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.3);
}

.benefits-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.benefits-image-column img:hover {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.overlay-icon {
    color: #f59e0b;
    font-size: 2rem;
}

.overlay-title {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.overlay-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.project-count-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f59e0b;
    color: #1e293b;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.decoration-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: white;
    opacity: 0.2;
}

.stats-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 2.5rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f59e0b;
}

.stat-label {
    color: #475569;
    font-weight: 500;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.app-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    animation: popIn 0.5s forwards;
}

.app-card:nth-child(1) {
    animation-delay: 0.1s;
}

.app-card:nth-child(2) {
    animation-delay: 0.2s;
}

.app-card:nth-child(3) {
    animation-delay: 0.3s;
}

.app-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.app-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.4s;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.app-card:hover::after {
    width: 80%;
}

.app-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.app-card:hover i {
    transform: rotateY(180deg);
    color: var(--accent-color);
}

.app-card svg:hover {
    transform: rotateY(180deg);
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.app-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.app-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--white);
    padding: 2.5rem 1.8rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid #e9eef2;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.6s forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 1.2rem;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.process-step i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.process-step:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, var(--dark-bg), #0f172a);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
    width: 100vw;
    height: 70vh;
    min-height: 400px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    animation: pulse 4s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

footer {
    background: #0f172a;
    color: #64748b;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.footer-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.footer-content p {
    color: #64748b;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 400;
}

.footer-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.footer-content a:hover {
    color: #fef3c7;
    text-decoration: none;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #64748b;
}

.footer-bottom p {
    text-align: center;
    font-weight: 400;
}

.footer-small {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 400;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    line-height: 0;
    animation: pulse 1.5s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float i {
    text-decoration: none !important;
    line-height: 0;
    font-size: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* ========== FILE 2: MINI PILE ========== */
.hero-mini-pile {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.97), rgba(30, 41, 59, 0.92)), url('/assets/images/bore-pile/hero-mini-pile.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 1rem;
    width: 100vw;
    height: 50vh;
    min-height: 40vh;
    max-width: 100%;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-mini-pile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    animation: shine 3s infinite;
}

.hero-mini-pile h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.hero-mini-pile .hero-subtitle {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-mini-pile .btn-primary {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.4s forwards;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--dark-bg);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--dark-bg);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--dark-bg);
    color: var(--white);
}

/* ========== FILE 3: MINI CRANE ========== */
.hero-mini-crane {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.97), rgba(30, 41, 59, 0.92)), url('/assets/images/bore-pile/mesin-bore-pile-area-pabrik-karawang.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 1rem;
    width: 100vw;
    height: 50vh;
    min-height: 40vh;
    max-width: 100%;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-mini-crane::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    animation: shine 3s infinite;
}

.hero-mini-crane h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.hero-mini-crane .hero-subtitle {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-mini-crane .btn-primary {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.4s forwards;
}

/* ========== RESPONSIVE ========== */

/* Responsive File 1 */
@media (max-width: 1024px) {
    .hero-strauss-pile h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-strauss-pile {
        padding: 6rem 1.5rem;
    }

    .hero-strauss-pile h1 {
        font-size: 2.2rem;
    }

    .hero-strauss-pile .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid-layout {
        grid-template-columns: 1fr;
    }

    .card-row {
        grid-template-columns: 1fr;
    }

    .benefits-image-column {
        height: 400px;
    }

    .stats-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apps-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-strauss-pile h1 {
        font-size: 1.8rem;
    }

    .btn-primary {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 1.2rem;
    }
}

/* Responsive File 2 */
@media (max-width: 1024px) {
    .hero-mini-pile h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-mini-pile {
        padding: 6rem 1.5rem;
    }

    .hero-mini-pile h1 {
        font-size: 2.2rem;
    }

    .hero-mini-pile .hero-subtitle {
        font-size: 1.1rem;
    }

    .benefits-grid-layout,
    .apps-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-mini-pile h1 {
        font-size: 1.8rem;
    }
}

/* Responsive File 3 */
@media (max-width: 1024px) {
    .hero-mini-crane h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-mini-crane {
        padding: 6rem 1.5rem;
    }

    .hero-mini-crane h1 {
        font-size: 2.2rem;
    }

    .hero-mini-crane .hero-subtitle {
        font-size: 1.1rem;
    }

    .benefits-grid,
    .apps-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-mini-crane h1 {
        font-size: 1.8rem;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .hero-strauss-pile {
        background-image: linear-gradient(135deg, rgba(30, 41, 59, 0.97), rgba(30, 41, 59, 0.92)), url('/assets/images/blog/proyek-strauss-pile-kanopi-pelabuhan-muara-angke-blog.webp');
    }

    .hero-mini-pile {
        background-image: linear-gradient(135deg, rgba(30, 41, 59, 0.97), rgba(30, 41, 59, 0.92)), url('/assets/images/bore-pile/hero-mini-pile.webp');
    }

    .hero-mini-crane {
        background-image: linear-gradient(135deg, rgba(30, 41, 59, 0.97), rgba(30, 41, 59, 0.92)), url('/assets/images/bore-pile/mesin-bore-pile-area-pabrik-karawang.webp');
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .whatsapp-float {
        animation: none;
    }
}

/* iOS Safari Fix */
@supports (-webkit-touch-callout: none) {

    .hero-strauss-pile,
    .hero-mini-pile,
    .hero-mini-crane {
        background-attachment: scroll;
    }
}

/* ================= EXPERIENCE BLOCK ================= */
.experience-box {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.experience-box .container {
    max-width: 1100px;
    padding: 0 1.25rem;
}

.experience-inner {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: clamp(1.75rem, 4vw, 3rem);
    box-shadow: 0 18px 40px -18px rgba(15, 23, 42, 0.15);
}

/* ================= TEXT ================= */
.experience-inner strong {
    display: block;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.experience-inner p {
    font-size: clamp(0.95rem, 2.4vw, 1.05rem);
    line-height: 1.75;
    color: #334155;
    margin-bottom: 0.5rem;
}

.experience-inner p strong {
    color: #f59e0b;
    font-weight: 700;
}

.experience-inner small {
    display: block;
    margin-top: 0.75rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #64748b;
}

/* ================= SMALL MOBILE (â‰¤360px) ================= */
@media (max-width: 360px) {
    .experience-inner {
        border-radius: 16px;
    }

    .experience-inner strong {
        font-size: 1.1rem;
    }
}

/* ================= TABLET ================= */
@media (min-width: 768px) and (max-width: 1023px) {
    .experience-box .container {
        max-width: 900px;
    }
}

/* ================= DESKTOP ================= */
@media (min-width: 1024px) {
    .experience-inner {
        padding: 3rem 3.5rem;
    }
}

/* ================= LARGE / 4K SCREEN ================= */
@media (min-width: 1600px) {
    .experience-box .container {
        max-width: 1200px;
    }

    .experience-inner {
        border-radius: 24px;
    }
}

/* =========================
   DROPDOWN SERVICES - IMPROVED
   ========================= */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.has-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown container */
.has-dropdown .dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 250px;
    padding: 12px 0;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

/* Tampilkan dropdown saat active class */
.has-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
}

/* Segitiga dekoratif */
.has-dropdown .dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(245, 158, 11, 0.1);
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    z-index: -1;
}

.dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown li a i {
    width: 20px;
    color: #f59e0b;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.dropdown li a:hover {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.05), transparent);
    color: #f59e0b;
    border-left-color: #f59e0b;
    padding-left: 25px;
}

.dropdown li a:hover i {
    transform: scale(1.1);
    color: #eab308;
}

/* Divider */
.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
    margin: 8px 15px;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .has-dropdown .dropdown {
        position: static;
        transform: none;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(245, 158, 11, 0.03);
        margin-top: 0.5rem;
        transition: max-height 0.3s ease;
        border: none;
    }

    .has-dropdown.active .dropdown {
        max-height: 400px;
        padding: 8px 0;
        transform: none;
    }

    .has-dropdown .dropdown::before {
        display: none;
    }

    .dropdown li a {
        padding: 10px 15px 10px 25px;
    }
}