/* ==========================================================================
   Design System & Premium CSS Stylesheet - Scanindo Group
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    /* Color Palette */
    --bg-dark: #0a0b0d;
    --bg-card: #12141c;
    --bg-card-hover: #171b26;
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --accent-red: hsl(12, 100%, 55%);
    --accent-red-glow: hsla(12, 100%, 55%, 0.15);
    
    --accent-cyan: hsl(180, 100%, 42%);
    --accent-cyan-glow: hsla(180, 100%, 42%, 0.15);
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-hover: rgba(255, 255, 255, 0.12);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.small { font-size: 0.875rem; }
.text-muted { color: var(--text-muted); }
.text-red { color: var(--accent-red) !important; }
.text-cyan { color: var(--accent-cyan) !important; }

/* 2. Glassmorphic Navigation Bar */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    background: rgba(10, 11, 13, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.navbar-wrapper.scrolled {
    background: rgba(10, 11, 13, 0.9);
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.navbar-wrapper.scrolled .navbar {
    height: 64px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 38px;
    width: auto;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.brand-link:hover .brand-logo-img {
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

.nav-brand .logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #ffffff 50%, #9ca3af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-dot {
    color: var(--accent-red);
    -webkit-text-fill-color: var(--accent-red);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-item:hover, .nav-item.active {
    color: #ffffff;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-cyan));
    transition: var(--transition-smooth);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

/* Premium Buttons */
.btn-primary-glow {
    position: relative;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 1px solid var(--border-color);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.btn-primary-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: scale(0.5);
    transition: var(--transition-smooth);
    opacity: 0;
}

.btn-primary-glow:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-primary-glow:hover::before {
    opacity: 1;
    transform: scale(1);
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent-red);
    color: #ffffff;
}

.btn-primary:hover {
    background: #e03a2e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.shadow-red:hover {
    box-shadow: 0 10px 25px rgba(255, 77, 77, 0.35);
}

.shadow-cyan:hover {
    box-shadow: 0 10px 25px rgba(0, 238, 254, 0.25);
}

/* 3. Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 173, 181, 0.15) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
    z-index: 1;
    filter: blur(80px);
    pointer-events: none;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Portal mini cards preview */
.portal-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.portal-mini-card {
    position: relative;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    overflow: hidden;
    cursor: pointer;
}

.portal-mini-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.pt-card-preview:hover { border-color: rgba(255, 77, 77, 0.3); }
.cv-card-preview:hover { border-color: rgba(0, 238, 254, 0.3); }

.card-glow-red, .card-glow-cyan {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: var(--transition-smooth);
}

.card-glow-red {
    background: radial-gradient(circle at top right, rgba(255, 77, 77, 0.08) 0%, transparent 60%);
}

.card-glow-cyan {
    background: radial-gradient(circle at top right, rgba(0, 238, 254, 0.08) 0%, transparent 60%);
}

.portal-mini-card:hover .card-glow-red,
.portal-mini-card:hover .card-glow-cyan {
    opacity: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.pt-card-preview .card-icon { background: rgba(255, 77, 77, 0.1); color: var(--accent-red); }
.cv-card-preview .card-icon { background: rgba(0, 238, 254, 0.1); color: var(--accent-cyan); }

.portal-mini-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.portal-mini-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.link-label {
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
    transition: var(--transition-fast);
}

.portal-mini-card:hover .link-label {
    gap: 8px;
}

.pt-card-preview:hover .link-label { color: var(--accent-red); }
.cv-card-preview:hover .link-label { color: var(--accent-cyan); }


/* 4. General About Us Section */
.about-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    background: radial-gradient(circle at bottom center, rgba(31, 41, 55, 0.1) 0%, transparent 70%);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-cyan));
    border-radius: 2px;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.about-company-showcase {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.about-company-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.company-showcase-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-company-img-frame:hover .company-showcase-img {
    transform: scale(1.03);
}

.about-company-details h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.company-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.motto-box {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-cyan);
    padding: 16px 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 32px;
}

.motto-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 4px;
}

.company-motto {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
}

.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vm-block h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.vm-block p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.mini-misi-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-misi-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.mini-misi-list li i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-company-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .company-showcase-img {
        height: 280px;
    }
    .about-vision-mission {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.learn-more-btn {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
}

.pt-about .learn-more-btn { color: var(--accent-red); }
.cv-about .learn-more-btn { color: var(--accent-cyan); }

.learn-more-btn:hover {
    gap: 8px;
}


/* 5. Divisions Section Styling (Generic) */
.division-section {
    padding: 120px 0;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.division-header {
    max-width: 800px;
    margin-bottom: 72px;
}

.sub-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.division-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.division-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Theme Accents */
.pt-theme {
    background: linear-gradient(180deg, rgba(10, 11, 13, 0.96) 0%, rgba(21, 10, 10, 0.96) 100%), url('asset/images/Banner Baru.png') center/cover no-repeat;
}
.cv-theme {
    background: linear-gradient(180deg, rgba(10, 11, 13, 0.96) 0%, rgba(8, 17, 22, 0.96) 100%), url('asset/images/banner.png') center/cover no-repeat;
}


/* 6. PT. Scanindo (Fire Protection) Detail Elements */
.bg-pattern-fire {
    position: absolute;
    top: 10%; right: 5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.feature-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.highlight-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-left-text > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.feature-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-bullet-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-bullet-list .icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 77, 77, 0.1);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-bullet-list li p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-bullet-list li strong {
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

.product-spotlight-card {
    position: relative;
    border-radius: 24px;
    background: #1c1313;
    border: 1px solid rgba(255, 77, 77, 0.15);
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spotlight-img {
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(255, 77, 77, 0.3));
    transition: var(--transition-smooth);
    margin-bottom: 24px;
}

.product-spotlight-card:hover .spotlight-img {
    transform: scale(1.03) translateY(-5px);
}

.spotlight-caption {
    text-align: center;
}

.spotlight-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.spotlight-caption p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* How It Works steps */
.how-it-works-section {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: 24px;
    margin-bottom: 80px;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.subsection-desc {
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-card.highlight {
    border-color: rgba(255, 77, 77, 0.35);
    background: rgba(255, 77, 77, 0.03);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.07);
    position: absolute;
    top: 8px; right: 16px;
}

.step-card h4 {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.step-arrow {
    color: var(--text-muted);
    font-size: 1.5rem;
}

/* AGS Catalog Cards */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.catalog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.catalog-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 77, 77, 0.25);
    box-shadow: 0 12px 25px rgba(255, 77, 77, 0.08);
}

.model-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 30px;
    background: rgba(255, 77, 77, 0.1);
    color: var(--accent-red);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.catalog-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.catalog-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-card-details {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.catalog-card:hover .btn-card-details {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #ffffff;
}


/* 7. CV. Scanindo (IT Solutions) Detail Elements */
.bg-pattern-it {
    position: absolute;
    top: 10%; left: 5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 238, 254, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Visi & Misi Dashboard */
.vm-dashboard {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.vm-header-bar {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 16px;
}

.dots-accent {
    display: flex;
    gap: 6px;
}

.dots-accent span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.dots-accent span:nth-child(1) { background: var(--accent-cyan); }
.dots-accent span:nth-child(2) { background: var(--accent-red); }

.vm-header-bar h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    padding: 40px;
    gap: 48px;
}

.vm-text h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.list-with-icons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-with-icons li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.list-with-icons li i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.list-with-icons li span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.vm-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(0, 238, 254, 0.1);
    position: absolute;
    top: 8px; left: 24px;
}

.motto-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.motto-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.vision-box {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.vision-box strong {
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* IT Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 238, 254, 0.25);
    box-shadow: 0 12px 25px rgba(0, 238, 254, 0.06);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 238, 254, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--accent-cyan);
    color: #000000;
}

.service-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}


/* 8. Partners (Mitra) CSS styling */
.partners-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    background: #090a0d;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.partner-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 24px 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
    text-align: center;
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.partner-logo {
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1) contrast(0.8) brightness(0.9);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.partner-item:hover .partner-logo {
    filter: grayscale(0) contrast(1) brightness(1);
    opacity: 1;
}

.partner-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.partner-item:hover span {
    color: #ffffff;
}


/* 9. Unified Contact Section */
.contact-section {
    padding: 120px 0;
    border-top: 1px solid var(--border-color);
    background: radial-gradient(circle at top, #11141d 0%, var(--bg-dark) 80%);
}

.contact-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: rgba(18, 20, 28, 0.4);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.contact-info-side {
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 77, 77, 0.02) 100%);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.badge-glow {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 77, 77, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(255, 77, 77, 0.15);
    margin-bottom: 24px;
}

.contact-info-side h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-info-side p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

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

.info-item {
    display: flex;
    gap: 16px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.info-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-form-side {
    padding: 48px;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 238, 254, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, var(--accent-red) 0%, #e03a2e 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.35);
}


/* 10. Footer Section */
.main-footer {
    background: #06070a;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a:hover {
    color: #ffffff;
}


/* 11. Modal Spek Popup styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color-hover);
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    padding: 32px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.modal-overlay.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 77, 77, 0.1);
    color: var(--accent-red);
    border-color: rgba(255, 77, 77, 0.2);
}

.modal-header {
    margin-bottom: 20px;
    padding-right: 24px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.modal-body {
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modal-body p {
    margin-bottom: 12px;
}

.spec-notes {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 10px;
    margin-top: 24px;
}

.note-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 0 !important;
}

.note-text i {
    color: var(--accent-red);
    margin-right: 4px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}

.modal-footer a {
    width: 100%;
    text-align: center;
    justify-content: center;
}


/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 32px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Drawer style */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    
    .mobile-toggle .bar {
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        transition: var(--transition-fast);
        border-radius: 1px;
    }
    
    .mobile-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 11, 13, 0.98);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: var(--transition-smooth);
        z-index: 1050;
        backdrop-filter: blur(20px);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-actions {
        display: none; /* Hide on mobile */
    }
    
    /* Layouts */
    .hero-content-grid {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }
    
    .hero-text-area {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 24px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-card-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .about-card {
        padding: 24px;
    }
    
    .how-it-works-section {
        padding: 24px;
    }
    
    .vm-grid {
        padding: 24px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-side, .contact-form-side {
        padding: 24px;
    }
}
