
        /* --- CSS RESET & VARIABLES --- */
        :root {
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-accent: #f1f5f9;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --tech-blue: #2563eb;
            --tech-cyan: #06b6d4;
            --tech-purple: #8b5cf6;
            --tech-emerald: #10b981;
            --tech-gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
            --tech-glow: 0 8px 25px -4px rgba(6, 182, 212, 0.35);
            --border-light: #e2e8f0;
            --shadow-subtle: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 16px 32px -4px rgba(37, 99, 235, 0.15);
            --radius-lg: 20px;
            --radius-md: 12px;
            --radius-sm: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- BACKGROUND TECH PATTERN --- */
        .tech-bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
            background-size: 28px 28px;
            opacity: 0.45;
            z-index: -1;
            pointer-events: none;
        }

        /* ==========================================
       NAVBAR UTAMA (DESKTOP / WEB)
       ========================================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-light);
      z-index: 99999 !important; /* Agar MUNCUL DI ATAS elemen peta/modal */
      padding: 0.8rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 1000;
      font-size: 1.2rem;
      color: var(--text-main);
      text-decoration: none;
      flex-shrink: 0; /* Mencegah logo gepeng/terhimpit */
    }

    .logo-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    box-shadow:none;
    width:auto;
    height:auto;
}

.logo-icon img{
    width:80px;
    height:auto;
    object-fit:contain;
}

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-muted);
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: var(--tech-blue);
    }

    .btn-nav {
      background: var(--tech-gradient);
      color: white !important;
      padding: 0.65rem 1.4rem;
      border-radius: var(--radius-sm);
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
      transition: transform 0.2s ease !important;
    }

    .btn-nav:hover {
      transform: translateY(-2px);
    }

    /* --- TOMBOL HAMBURGER --- */
    .hamburger {
      display: none; /* Sembunyi secara default di Desktop */
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 100000 !important;
      flex-shrink: 0; /* Mencegah tombol gepeng */
    }

    .hamburger span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--text-main);
      border-radius: 4px;
      transition: all 0.3s ease-in-out;
    }

    /* Animasi Hamburger ke 'X' saat Aktif */
    .hamburger.active span:nth-child(1) {
      transform: translateY(8.5px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
      transform: translateY(-8.5px) rotate(-45deg);
    }


    /* ==========================================
       1. IPAD / TABLET (Max-width: 1024px)
       ========================================== */
    @media screen and (max-width: 1024px) {
      .navbar {
        padding: 0.8rem 3%;
      }

      .nav-links {
        gap: 1.2rem;
      }

      .nav-links a {
        font-size: 0.88rem;
      }
    }


    /* ==========================================
       2. HP / SMARTPHONE (Max-width: 768px)
       ========================================== */
    @media screen and (max-width: 768px) {
      .hamburger {
        display: flex !important; /* Paksa tombol hamburger muncul */
      }

      .logo {
        font-size: 1.05rem; /* Ukuran font disesuaikan agar muat di HP */
        gap: 8px;
      }

      .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
      }

      /* Tampilan Drawer Samping saat Hamburger Diklik */
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Menyembunyikan menu di kanan luar layar */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        border-left: 1px solid var(--border-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.8rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 99998;
      }

      /* Kelas Aktif yang Dipanggil oleh JavaScript */
      .nav-links.active {
        right: 0; /* Menu muncul meluncur ke kiri */
      }

      .nav-links a {
        font-size: 1.05rem;
      }

      .btn-nav {
        width: 80%;
        text-align: center;
      }
    }

        /* --- HERO SECTION --- */
        .hero {
            padding: 160px 5% 90px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            align-items: center;
            gap: 4rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .badge-tech {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(37, 99, 235, 0.08);
            border: 1px solid rgba(37, 99, 235, 0.2);
            color: var(--tech-blue);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: 3.4rem;
            line-height: 1.18;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 1.5rem;
        }

        .text-gradient {
            background: var(--tech-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            color: var(--text-muted);
            font-size: 1.12rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-primary {
            background: var(--tech-gradient);
            color: white;
            padding: 0.9rem 2rem;
            border-radius: var(--radius-sm);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
        }

        .btn-secondary {
            background: var(--bg-primary);
            color: var(--text-main);
            border: 1px solid var(--border-light);
            padding: 0.9rem 2rem;
            border-radius: var(--radius-sm);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--bg-secondary);
            border-color: var(--text-muted);
        }

        /* Visual Graphic Hero */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .tech-card-wrapper {
            width: 100%;
            max-width: 420px;
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-hover);
            position: relative;
        }

        .tech-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-light);
        }

        .dots { display: flex; gap: 6px; }
        .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-light); }
        .dot.active { background: var(--tech-cyan); }

        .stat-box {
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            padding: 1rem;
            border-radius: var(--radius-sm);
            margin-bottom: 1rem;
        }

        .stat-title {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--tech-blue);
        }

        .floating-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: #ffffff;
            border: 1px solid var(--border-light);
            padding: 12px 20px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-subtle);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* --- STATS SECTION --- */
        .stats-bar {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            padding: 3rem 5%;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-main);
        }

        .stat-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* --- SECTION HEADER STYLE --- */
        .section-title {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-title .section-tag {
            color: var(--tech-blue);
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            margin-bottom: 0.5rem;
            display: block;
        }

        .section-title h2 {
            font-size: 2.3rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 0.8rem;
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 650px;
            margin: 0 auto;
        }

        /* --- JURNAL SHOWCASE SECTION --- */
        .journals-section {
            padding: 100px 5%;
            background: #ffffff;
            max-width: 1300px;
            margin: 0 auto;
        }

        .journals-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .journal-card {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.35s ease;
            position: relative;
            box-shadow: var(--shadow-subtle);
        }

        .journal-card:hover {
            transform: translateY(-10px);
            border-color: rgba(6, 182, 212, 0.4);
            box-shadow: var(--shadow-hover);
        }

        .journal-image-wrapper {
            position: relative;
            width: 100%;
            height: 240px;
            background: var(--bg-secondary);
            overflow: hidden;
            border-bottom: 1px solid var(--border-light);
        }

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

        .journal-card:hover .journal-image-wrapper img {
            transform: scale(1.06);
        }

        .journal-image-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(15, 23, 42, 0.4) 100%);
            pointer-events: none;
        }

        .journal-index-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(8px);
            border: 1px solid var(--border-light);
            color: var(--tech-blue);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 800;
            box-shadow: 0 4px 10px rgba(0,0,0,0.06);
            z-index: 2;
        }

        .journal-body {
            padding: 1.8rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: space-between;
        }

        .journal-issn-box {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--text-muted);
            margin-bottom: 1rem;
            width: fit-content;
        }

        .journal-issn-box i { color: var(--tech-cyan); }

        .journal-title {
            font-size: 1.22rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 0.8rem;
            line-height: 1.35;
        }

        .journal-desc {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 1.8rem;
            line-height: 1.55;
        }

        .btn-visit-tech {
            width: 100%;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            color: var(--text-main);
            padding: 0.85rem 1.2rem;
            border-radius: var(--radius-md);
            font-weight: 700;
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-visit-tech .icon-circle {
            width: 32px;
            height: 32px;
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tech-blue);
            transition: all 0.3s ease;
        }

        .journal-card:hover .btn-visit-tech {
            background: var(--tech-gradient);
            color: white;
            border-color: transparent;
            box-shadow: var(--tech-glow);
        }

        .journal-card:hover .btn-visit-tech .icon-circle {
            background: rgba(255, 255, 255, 0.25);
            color: white;
            border-color: transparent;
            transform: translateX(3px) rotate(-10deg);
        }

        /* --- MODAL DETAIL JURNAL (HIGH-TECH MODAL) --- */
        .journal-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.75);
            backdrop-filter: blur(12px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .journal-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .journal-modal-container {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            width: 100%;
            max-width: 950px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: scale(0.92) translateY(20px);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .journal-modal-overlay.active .journal-modal-container {
            transform: scale(1) translateY(0);
        }

        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid var(--border-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text-main);
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s ease;
        }

        .modal-close-btn:hover {
            background: #ef4444;
            color: white;
            border-color: transparent;
            transform: rotate(90deg);
        }

        .modal-header-banner {
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-light);
            padding: 2.5rem 2.5rem 2rem;
            position: relative;
        }

        .modal-header-top {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .modal-badge {
            background: var(--tech-gradient);
            color: white;
            font-size: 0.78rem;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 50px;
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
        }

        .modal-issn {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-muted);
            background: #ffffff;
            border: 1px solid var(--border-light);
            padding: 4px 10px;
            border-radius: var(--radius-sm);
        }

        .modal-title {
            font-size: 1.8rem;
            font-weight: 800;
            line-height: 1.25;
            color: var(--text-main);
            margin-bottom: 0.8rem;
        }

        .modal-subtitle {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .modal-body-content {
            padding: 2.5rem;
        }

        /* Grid Metrics Dashboard in Modal */
        .modal-metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
            margin-bottom: 2rem;
        }

        .metric-box {
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 1.2rem 1rem;
            text-align: center;
        }

        .metric-box i {
            font-size: 1.4rem;
            color: var(--tech-blue);
            margin-bottom: 0.5rem;
        }

        .metric-val {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--text-main);
        }

        .metric-lbl {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 700;
            text-transform: uppercase;
        }

        .modal-section-block {
            margin-bottom: 2rem;
        }

        .modal-section-block h4 {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal-section-block h4 i {
            color: var(--tech-cyan);
        }

        .modal-section-block p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.65;
        }

        /* Scope Tags & Indexing Logos */
        .scope-tags-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 0.8rem;
        }

        .scope-tag {
            background: rgba(37, 99, 235, 0.08);
            border: 1px solid rgba(37, 99, 235, 0.18);
            color: var(--tech-blue);
            font-size: 0.82rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 50px;
        }

        .indexing-badges-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 0.8rem;
        }

        .index-badge-item {
            background: #ffffff;
            border: 1px solid var(--border-light);
            padding: 8px 16px;
            border-radius: var(--radius-md);
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-subtle);
        }

        .index-badge-item i {
            color: var(--tech-emerald);
        }

        .editorial-team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 0.8rem;
        }

        .editor-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .editor-avatar {
            width: 44px;
            height: 44px;
            background: var(--tech-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1rem;
        }

        .editor-info h5 {
            font-size: 0.92rem;
            font-weight: 800;
            color: var(--text-main);
        }

        .editor-info p {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .modal-footer-actions {
            border-top: 1px solid var(--border-light);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* --- TAHAPAN & FLOWMAP PUBLISH SECTION --- */
        .publish-flow-section {
            padding: 100px 5%;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }

        .flow-container {
            max-width: 1250px;
            margin: 0 auto;
        }

        .flowmap-wrapper {
            position: relative;
            margin-bottom: 5rem;
        }

        .flowmap-pipeline-line {
            position: absolute;
            top: 45px;
            left: 5%;
            width: 90%;
            height: 4px;
            background: #e2e8f0;
            z-index: 1;
            border-radius: 4px;
        }

        .flowmap-pipeline-progress {
            position: absolute;
            top: 45px;
            left: 5%;
            width: 100%;
            height: 4px;
            background: var(--tech-gradient);
            z-index: 1;
            border-radius: 4px;
            box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
        }

        .flowmap-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .flow-step-node {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 2rem 1.2rem 1.8rem;
            text-align: center;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: var(--shadow-subtle);
            cursor: pointer;
        }

        .flow-step-node:hover, .flow-step-node.active {
            transform: translateY(-8px);
            border-color: var(--tech-cyan);
            box-shadow: var(--shadow-hover);
        }

        .step-number-badge {
            width: 54px;
            height: 54px;
            background: #ffffff;
            border: 2px solid var(--border-light);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-muted);
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.04);
        }

        .flow-step-node:hover .step-number-badge,
        .flow-step-node.active .step-number-badge {
            background: var(--tech-gradient);
            color: white;
            border-color: transparent;
            box-shadow: 0 0 18px rgba(37, 99, 235, 0.4);
        }

        .flow-step-node h4 {
            font-size: 1.05rem;
            font-weight: 800;
            margin-bottom: 0.6rem;
            color: var(--text-main);
        }

        .flow-step-node p {
            font-size: 0.83rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .tech-pill-tag {
            display: inline-block;
            background: rgba(37, 99, 235, 0.08);
            color: var(--tech-blue);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 50px;
            margin-top: 1rem;
            border: 1px solid rgba(37, 99, 235, 0.15);
        }

        .flow-details-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .flow-detail-card {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 2.2rem;
            display: flex;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }

        .flow-detail-card:hover {
            border-color: rgba(37, 99, 235, 0.3);
            box-shadow: var(--shadow-subtle);
        }

        .detail-icon-box {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: var(--bg-accent);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--tech-blue);
        }

        .detail-content h3 {
            font-size: 1.15rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--text-main);
        }

        .detail-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .tech-feature-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tech-feature-list li {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--text-main);
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            padding: 4px 10px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .tech-feature-list li i {
            color: var(--tech-cyan);
        }

        /* --- SERVICES SECTION --- */
        .services {
            padding: 90px 5%;
            background: #ffffff;
            border-top: 1px solid var(--border-light);
        }

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

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: #ffffff;
            border: 1px solid var(--border-light);
            padding: 2.5rem 2rem;
            border-radius: var(--radius-lg);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(37, 99, 235, 0.4);
            box-shadow: var(--shadow-hover);
        }

        .service-icon {
            width: 52px;
            height: 52px;
            background: var(--bg-accent);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--tech-blue);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--tech-gradient);
            color: white;
            box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
        }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* --- CONTACT US SECTION (HIGH TECH & COMPLETE) --- */
        .contact-section {
            padding: 100px 5%;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-light);
        }

        .contact-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .contact-main-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3.5rem;
        }

        /* Contact Info Cards Side */
        .contact-info-wrapper {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-card-item {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 1.8rem;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            box-shadow: var(--shadow-subtle);
            transition: all 0.3s ease;
        }

        .contact-card-item:hover {
            border-color: var(--tech-blue);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .contact-icon-box {
            width: 56px;
            height: 56px;
            min-width: 56px;
            background: var(--bg-accent);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--tech-blue);
        }

        .contact-card-item:hover .contact-icon-box {
            background: var(--tech-gradient);
            color: white;
            box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
        }

        .contact-detail-text h4 {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 0.3rem;
        }

        .contact-detail-text p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .contact-detail-text a {
            color: var(--tech-blue);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.2s;
        }

        .contact-detail-text a:hover {
            text-decoration: underline;
        }

        /* Quick Action Buttons (WhatsApp & Email) */
        .contact-action-bar {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .btn-wa-tech {
            flex: 1;
            background: #25d366;
            color: white;
            padding: 0.9rem 1.4rem;
            border-radius: var(--radius-md);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
            transition: all 0.3s ease;
        }

        .btn-wa-tech:hover {
            background: #1da851;
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
        }

        .btn-email-tech {
            flex: 1;
            background: var(--tech-gradient);
            color: white;
            padding: 0.9rem 1.4rem;
            border-radius: var(--radius-md);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
            transition: all 0.3s ease;
        }

        .btn-email-tech:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
        }

        /* High Tech Form Side */
        .contact-form-box {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-subtle);
            position: relative;
        }

        .form-header-badge {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-light);
        }

        .form-header-badge h3 {
            font-size: 1.25rem;
            font-weight: 800;
        }

        .status-dot {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #10b981;
            background: rgba(16, 185, 129, 0.1);
            padding: 4px 10px;
            border-radius: 50px;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 0.4rem;
        }

        .form-control {
            width: 100%;
            padding: 0.85rem 1.2rem;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            background: var(--bg-secondary);
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--tech-blue);
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

        /* Interactive Google Maps Embed Container */
        .map-section-wrapper {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 1.2rem;
            box-shadow: var(--shadow-subtle);
            position: relative;
            overflow: hidden;
        }

        .map-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding: 0.5rem 0.5rem 0;
        }

        .map-header h4 {
            font-size: 1.1rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .map-iframe-container {
            width: 100%;
            height: 380px;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-light);
            position: relative;
        }

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

        /* Floating Location Tag overlay on Map */
        .map-overlay-tag {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-light);
            padding: 12px 18px;
            border-radius: var(--radius-md);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 10;
            max-width: 340px;
        }

        /* --- SEARCH SECTION --- */
        .search-section {
            padding: 90px 5%;
            background: #ffffff;
            border-top: 1px solid var(--border-light);
        }

        .search-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .search-box {
            display: flex;
            background: #ffffff;
            border: 1px solid var(--border-light);
            padding: 6px;
            border-radius: 50px;
            box-shadow: var(--shadow-subtle);
            margin-top: 2rem;
        }

        .search-box input {
            border: none;
            outline: none;
            padding: 0.8rem 1.5rem;
            width: 100%;
            font-size: 1rem;
            border-radius: 50px;
        }

        .search-box button {
            background: var(--tech-gradient);
            color: white;
            border: none;
            padding: 0.8rem 2.2rem;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.2s ease;
        }

        .search-box button:hover {
            opacity: 0.92;
        }

        /* --- FOOTER --- */
        footer {
            background: #ffffff;
            border-top: 1px solid var(--border-light);
            padding: 70px 5% 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-about p {
            color: var(--text-muted);
            margin-top: 1rem;
            font-size: 0.95rem;
            max-width: 320px;
        }

        .footer-column h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.8rem;
        }

        .footer-column a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .footer-column a:hover {
            color: var(--tech-blue);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 1100px) {
            .flowmap-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
            .flowmap-pipeline-line, .flowmap-pipeline-progress { display: none; }
            .flow-details-grid { grid-template-columns: 1fr; }
            .contact-main-grid { grid-template-columns: 1fr; }
            .modal-metrics-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 1024px) {
            .journals-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 992px) {
            .hero { grid-template-columns: 1fr; padding-top: 130px; text-align: center; }
            .hero p { margin: 0 auto 2.5rem; }
            .hero-buttons { justify-content: center; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-container { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
            .footer-container { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .flowmap-grid { grid-template-columns: 1fr; }
            .journals-grid { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .contact-action-bar { flex-direction: column; }
            .footer-container { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
            .editorial-team-grid { grid-template-columns: 1fr; }
            .modal-metrics-grid { grid-template-columns: repeat(2, 1fr); }
            .journal-modal-container { margin: 1rem; max-height: 95vh; }
        }
        
 