:root {
    --primary: #21A3BE;
    --primary-dark: #0595AF;
    --accent: #47F4F1;
    --soft-cyan: #C2E8E8;
    --dark-gray: #3E4A57;
    --light-gray: #A2A8AC;
    --secondary: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --success: #10b981;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--soft-cyan);
    padding-top: 76px;
}

/* Modern Navbar with Glassmorphism */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 0;
}

/* Brand Styling */
.navbar-brand {
    font-weight: 700;
    color: var(--primary) !important;
    transition: all 0.3s ease;
    padding: 0;
    margin-right: auto;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-wrapper i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.brand-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.navbar-brand:hover i {
    transform: rotate(360deg);
}

/* Nav Links */
.navbar-nav {
    margin-left: auto;
    margin-right: -9rem;
    gap: 0;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    padding: 8px 20px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 4px;
}

.nav-link i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    background: rgba(33, 163, 190, 0.08);
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.nav-link:hover i {
    opacity: 1;
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(33, 163, 190, 0.1), rgba(71, 244, 241, 0.1));
    color: var(--primary) !important;
    font-weight: 600;
}

.nav-link.active i {
    opacity: 1;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* CTA Button */
.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white !important;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 163, 190, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 163, 190, 0.4);
}

.btn-cta i {
    font-size: 1rem;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(33, 163, 190, 0.2);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
        gap: 8px;
    }
    
    .nav-link {
        padding: 12px 16px !important;
        margin: 4px 0;
    }
    
    .btn-cta {
        margin-top: 12px;
        justify-content: center;
    }
    
    .nav-link.active::after {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-section::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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,165.3C960,149,1056,139,1152,149.3C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Hero Title */
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--soft-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero CTA Buttons */
.hero-cta {
    margin-bottom: 2.5rem;
}

.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-primary {
    background: white;
    color: var(--dark-gray);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.4);
    color: var(--dark-gray);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.cta-icon {
    font-size: 1.2rem;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--warning) 0%, var(--warning) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

/* Tracking Form */
.tracking-form-section {
    background: var(--soft-cyan);
    padding: 60px 0;
}

.tracking-form-container {
    max-width: 1140px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 48px;
    color: white;
    box-shadow: 0 20px 60px rgba(33, 163, 190, 0.25);
    position: relative;
    overflow: hidden;
}

.tracking-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Tracking Header */
.tracking-header {
    position: relative;
    z-index: 1;
}

.tracking-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

.tracking-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.tracking-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.tracking-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Tracking Form Elements */
.tracking-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
}

.tracking-label i {
    opacity: 0.8;
}

.tracking-input-wrapper {
    position: relative;
}

.tracking-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-gray);
    font-size: 1.1rem;
    z-index: 2;
}

.tracking-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-gray);
    transition: all 0.3s ease;
    font-weight: 500;
}

.tracking-input:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.tracking-input::placeholder {
    color: var(--light-gray);
    font-weight: 400;
}

.tracking-input.is-invalid {
    border-color: #ef4444;
    background: #fef2f2;
}

/* Tracking Hints & Errors */
.tracking-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.tracking-hint i {
    font-size: 0.75rem;
}

.tracking-error {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #fecaca;
    margin-top: 8px;
    background: rgba(239, 68, 68, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid #ef4444;
}

/* Tracking Submit Button */
.tracking-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.tracking-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.tracking-submit-btn:hover::before {
    left: 100%;
}

.tracking-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.tracking-submit-btn:active {
    transform: translateY(-1px);
}

.btn-icon, .btn-arrow {
    display: flex;
    align-items: center;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.tracking-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Tracking Footer */
.tracking-footer {
    position: relative;
    z-index: 1;
}

.tracking-help {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.tracking-help i {
    font-size: 1rem;
}

.tracking-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.tracking-link:hover {
    color: white;
    border-bottom-color: white;
}

/* Responsive Tracking */
@media (max-width: 768px) {
    .tracking-form-container {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .tracking-icon-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .tracking-icon-wrapper i {
        font-size: 2rem;
    }
    
    .tracking-title {
        font-size: 1.5rem;
    }
    
    .tracking-subtitle {
        font-size: 0.9rem;
    }
    
    .tracking-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Result Section - Service Detail */
.result-section {
    background: var(--soft-cyan);
    padding: 60px 0;
    min-height: 100vh;
}

.result-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.result-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 24px 32px;
    color: white;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.result-badge {
    background: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

.result-body {
    padding: 24px;
}

/* Service Card */
.service-card {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(33, 163, 190, 0.15);
}

.service-header {
    background: var(--soft-cyan);
    padding: 24px;
    border-bottom: 2px solid var(--light-gray);
}

.service-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.75rem;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.service-content {
    padding: 32px 24px;
}

/* Detail Section */
.detail-section {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
}

.detail-item {
    margin-bottom: 20px;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 8px;
}

.detail-text {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
    padding-left: 16px;
    border-left: 3px solid var(--light-gray);
    margin: 0;
}

/* Info Panel */
.info-panel {
    background: var(--soft-cyan);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    height: 100%;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.info-row i {
    font-size: 1.25rem;
    margin-top: 2px;
}

.info-row .info-label {
    display: block;
    font-size: 0.75rem;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-row strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.info-row.cost-estimate {
    background: linear-gradient(135deg, var(--soft-cyan), var(--accent));
    border-color: #fbbf24;
}

/* Progress Track */
.progress-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
    margin-top: 24px;
}

.progress-track::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: var(--light-gray);
    z-index: 0;
}

.track-step {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.step-circle {
    width: 48px;
    height: 48px;
    background: white;
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--light-gray);
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.step-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
    text-align: center;
    max-width: 100px;
}

.track-step.active .step-circle {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 163, 190, 0.3);
}

.track-step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

/* Result Footer */
.result-footer {
    background: var(--soft-cyan);
    padding: 24px;
    text-align: center;
    border-top: 2px solid var(--light-gray);
}

.btn-search-again {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    padding: 12px 32px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-search-again:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(33, 163, 190, 0.3);
}

/* Responsive Result */
@media (max-width: 992px) {
    .result-header {
        padding: 20px 24px;
    }
    
    .result-title {
        font-size: 1.25rem;
    }
    
    .service-header {
        padding: 20px;
    }
    
    .service-content {
        padding: 24px 20px;
    }
    
    .progress-track {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .track-step {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 576px) {
    .result-container {
        border-radius: 12px;
    }
    
    .service-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .info-item {
        margin-bottom: 12px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
}

/* Status Badges */
.status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
}

.status-diterima { background: var(--accent); color: white; }
.status-diagnosa { background: #8b5cf6; color: white; }
.status-dalam-perbaikan { background: #f59e0b; color: white; }
.status-selesai { background: #10b981; color: white; }
.status-menunggu-part { background: #ef4444; color: white; }

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-cyan) 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.services-header {
    position: relative;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(33, 163, 190, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(33, 163, 190, 0.2);
    border-color: rgba(33, 163, 190, 0.3);
    background: rgba(255, 255, 255, 1);
}

/* Featured Card */
.service-card.featured {
    background: linear-gradient(135deg, rgba(33, 163, 190, 0.05) 0%, rgba(5, 149, 175, 0.05) 100%);
    border: 2px solid rgba(33, 163, 190, 0.3);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(33, 163, 190, 0.4);
}

.service-icon-wrapper {
    margin-bottom: 24px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(33, 163, 190, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(33, 163, 190, 0.4);
}

.service-icon i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.service-description {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #475569;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.service-features li:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.service-features li i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.service-features li:hover i {
    color: #059669;
    transform: scale(1.2);
}

.service-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    transition: left 0.5s ease;
}

.service-button:hover::before {
    left: 100%;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 163, 190, 0.4);
    color: white;
}

.service-button i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.service-button:hover i {
    transform: translateX(4px);
}

/* Responsive Services */
@media (max-width: 992px) {
    .services-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 28px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-header {
    position: relative;
}

.gallery-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    margin: 0 auto;
}

.gallery-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 163, 190, 0.95) 0%, rgba(5, 149, 175, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 24px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transform: scale(0.8);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.gallery-icon i {
    font-size: 1.75rem;
    color: white;
}

.gallery-caption-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-caption-title {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.3s;
}

.gallery-item:hover .gallery-caption-text {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-item {
        height: 240px;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .gallery-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .gallery-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .gallery-title {
        font-size: 1.75rem;
    }
}

/* Clients Section - GRID 5x5 SUPER RAPAT TANPA KOTAK */
.clients-section {
    padding: 80px 0;
    background: var(--soft-cyan);
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid 5x5 SUPER RAPAT TANPA KOTAK */
.clients-grid-5x5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 40px;
    align-items: center;
    justify-items: center;
}

/* Item grid - TANPA KOTAK, HANYA GAMBAR */
.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
    height: 100px;
    cursor: pointer;
    padding: 10px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Gambar logo - langsung gambar tanpa container */
.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

/* Hover effect */
.client-logo-item:hover .client-logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.contact-header {
    position: relative;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 50px;
}

.contact-info-card,
.map-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(33, 163, 190, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.contact-info-card:hover,
.map-container:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(33, 163, 190, 0.2);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(33, 163, 190, 0.1);
}

.contact-header-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(33, 163, 190, 0.3);
}

.contact-header-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(33, 163, 190, 0.05);
    transform: translateX(8px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(33, 163, 190, 0.25);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    font-size: 1.1rem;
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-details h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 6px;
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* Maps Container */
.map-iframe {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    min-height: 400px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.map-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .map-iframe {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-info-card,
    .map-container {
        padding: 24px;
    }
    
    .contact-header-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-card-header h3 {
        font-size: 1.25rem;
    }
    
    .map-iframe {
        min-height: 300px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #0f172a 100%);
    color: white;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-dark), var(--primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(33, 163, 190, 0.3);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-icon {
    transform: scale(1.1) rotate(5deg);
}

.footer-logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.footer-description {
    color: var(--light-gray);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(33, 163, 190, 0.4);
    border-color: transparent;
}

.footer-heading {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(6px);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-contact-item:hover {
    color: #cbd5e1;
    transform: translateX(4px);
}

.footer-contact-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    font-size: 1rem;
    margin-top: 2px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 0;
    text-align: center;
}

.copyright p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin: 0;
}

.copyright .divider {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.2);
}

.copyright strong {
    color: white;
    font-weight: 700;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-logo-icon {
        width: 42px;
        height: 42px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Progress Bar */
.progress-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 30px 0 20px 0;
}

.progress-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--light-gray);
    transform: translateY(-50%);
    z-index: 1;
}

.track-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 20%;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    color: #6b7280;
    transition: all 0.3s ease;
}

.track-step.active .step-circle {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.step-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.track-step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

/* Table */
.table-custom {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.table-custom thead {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.table-custom th {
    color: white;
    border: none;
    padding: 15px;
    font-weight: 600;
}

.table-custom td {
    padding: 12px 15px;
    vertical-align: middle;
    border-bottom: 1px solid var(--light-gray);
}

.table-custom tbody tr:hover {
    background-color: var(--soft-cyan);
}

/* Social Media */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Responsive untuk Clients Grid 5x5 */
@media (max-width: 1200px) {
    .clients-grid-5x5 {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .clients-grid-5x5 {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid-5x5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tracking-form-container {
        padding: 30px 20px;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid-5x5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .client-logo-item {
        height: 80px;
    }
}
